aboutsummaryrefslogtreecommitdiffhomepage
path: root/proofs
diff options
context:
space:
mode:
authorGravatar Matthieu Sozeau <mattam@mattam.org>2014-06-10 13:08:48 +0200
committerGravatar Matthieu Sozeau <mattam@mattam.org>2014-06-10 13:08:48 +0200
commitf02823d9f6de5a8e5706c8433b6e2445cb50222f (patch)
treea1abe9869258302bb165e7385334f5bc74a4d818 /proofs
parent80b589e91fe4c6e6e390132633557dc04b9c533a (diff)
Cleanup in Univ, moving code for UniverseConstraints outside the kernel in Universes.
Needed to exponse compare_head_gen(_leq) so that it could be reused in Universes. Remove unused functions from univ as well and refactor a little bit. Changed the syntax to Type@{} for explicit universe level specs, following the WG decision.
Diffstat (limited to 'proofs')
-rw-r--r--proofs/refiner.ml3
-rw-r--r--proofs/refiner.mli1
2 files changed, 0 insertions, 4 deletions
diff --git a/proofs/refiner.ml b/proofs/refiner.ml
index f0e8bf3ec..b47e16a3c 100644
--- a/proofs/refiner.ml
+++ b/proofs/refiner.ml
@@ -337,9 +337,6 @@ let tclPUSHEVARUNIVCONTEXT ctx gl =
let tclPUSHCONSTRAINTS cst gl =
tclEVARS (Evd.add_constraints (project gl) cst) gl
-let tclPUSHUNIVERSECONSTRAINTS cst gl =
- tclEVARS (Evd.add_universe_constraints (project gl) cst) gl
-
(* Check that holes in arguments have been resolved *)
let check_evars env sigma extsigma origsigma =
diff --git a/proofs/refiner.mli b/proofs/refiner.mli
index a74d8a46d..171b008d1 100644
--- a/proofs/refiner.mli
+++ b/proofs/refiner.mli
@@ -39,7 +39,6 @@ val tclPUSHCONTEXT : Evd.rigid -> Univ.universe_context_set -> tactic -> tactic
val tclPUSHEVARUNIVCONTEXT : Evd.evar_universe_context -> tactic
val tclPUSHCONSTRAINTS : Univ.constraints -> tactic
-val tclPUSHUNIVERSECONSTRAINTS : Univ.UniverseConstraints.t -> tactic
(** [tclTHEN tac1 tac2 gls] applies the tactic [tac1] to [gls] and applies
[tac2] to every resulting subgoals *)