aboutsummaryrefslogtreecommitdiff
path: root/intf
diff options
context:
space:
mode:
authorMaxime Dénès2016-07-01 13:57:14 +0200
committerMaxime Dénès2016-07-01 17:26:08 +0200
commit1b09098cc4830f262820d2935a9cd0afa383ed3f (patch)
tree6ca260dfda3b6d95ff26be24e39010e2c82f881d /intf
parent3e1e8e5792b43be83da2cca8102418aa9b73b9b3 (diff)
Add and document match, fix and cofix reduction flags.
Diffstat (limited to 'intf')
-rw-r--r--intf/genredexpr.mli8
1 files changed, 6 insertions, 2 deletions
diff --git a/intf/genredexpr.mli b/intf/genredexpr.mli
index ff036a13f2..2df79673ad 100644
--- a/intf/genredexpr.mli
+++ b/intf/genredexpr.mli
@@ -12,7 +12,9 @@
type 'a red_atom =
| FBeta
- | FIota
+ | FMatch
+ | FFix
+ | FCofix
| FZeta
| FConst of 'a list
| FDeltaBut of 'a list
@@ -21,7 +23,9 @@ type 'a red_atom =
type 'a glob_red_flag = {
rBeta : bool;
- rIota : bool;
+ rMatch : bool;
+ rFix : bool;
+ rCofix : bool;
rZeta : bool;
rDelta : bool; (** true = delta all but rConst; false = delta only on rConst*)
rConst : 'a list