diff options
author | Stephane Glondu <steph@glondu.net> | 2008-08-08 13:18:42 +0200 |
---|---|---|
committer | Stephane Glondu <steph@glondu.net> | 2008-08-08 13:18:42 +0200 |
commit | 870075f34dd9fa5792bfbf413afd3b96f17e76a0 (patch) | |
tree | 0c647056de1832cf1dba5ba58758b9121418e4be /test-suite/micromega/bertot.v | |
parent | a0cfa4f118023d35b767a999d5a2ac4b082857b4 (diff) |
Imported Upstream version 8.2~beta4+dfsgupstream/8.2.beta4+dfsg
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. |