Last active
August 29, 2015 14:13
-
-
Save pi8027/0e50404fe879d95a7bbe to your computer and use it in GitHub Desktop.
omega nightmare
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Require Import Omega Psatz. | |
Open Scope Z. | |
Goal forall x y, x * 2 <= y -> 5 - 3 * x <= 4 * y -> 4 * y <= x + 6 -> False. | |
Proof. | |
intros x y. | |
Fail omega. | |
lia. | |
Qed. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment