diff options
| author | herbelin | 2001-12-19 22:42:08 +0000 |
|---|---|---|
| committer | herbelin | 2001-12-19 22:42:08 +0000 |
| commit | 8fb17c4cac1336e17fd8b95aadb456e2b292657f (patch) | |
| tree | 8b5d1d7ecceb2e51d82033c01c82d9b3886157a5 | |
| parent | d13bfeb840d37f93fc60d7141f125f3ff59efc0e (diff) | |
Test sobriété de la réduction de Intuition
git-svn-id: svn+ssh://scm.gforge.inria.fr/svn/coq/trunk@2350 85f007b7-540e-0410-9357-904b9bb8a0f7
| -rw-r--r-- | test-suite/output/Intuition.out | 7 | ||||
| -rw-r--r-- | test-suite/output/Intuition.v | 3 |
2 files changed, 10 insertions, 0 deletions
diff --git a/test-suite/output/Intuition.out b/test-suite/output/Intuition.out new file mode 100644 index 0000000000..cadb35c630 --- /dev/null +++ b/test-suite/output/Intuition.out @@ -0,0 +1,7 @@ +1 subgoal + + m : Z + n : Z + H : `m >= n` + ============================ + `m >= m` diff --git a/test-suite/output/Intuition.v b/test-suite/output/Intuition.v new file mode 100644 index 0000000000..94b5785e8f --- /dev/null +++ b/test-suite/output/Intuition.v @@ -0,0 +1,3 @@ +Require ZArith. +Goal (m,n:Z) `m >= n` -> `m >= m` /\ `m >= n`. +Intros; Intuition. |
