aboutsummaryrefslogtreecommitdiff
path: root/tactics/setoid_replace.ml
diff options
context:
space:
mode:
authorsacerdot2004-09-30 16:26:35 +0000
committersacerdot2004-09-30 16:26:35 +0000
commit8a00bdd6d838f65601ed9006671a8afcb9a1890d (patch)
tree2cb394f0694d3f3f8deb7485719a83c45c89bee3 /tactics/setoid_replace.ml
parent03a61c73a53ce64b8334cefd0df9041bf891d15b (diff)
New tactic [setoid_]rewrite ... in ... [generate side conditions ...].
git-svn-id: svn+ssh://scm.gforge.inria.fr/svn/coq/trunk@6165 85f007b7-540e-0410-9357-904b9bb8a0f7
Diffstat (limited to 'tactics/setoid_replace.ml')
-rw-r--r--tactics/setoid_replace.ml28
1 files changed, 25 insertions, 3 deletions
diff --git a/tactics/setoid_replace.ml b/tactics/setoid_replace.ml
index 42cee320a4..4c5dc08b0d 100644
--- a/tactics/setoid_replace.ml
+++ b/tactics/setoid_replace.ml
@@ -1339,8 +1339,7 @@ let relation_rewrite c1 c2 (input_direction,cl) ~new_goals gl =
Use_rewrite ->
!general_rewrite (input_direction = Left2Right) (snd hyp) gl
-let general_s_rewrite lft2rgt c ~new_goals gl =
- let direction = if lft2rgt then Left2Right else Right2Left in
+let analyse_hypothesis gl c =
let ctype = pf_type_of gl c in
let eqclause = Clenv.make_clenv_binding gl (c,ctype) Rawterm.NoBindings in
let (equiv, args) = decompose_app (Clenv.clenv_type eqclause) in
@@ -1348,11 +1347,34 @@ let general_s_rewrite lft2rgt c ~new_goals gl =
| [c1;c2] -> (c1, c2)
| x::y::z -> get_last_two (y::z)
| _ -> error "The term provided is not an equivalence" in
- let (c1,c2) = get_last_two args in
+ let c1,c2 = get_last_two args in
+ eqclause,c1,c2
+
+let general_s_rewrite lft2rgt c ~new_goals gl =
+ let direction = if lft2rgt then Left2Right else Right2Left in
+ let eqclause,c1,c2 = analyse_hypothesis gl c in
match direction with
Left2Right -> relation_rewrite c1 c2 (direction,eqclause) ~new_goals gl
| Right2Left -> relation_rewrite c2 c1 (direction,eqclause) ~new_goals gl
+let general_s_rewrite_in id lft2rgt c ~new_goals gl =
+ let eqclause,c1,c2 = analyse_hypothesis gl c in
+ let hyp = pf_type_of gl (mkVar id) in
+ let new_hyp =
+ if lft2rgt then
+ Termops.replace_term c1 c2 hyp
+ else
+ Termops.replace_term c2 c1 hyp
+ in
+ tclTHENS
+ (cut new_hyp)
+ [ (* Try to insert the new hyp at the same place *)
+ tclORELSE (intro_replacing id)
+ (tclTHEN (clear [id]) (introduction id));
+ tclTHENLAST
+ (general_s_rewrite (not lft2rgt) c ~new_goals)
+ (exact_check (mkVar id))] gl
+
exception Use_replace
(*CSC: still setoid in the name *)