aboutsummaryrefslogtreecommitdiff
path: root/test-suite/output
diff options
context:
space:
mode:
authorVincent Laporte2019-11-05 16:29:24 +0000
committerVincent Laporte2019-11-25 08:40:39 +0000
commited89ceb71efa910764290e4017c0ca9cb829eb7c (patch)
tree06f0e956311db52a8b4bc4faeef9182c5c16f8bd /test-suite/output
parentb3fc3cbd36570b77af9f17237f30713be861c3ed (diff)
Test-suite: avoid using “omega”
Diffstat (limited to 'test-suite/output')
-rw-r--r--test-suite/output/Fixpoint.v8
1 files changed, 4 insertions, 4 deletions
diff --git a/test-suite/output/Fixpoint.v b/test-suite/output/Fixpoint.v
index 61ae4edbd1..398528de72 100644
--- a/test-suite/output/Fixpoint.v
+++ b/test-suite/output/Fixpoint.v
@@ -16,7 +16,7 @@ Check
end
in f 0.
-Require Import ZArith_base Omega.
+Require Import ZArith_base Lia.
Open Scope Z_scope.
Inductive even: Z -> Prop :=
@@ -35,13 +35,13 @@ Proof.
fix even_pos_odd_pos 2 with (odd_pos_even_pos n (H:odd n) {struct H} : n >= 1).
intros.
destruct H.
- omega.
+ lia.
apply odd_pos_even_pos in H.
- omega.
+ lia.
intros.
destruct H.
apply even_pos_odd_pos in H.
- omega.
+ lia.
Qed.
CoInductive Inf := S { projS : Inf }.