aboutsummaryrefslogtreecommitdiffstats
path: root/src/trace/smtTrace.ml
diff options
context:
space:
mode:
authorChantal Keller <Chantal.Keller@inria.fr>2020-03-31 15:06:08 +0200
committerChantal Keller <Chantal.Keller@inria.fr>2020-03-31 15:06:08 +0200
commit4c8654c57666e27637ba2f60ee5c6455176c7a1d (patch)
tree192f58ba2aa699ba206f385bc6e1924e08efe7d7 /src/trace/smtTrace.ml
parentf227beb117105cf4372187112614ce4aec1c5d9b (diff)
downloadsmtcoq-4c8654c57666e27637ba2f60ee5c6455176c7a1d.tar.gz
smtcoq-4c8654c57666e27637ba2f60ee5c6455176c7a1d.zip
Port to coq-8.10 under progress
Diffstat (limited to 'src/trace/smtTrace.ml')
-rw-r--r--src/trace/smtTrace.ml4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/trace/smtTrace.ml b/src/trace/smtTrace.ml
index f397826..ef017a7 100644
--- a/src/trace/smtTrace.ml
+++ b/src/trace/smtTrace.ml
@@ -159,7 +159,7 @@ let order_roots init_index first =
r := n
| _ -> failwith "root value has unexpected form" end
done;
- let _, lr = List.sort (fun (i1, _) (i2, _) -> Pervasives.compare i1 i2) !acc
+ let _, lr = List.sort (fun (i1, _) (i2, _) -> Stdlib.compare i1 i2) !acc
|> List.split in
let link_to c1 c2 =
let curr_id = c2.id -1 in
@@ -476,7 +476,7 @@ let to_coq to_lit interp (cstep,
let concl' = out_cl [concl] in
let app_name = Structures.mkId ("app" ^ (string_of_int (Hashtbl.hash concl))) in
let app_var = Structures.mkVar app_name in
- let app_ty = Term.mkArrow clemma (interp ([], [concl])) in
+ let app_ty = Structures.mkArrow clemma (interp ([], [concl])) in
cuts := (app_name, app_ty)::!cuts;
mklApp cForallInst [|out_c c; clemma; cplemma; concl'; app_var|]
end