aboutsummaryrefslogtreecommitdiffhomepage
path: root/contrib/correctness/pmisc.ml
diff options
context:
space:
mode:
Diffstat (limited to 'contrib/correctness/pmisc.ml')
-rw-r--r--contrib/correctness/pmisc.ml10
1 files changed, 5 insertions, 5 deletions
diff --git a/contrib/correctness/pmisc.ml b/contrib/correctness/pmisc.ml
index ad7779036..6d04befe2 100644
--- a/contrib/correctness/pmisc.ml
+++ b/contrib/correctness/pmisc.ml
@@ -13,10 +13,9 @@
open Pp
open Coqast
open Names
+open Nameops
open Term
-module SpSet = Set.Make(struct type t = section_path let compare = sp_ord end)
-
(* debug *)
let debug = ref false
@@ -144,11 +143,12 @@ let real_subst_in_constr = replace_vars
let coq_constant d s =
make_path
- (make_dirpath (List.map id_of_string ("Coq" :: d))) (id_of_string s) CCI
+ (make_dirpath (List.rev (List.map id_of_string ("Coq"::d))))
+ (id_of_string s)
let bool_sp = coq_constant ["Init"; "Datatypes"] "bool"
-let coq_true = mkMutConstruct ((bool_sp,0),1)
-let coq_false = mkMutConstruct ((bool_sp,0),2)
+let coq_true = mkConstruct ((bool_sp,0),1)
+let coq_false = mkConstruct ((bool_sp,0),2)
let constant s =
let id = id_of_string s in