aboutsummaryrefslogtreecommitdiff
path: root/plugins/firstorder/sequent.ml
diff options
context:
space:
mode:
authorWilliam Lawvere2017-06-13 22:22:36 -0700
committerWilliam Lawvere2017-06-13 22:22:36 -0700
commitaf39f62ad21f71a860e287e4d217b24dc9e2106b (patch)
tree43c14ae184f24fffaf495dade6d27a1c2fac3e1a /plugins/firstorder/sequent.ml
parent3b0830ce0233db5b612e0b5bb92e89fa644eb0e4 (diff)
parent7e63c300a3aa1e3befb29bab9094e8b1939824bb (diff)
Merge remote-tracking branch 'upstream/trunk' into trunk
Diffstat (limited to 'plugins/firstorder/sequent.ml')
-rw-r--r--plugins/firstorder/sequent.ml7
1 files changed, 3 insertions, 4 deletions
diff --git a/plugins/firstorder/sequent.ml b/plugins/firstorder/sequent.ml
index 4a93e01dca..435ca1986e 100644
--- a/plugins/firstorder/sequent.ml
+++ b/plugins/firstorder/sequent.ml
@@ -7,7 +7,6 @@
(************************************************************************)
open API
-open Term
open EConstr
open CErrors
open Util
@@ -58,11 +57,11 @@ end
module OrderedConstr=
struct
- type t=Constr.t
- let compare=constr_ord
+ type t=Term.constr
+ let compare=Term.compare
end
-type h_item = global_reference * (int*Constr.t) option
+type h_item = global_reference * (int*Term.constr) option
module Hitem=
struct