summaryrefslogtreecommitdiff
path: root/src/rewriter.mli
diff options
context:
space:
mode:
authorThomas Bauereiss2017-07-12 13:09:46 +0100
committerThomas Bauereiss2017-07-12 13:09:46 +0100
commit4ba73e1e36a8ebda34d8d3afa6dbeff6256d262a (patch)
treed3f82b5062a02a73f70889aa0886986b1838f504 /src/rewriter.mli
parent3bdd45856d908432e3b0d1af3f480c2311818a7c (diff)
Add checks for variable identifiers in pattern subsumption
Diffstat (limited to 'src/rewriter.mli')
-rw-r--r--src/rewriter.mli3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/rewriter.mli b/src/rewriter.mli
index 615d0fa0..19ab4aca 100644
--- a/src/rewriter.mli
+++ b/src/rewriter.mli
@@ -61,7 +61,7 @@ type 'a rewriters = { rewrite_exp : 'a rewriters -> (nexp_map * 'a namemap) opt
val rewrite_exp : tannot rewriters -> (nexp_map * tannot namemap) option -> tannot exp -> tannot exp
val rewrite_defs : tannot defs -> tannot defs
val rewrite_defs_ocaml : tannot defs -> tannot defs (*Perform rewrites to exclude AST nodes not supported for ocaml out*)
-val rewrite_defs_lem : tannot defs -> tannot defs (*Perform rewrites to exclude AST nodes not supported for lem out*)
+val rewrite_defs_lem : tannot emap -> tannot defs -> tannot defs (*Perform rewrites to exclude AST nodes not supported for lem out*)
(* the type of interpretations of pattern-matching expressions *)
type ('a,'pat,'pat_aux,'fpat,'fpat_aux) pat_alg =
@@ -153,4 +153,3 @@ val fold_exp : ('a,'exp,'exp_aux,'lexp,'lexp_aux,'fexp,'fexp_aux,'fexps,'fexps_a
'pat,'pat_aux,'fpat,'fpat_aux) exp_alg -> 'a exp -> 'exp
val id_pat_alg : ('a,'a pat, 'a pat_aux, 'a fpat, 'a fpat_aux) pat_alg
-