I may be wrong but it appears that the simproc for boolean_algebra are broken.
Small example
lemma "(A ⊔ B) ⊔ A = A ⊔ (B :: 'a :: boolean_algebra)"
apply simp (*fails*)
oops
Nevermind it appears that the simpproc only deals with
cancelling out negations.
lemma "(A ⊔ B) ⊔ - A = (B :: 'a :: boolean_algebra)"
supply [[simp_trace]]
apply (simp ) (*simplifies to ⊤ = B *)
Last updated: Apr 03 2025 at 20:22 UTC