Skip to content

Instantly share code, notes, and snippets.

@pi8027
Last active August 29, 2015 14:13
Show Gist options
  • Save pi8027/0e50404fe879d95a7bbe to your computer and use it in GitHub Desktop.
Save pi8027/0e50404fe879d95a7bbe to your computer and use it in GitHub Desktop.
omega nightmare
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