aboutsummaryrefslogtreecommitdiffstats
path: root/src/Misc.v
diff options
context:
space:
mode:
authorChantal Keller <Chantal.Keller@lri.fr>2022-02-15 18:31:04 +0100
committerChantal Keller <Chantal.Keller@lri.fr>2022-02-15 18:31:04 +0100
commit761a4af555c228a9fdd34ae33f9c842931a592cf (patch)
tree844f642fc5aa84cfee1ef9535cf2fc9874e97573 /src/Misc.v
parent2524d8daa33d2807847d988a2e96303e9e4e0998 (diff)
parentc163813243e1b38b7d8c10b49d78a728d747e0e5 (diff)
downloadsmtcoq-761a4af555c228a9fdd34ae33f9c842931a592cf.tar.gz
smtcoq-761a4af555c228a9fdd34ae33f9c842931a592cf.zip
Merge remote-tracking branch 'origin/coq-8.10' into coq-8.11
Diffstat (limited to 'src/Misc.v')
-rw-r--r--src/Misc.v23
1 files changed, 23 insertions, 0 deletions
diff --git a/src/Misc.v b/src/Misc.v
index ff2366a..31a7086 100644
--- a/src/Misc.v
+++ b/src/Misc.v
@@ -1418,6 +1418,29 @@ Lemma is_true_iff e : e = true <-> is_true e.
Proof. now unfold is_true. Qed.
+(* Register constants for OCaml access *)
+Register distinct as SMTCoq.Misc.distinct.
+
+Register Int63.eqb as num.int63.eqb.
+Register PArray.array as array.array.type.
+Register PArray.make as array.array.make.
+Register PArray.set as array.array.set.
+Register Coq.Init.Datatypes.is_true as core.is_true.is_true.
+Register Coq.PArith.BinPosDef.Pos.eqb as num.pos.eqb.
+Register Coq.NArith.BinNat.N.of_nat as num.N.of_nat.
+Register Coq.ZArith.BinInt.Z.ltb as num.Z.ltb.
+Register Coq.ZArith.BinInt.Z.leb as num.Z.leb.
+Register Coq.ZArith.BinInt.Z.gtb as num.Z.gtb.
+Register Coq.ZArith.BinInt.Z.geb as num.Z.geb.
+Register Coq.ZArith.BinInt.Z.eqb as num.Z.eqb.
+Register Coq.Init.Datatypes.implb as core.bool.implb.
+Register Coq.Bool.Bool.eqb as core.bool.eqb.
+Register Coq.Bool.Bool.ifb as core.bool.ifb.
+Register Coq.Bool.Bool.reflect as core.bool.reflect.
+Register Coq.Init.Datatypes.length as core.list.length.
+Register Coq.micromega.ZMicromega.ZArithProof as micromega.ZMicromega.ZArithProof.
+
+
(*
Local Variables:
coq-load-path: ((rec "." "SMTCoq"))