aboutsummaryrefslogtreecommitdiff
path: root/contrib
diff options
context:
space:
mode:
Diffstat (limited to 'contrib')
-rw-r--r--contrib/omega/Zcomplements.v2
-rw-r--r--contrib/omega/Zpower.v2
2 files changed, 2 insertions, 2 deletions
diff --git a/contrib/omega/Zcomplements.v b/contrib/omega/Zcomplements.v
index c4ec7baf8d..470130b9b8 100644
--- a/contrib/omega/Zcomplements.v
+++ b/contrib/omega/Zcomplements.v
@@ -84,7 +84,7 @@ Simpl; Do 2 Rewrite Zmult_n_1; Auto 1.
Unfold Zs.
Intros x0 Hx0; Repeat Rewrite Zmult_plus_distr_r.
Repeat Rewrite Zmult_n_1.
-Omega. (* Auto with zarith. *)
+Auto with zarith.
Unfold Zpred; Omega.
Save.
diff --git a/contrib/omega/Zpower.v b/contrib/omega/Zpower.v
index c696aec28c..52f7117153 100644
--- a/contrib/omega/Zpower.v
+++ b/contrib/omega/Zpower.v
@@ -285,7 +285,7 @@ Section power_div_with_rest.
Definition Zdiv_rest_aux :=
[qrd:(Z*Z)*Z]
let (qr,d)=qrd in let (q,r)=qr in
- (Cases q of
+ (<Z*Z>Cases q of
ZERO => ` (0, r)`
| (POS xH) => ` (0, d + r)`
| (POS (xI n)) => ` ((POS n), d + r)`