Commit 2025-11-16 16:31 26cb6998
View on Github →feat(Tactic/Order): translate linear orders to Int (#26580)
It was pointed out that order is not complete for linear orders with lattice operations (while it remains complete for linear orders without lattice operations and for general lattices without assuming linearity). The problem for linear orders with lattice operations is NP-hard, but it can be translated from an arbitrary type to Int and then solved using a smart and efficient procedure (such as omega). This PR implements such a translation within the order tactic.