-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathconfig.maude
54 lines (50 loc) · 1.38 KB
/
config.maude
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
fmod RLTOOL-SWITCHES is
pr TRUTH-VALUE .
op printStatusOnContinue : -> Bool .
op printAxiomFailures : -> Bool .
op skipQuantifierCheck : -> Bool .
op enableVarUnifSimp : -> Bool .
op hideNonErrors : -> Bool .
op printStepName : -> Bool .
op abstractRules : -> Bool .
endfm
fmod RLTOOL-DEFAULT-CONFIG is
pr RLTOOL-SWITCHES .
eq printStatusOnContinue = false .
eq printAxiomFailures = true .
eq skipQuantifierCheck = true .
eq enableVarUnifSimp = true .
eq hideNonErrors = true .
eq printStepName = true .
eq abstractRules = true .
endfm
fmod RLTOOL-DEFAULT-CONFIG-NOVU is
pr RLTOOL-SWITCHES .
eq printStatusOnContinue = false .
eq printAxiomFailures = false .
eq skipQuantifierCheck = true .
eq enableVarUnifSimp = false .
eq hideNonErrors = true .
eq printStepName = false .
eq abstractRules = true .
endfm
fmod RLTOOL-DEBUG-CONFIG is
pr RLTOOL-SWITCHES .
eq printStatusOnContinue = true .
eq printAxiomFailures = true .
eq skipQuantifierCheck = true .
eq enableVarUnifSimp = true .
eq hideNonErrors = false .
eq printStepName = true .
eq abstractRules = true .
endfm
fmod RLTOOL-LARGE-MODULE is
pr RLTOOL-SWITCHES .
eq printStatusOnContinue = false .
eq printAxiomFailures = true .
eq skipQuantifierCheck = true .
eq enableVarUnifSimp = true .
eq hideNonErrors = true .
eq printStepName = true .
eq abstractRules = false .
endfm