Coq PR https://github.com/coq/coq/pull/11906 extends lia with support for boolean operators.
This has the consequence that intuition is able to perform some
boolean reasoning e.g. true = false -> 0 = 1.
The PR removes (redundant) calls to intuition.
This is yetanotherinstance of getting bitten by the default auto with * in intuition and firstorder. We should really stop using them without an explicit leaf tactic.
On the other hand, removing redundant invocations of intuition is an improvement too, so I'm merging this, thanks @fajb!
Coq PR https://github.com/coq/coq/pull/11906 extends
lia
with support for boolean operators. This has the consequence thatintuition
is able to perform some boolean reasoning e.g. true = false -> 0 = 1. The PR removes (redundant) calls tointuition
.