Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 2 additions & 8 deletions MathlibTest/order.lean
Original file line number Diff line number Diff line change
Expand Up @@ -87,13 +87,7 @@ error: No contradiction found.

Additional diagnostic information may be available using the `set_option trace.order true` command.
---
trace: [order] Working on type ℕ (linear order)
[order] Collected atoms:
#0 := x
#1 := y
[order] Collected facts:
#0 ≠ #1
#0 ≤ #1
trace:
[order] Working on type α (partial order)
[order] Collected atoms:
#0 := a ⊓ (b ⊔ c)
Expand Down Expand Up @@ -124,7 +118,7 @@ trace: [order] Working on type ℕ (linear order)
¬ #0 < #5
-/
#guard_msgs in
example (a b c : α) (x y : Nat) (h : x < y) [Lattice α] : a ⊓ (b ⊔ c) ≤ (a ⊓ b) ⊔ (a ⊓ c) := by
example (a b c : α) [Lattice α] : a ⊓ (b ⊔ c) ≤ (a ⊓ b) ⊔ (a ⊓ c) := by
order

-- This used to work when a different matching strategy was used in `order`.
Expand Down
Loading