Not sure what I am doing wrong but I thought reflexivity
should work on below, but it does not.
a, b : nat
H : (1 <=? a - b - 3) = true
______________________________________(1/7)
is_true (0 < a - b - 3)
I also tried to apply leb_complete in H.
which resulted in:
a, b : nat
H : (1 <= a - b - 3)%coq_nat
______________________________________(1/7)
is_true (0 < a - b - 3)
but in both cases, Coq gives me an error saying Unable to unify "true" with "is_true (0 < a - b - 3)"
It shouldn't be that complicated, right? Am I missing something here?