I have the following Lemma but couldn't prove it:
Lemma my_comp2: forall i t:Z,
t<i -> Int.ltu (Int.repr i) (Int.repr t) = false.
Proof.
....
I found the tactic for equality (link) but can't find the one for lt/ltu or gt/gtu:
Theorem eq_false: forall x y, x <> y -> eq x y = false.
Any help will be appreciated!
Thanks,