aboutsummaryrefslogtreecommitdiff
path: root/src/Algebra.v
diff options
context:
space:
mode:
Diffstat (limited to 'src/Algebra.v')
-rw-r--r--src/Algebra.v3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/Algebra.v b/src/Algebra.v
index f71807fff..153871d4c 100644
--- a/src/Algebra.v
+++ b/src/Algebra.v
@@ -1304,6 +1304,9 @@ Ltac only_two_square_roots :=
Require Import Coq.setoid_ring.Ring_tac.
Ltac ring_simplify_subterms := tac_on_subterms ltac:(fun t => ring_simplify t).
+Ltac ring_simplify_subterms_in_all :=
+ reverse_nondep; ring_simplify_subterms; intros.
+
Section Example.
Context {F zero one opp add sub mul inv div} `{F_field:field F eq zero one opp add sub mul inv div}.
Local Infix "+" := add. Local Infix "*" := mul. Local Infix "-" := sub. Local Infix "/" := div.