diff options
author | corbinea <corbinea@85f007b7-540e-0410-9357-904b9bb8a0f7> | 2007-01-22 10:43:43 +0000 |
---|---|---|
committer | corbinea <corbinea@85f007b7-540e-0410-9357-904b9bb8a0f7> | 2007-01-22 10:43:43 +0000 |
commit | 15c6e8ba2498d1b4a0282c04de6c57ec9748336f (patch) | |
tree | c6c33ab898ebe48ff35563254e1e10741d929877 /proofs | |
parent | 8f49fb5a04926e28597905bbc052dcecc254eef3 (diff) |
changes in declarative language : by term using tactic
git-svn-id: svn+ssh://scm.gforge.inria.fr/svn/coq/trunk@9512 85f007b7-540e-0410-9357-904b9bb8a0f7
Diffstat (limited to 'proofs')
-rw-r--r-- | proofs/decl_expr.mli | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/proofs/decl_expr.mli b/proofs/decl_expr.mli index 24af3842c..67a1ea5a6 100644 --- a/proofs/decl_expr.mli +++ b/proofs/decl_expr.mli @@ -12,10 +12,6 @@ open Names open Util open Tacexpr -type ('constr,'tac) justification = - By_tactic of 'tac -| Automated of 'constr list - type 'it statement = {st_label:name; st_it:'it} @@ -43,7 +39,8 @@ type block_type = type ('it,'constr,'tac) cut = {cut_stat: 'it statement; - cut_by: ('constr,'tac) justification} + cut_by: 'constr list option; + cut_using: 'tac option} type ('var,'constr) hyp = Hvar of 'var |