summaryrefslogtreecommitdiff
path: root/intf/genredexpr.mli
diff options
context:
space:
mode:
Diffstat (limited to 'intf/genredexpr.mli')
-rw-r--r--intf/genredexpr.mli8
1 files changed, 6 insertions, 2 deletions
diff --git a/intf/genredexpr.mli b/intf/genredexpr.mli
index ff036a13..2df79673 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