This PR adds support for decidable equality of empty lists and empty arrays. Decidable equality for lists and arrays is suitably modified so that all diamonds are definitionally equal. Following #9302, the strong condition of definitionally equal under `with_reducible_and_instances` is tested. This also moves some of the comments added in #9302 out of docstrings. --------- Co-authored-by: Aaron Liu <aaronliu2008@outlook.com> Co-authored-by: Eric Wieser <wieser.eric@gmail.com>
45 lines
1.5 KiB
Text
45 lines
1.5 KiB
Text
def listL (a : List α) := if a = [] then 1 else 2
|
||
def listR (a : List α) := if [] = a then 1 else 2
|
||
|
||
/-- info: 1 -/
|
||
#guard_msgs in #eval @listL Nat []
|
||
/-- info: 2 -/
|
||
#guard_msgs in #eval listL [""]
|
||
/-- info: 1 -/
|
||
#guard_msgs in #eval @listL Nat []
|
||
/-- info: 2 -/
|
||
#guard_msgs in #eval listL [()]
|
||
|
||
|
||
-- test instance diamonds
|
||
example :
|
||
@List.instDecidableEqNil α [] = @List.instDecidableNilEq α [] := by
|
||
with_reducible_and_instances rfl
|
||
|
||
section
|
||
variable {α : Type u} [DecidableEq α]
|
||
example (x : List α) :
|
||
instDecidableEqList x [] = List.instDecidableEqNil x := by
|
||
with_reducible_and_instances rfl
|
||
|
||
example (x : List α) :
|
||
instDecidableEqList [] x = List.instDecidableNilEq x := by
|
||
with_reducible_and_instances rfl
|
||
end
|
||
|
||
|
||
-- List decidable equality using `withPtrEqDecEq`
|
||
def listDecEqAux {α} [s : DecidableEq α] : ∀ (as bs : List α), Decidable (as = bs)
|
||
| [], [] => isTrue rfl
|
||
| [], b::bs => isFalse $ fun h => List.noConfusion h
|
||
| a::as, [] => isFalse $ fun h => List.noConfusion h
|
||
| a::as, b::bs =>
|
||
match s a b with
|
||
| isTrue h₁ =>
|
||
match withPtrEqDecEq as bs (fun _ => listDecEqAux as bs) with
|
||
| isTrue h₂ => isTrue $ h₁ ▸ h₂ ▸ rfl
|
||
| isFalse h₂ => isFalse $ fun h => List.noConfusion h $ fun _ h₃ => absurd h₃ h₂
|
||
| isFalse h₁ => isFalse $ fun h => List.noConfusion h $ fun h₂ _ => absurd h₂ h₁
|
||
|
||
instance List.optimizedDecEq {α} [DecidableEq α] : DecidableEq (List α) :=
|
||
fun a b => withPtrEqDecEq a b (fun _ => listDecEqAux a b)
|