summaryrefslogtreecommitdiff
path: root/src/options/expr_options.toml
blob: 34a4fb979982537b8a79faf2a8bb787c394be0b8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
id     = "EXPR"
name   = "Expression package"
header = "options/expr_options.h"

[[option]]
  name       = "defaultExprDepth"
  category   = "regular"
  long       = "expr-depth=N"
  type       = "int"
  default    = "0"
  predicates = ["setDefaultExprDepthPredicate"]
  help       = "print exprs to depth N (0 == default, -1 == no limit)"

[[option]]
  name       = "defaultDagThresh"
  smt_name   = "dag-thresh"
  category   = "regular"
  long       = "dag-thresh=N"
  type       = "int"
  default    = "1"
  predicates = ["setDefaultDagThreshPredicate"]
  help       = "dagify common subexprs appearing > N times (1 == default, 0 == don't dagify)"

[[option]]
  name       = "typeChecking"
  category   = "regular"
  long       = "type-checking"
  type       = "bool"
  default    = "DO_SEMANTIC_CHECKS_BY_DEFAULT"
  help       = "type check expressions"
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback