Skip to content

Commit aa82a00

Browse files
Fix dual_univ_eq_ker
1 parent 0fe45ac commit aa82a00

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Mathlib/Geometry/Convex/Cone/Dual.lean

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -208,7 +208,7 @@ variable {p : M →ₗ[R] N →ₗ[R] R}
208208
variable {C : PointedCone R M}
209209

210210
lemma dual_univ_eq_ker : dual p ⊤ = ker p.flip := by
211-
ext x; simpa [Eq.comm] using forall_le_iff_eq (f := 0) (g := p.flip x)
211+
ext x; simpa [Eq.comm, Iff.comm] using AddMonoidHom.ext_iff_le (f := 0) (g := p.flip x)
212212

213213
lemma dual_top (hp : Injective p.flip) : dual p ⊤ = 0 := by
214214
simpa [dual_univ_eq_ker] using ker_eq_bot_of_injective hp

0 commit comments

Comments
 (0)