aboutsummaryrefslogtreecommitdiffhomepage
path: root/contrib
diff options
context:
space:
mode:
Diffstat (limited to 'contrib')
-rw-r--r--contrib/omega/coq_omega.ml4
1 files changed, 3 insertions, 1 deletions
diff --git a/contrib/omega/coq_omega.ml b/contrib/omega/coq_omega.ml
index c874e135a..518b98006 100644
--- a/contrib/omega/coq_omega.ml
+++ b/contrib/omega/coq_omega.ml
@@ -365,7 +365,9 @@ let coq_or = lazy (constant ["Init";"Logic"] "or")
let coq_ex = lazy (constant ["Init";"Logic"] "ex")
(* Section paths for unfold *)
-let make_coq_path dir s = make_path ("Coq"::dir) (id_of_string s) CCI
+open Closure
+let make_coq_path dir s =
+ EvalConstRef (make_path ("Coq"::dir) (id_of_string s) CCI)
let sp_Zs = make_coq_path ["Zarith";"zarith_aux"] "Zs"
let sp_Zminus = make_coq_path ["Zarith";"zarith_aux"] "Zminus"
let sp_Zle = make_coq_path ["Zarith";"zarith_aux"] "Zle"