aboutsummaryrefslogtreecommitdiffstats
path: root/src/Misc.v
diff options
context:
space:
mode:
authorckeller <ckeller@users.noreply.github.com>2022-02-15 18:27:33 +0100
committerGitHub <noreply@github.com>2022-02-15 18:27:33 +0100
commitc163813243e1b38b7d8c10b49d78a728d747e0e5 (patch)
tree7d2d936fc170ad9215aaac2822aa896957456f71 /src/Misc.v
parent1860a878ad5af74f5e2d2142c35b1e2d7c43aad3 (diff)
downloadsmtcoq-c163813243e1b38b7d8c10b49d78a728d747e0e5.tar.gz
smtcoq-c163813243e1b38b7d8c10b49d78a728d747e0e5.zip
Use the Register mechanism (#104)
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"))