aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--contrib/setoid_ring/Field_theory.v12
1 files changed, 8 insertions, 4 deletions
diff --git a/contrib/setoid_ring/Field_theory.v b/contrib/setoid_ring/Field_theory.v
index 206367ba2c..28f35c1a16 100644
--- a/contrib/setoid_ring/Field_theory.v
+++ b/contrib/setoid_ring/Field_theory.v
@@ -647,10 +647,14 @@ intros l e1 e2; elim e2; simpl; auto.
Qed.
Record rsplit : Type := mk_rsplit {
- left : PExpr C;
- common : PExpr C;
- right : PExpr C}.
-
+ rsplit_left : PExpr C;
+ rsplit_common : PExpr C;
+ rsplit_right : PExpr C}.
+
+(* Stupid name clash *)
+Let left := rsplit_left.
+Let right := rsplit_right.
+Let common := rsplit_common.
Fixpoint split (e1 e2: PExpr C) {struct e1}: rsplit :=
match e1 with