diff options
Diffstat (limited to 'test-suite/micromega/bertot.v')
-rw-r--r-- | test-suite/micromega/bertot.v | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test-suite/micromega/bertot.v b/test-suite/micromega/bertot.v index 6951fcd3..bcf222f9 100644 --- a/test-suite/micromega/bertot.v +++ b/test-suite/micromega/bertot.v @@ -7,7 +7,7 @@ (************************************************************************) Require Import ZArith. -Require Import Micromegatac. +Require Import Psatz. Open Scope Z_scope. @@ -17,6 +17,6 @@ Goal (forall x y n, (x < n /\ x <= n /\ 2 * y = x * (x+1) -> x + 1 <= n /\ 2 *(x+1+y) = (x+1)*(x+2))). Proof. intros. - micromega Z. + psatz Z 3. Qed. |