aboutsummaryrefslogtreecommitdiff
path: root/proofs/proof_type.ml
diff options
context:
space:
mode:
authorbarras2002-12-19 13:55:09 +0000
committerbarras2002-12-19 13:55:09 +0000
commitc9a018b3a9d3eae70c323263bd93d094b8a1e30f (patch)
tree46d5504b3f9cb944f6f9bccc9eca1c932a30bc90 /proofs/proof_type.ml
parenteb07a02898745e12eb7060da9a9b717b73a8a239 (diff)
simplification de solve_subgoal: n'utilise plus frontier
git-svn-id: svn+ssh://scm.gforge.inria.fr/svn/coq/trunk@3458 85f007b7-540e-0410-9357-904b9bb8a0f7
Diffstat (limited to 'proofs/proof_type.ml')
-rw-r--r--proofs/proof_type.ml6
1 files changed, 1 insertions, 5 deletions
diff --git a/proofs/proof_type.ml b/proofs/proof_type.ml
index 405d5e5da0..6f4cf46408 100644
--- a/proofs/proof_type.ml
+++ b/proofs/proof_type.ml
@@ -23,10 +23,6 @@ open Genarg
(* This module defines the structure of proof tree and the tactic type. So, it
is used by Proof_tree and Refiner *)
-type pf_status =
- | Complete_proof
- | Incomplete_proof
-
type prim_rule =
| Intro of identifier
| Intro_replacing of identifier
@@ -54,7 +50,7 @@ type 'a sigma = {
if [ref = (Some(Tactic (t,p),l))] then [p] is the proof
that the goal can be proven if the goals in [l] are solved. *)
type proof_tree = {
- status : pf_status;
+ open_subgoals : int;
goal : goal;
ref : (rule * proof_tree list) option }