aboutsummaryrefslogtreecommitdiff
path: root/proofs/proof_type.ml
diff options
context:
space:
mode:
authorclrenard2001-11-06 13:05:45 +0000
committerclrenard2001-11-06 13:05:45 +0000
commit22ac53765e6f3d8ee2f05ad5fcdb046fbf4b6baf (patch)
tree3c7468e9f0703d9e70b3aea539aaf8a28ec6a0ed /proofs/proof_type.ml
parent8cd83fb8dd41521bbc109d37dd49dd3aae0de373 (diff)
Suppression des local_constraints, des ctxtty et du focus.
git-svn-id: svn+ssh://scm.gforge.inria.fr/svn/coq/trunk@2163 85f007b7-540e-0410-9357-904b9bb8a0f7
Diffstat (limited to 'proofs/proof_type.ml')
-rw-r--r--proofs/proof_type.ml11
1 files changed, 3 insertions, 8 deletions
diff --git a/proofs/proof_type.ml b/proofs/proof_type.ml
index 1109a5837d..c866d85ed5 100644
--- a/proofs/proof_type.ml
+++ b/proofs/proof_type.ml
@@ -57,11 +57,7 @@ type prim_rule = {
type local_constraints = Intset.t
-type ctxtty = {
- pgm : constr option;
- lc : local_constraints }
-
-type enamed_declarations = ctxtty evar_map
+type enamed_declarations = evar_map
(* A global constraint is a mappings of existential variables
with some extra information for the program tactic *)
@@ -88,10 +84,9 @@ type proof_tree = {
and rule =
| Prim of prim_rule
| Tactic of tactic_expression
- | Context of ctxtty
- | Local_constraints of local_constraints
+ | Change_evars
-and goal = ctxtty evar_info
+and goal = evar_info
and tactic = goal sigma -> (goal list sigma * validation)