Skip to content

Commit

Permalink
fix: mark imp_eq as a pre-theorem
Browse files Browse the repository at this point in the history
  • Loading branch information
leodemoura committed Dec 24, 2024
1 parent 6b8caf7 commit bb339e1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Init/Grind/Norm.lean
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ attribute [grind_norm] not_true
attribute [grind_norm] not_false_eq_true

-- Implication as a clause
@[grind_norm] theorem imp_eq (p q : Prop) : (p → q) = (¬ p ∨ q) := by
@[grind_norm] theorem imp_eq (p q : Prop) : (p → q) = (¬ p ∨ q) := by
by_cases p <;> by_cases q <;> simp [*]

-- And
Expand Down

0 comments on commit bb339e1

Please sign in to comment.