diff options
| author | barras | 2002-12-19 13:55:09 +0000 |
|---|---|---|
| committer | barras | 2002-12-19 13:55:09 +0000 |
| commit | c9a018b3a9d3eae70c323263bd93d094b8a1e30f (patch) | |
| tree | 46d5504b3f9cb944f6f9bccc9eca1c932a30bc90 /proofs/refiner.mli | |
| parent | eb07a02898745e12eb7060da9a9b717b73a8a239 (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/refiner.mli')
| -rw-r--r-- | proofs/refiner.mli | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/proofs/refiner.mli b/proofs/refiner.mli index 2fa0b178c5..c0d047edbf 100644 --- a/proofs/refiner.mli +++ b/proofs/refiner.mli @@ -52,6 +52,16 @@ val unTAC : tactic -> goal sigma -> proof_tree sigma val local_Constraints : tactic +(* [frontier_map f n p] applies f on the n-th open subgoal of p and + rebuilds proof-tree. + n=1 for first goal, n negative counts from the right *) +val frontier_map : + (proof_tree -> proof_tree) -> int -> proof_tree -> proof_tree + +(* [frontier_mapi f p] applies (f i) on the i-th open subgoal of p. *) +val frontier_mapi : + (int -> proof_tree -> proof_tree) -> proof_tree -> proof_tree + (*s Tacticals. *) (* [tclIDTAC] is the identity tactic *) |
