Skip to content
This repository has been archived by the owner on Jul 24, 2024. It is now read-only.

Commit

Permalink
fix lint
Browse files Browse the repository at this point in the history
  • Loading branch information
YaelDillies committed Jun 20, 2023
1 parent e23c624 commit beadee1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/combinatorics/simple_graph/regularity/uniform.lean
Original file line number Diff line number Diff line change
Expand Up @@ -277,7 +277,7 @@ that have edge density at least `δ`. -/
end,
loopless := λ a ⟨h, _⟩, G.loopless a h }

instance [decidable_rel G.adj] : decidable_rel (G.reduced P ε δ).adj :=
instance : decidable_rel (G.reduced P ε δ).adj :=
λ a b, @and.decidable _ _ _ $ @finset.decidable_dexists_finset _ _ _ $ λ U hU,
@finset.decidable_dexists_finset _ _ (λ V _,
a ∈ U ∧ b ∈ V ∧ U ≠ V ∧ G.is_uniform ε U V ∧ δ ≤ G.edge_density U V) $ λ V hV, and.decidable
Expand Down

0 comments on commit beadee1

Please sign in to comment.