Skip to content

Commit b7bd4a8

Browse files
committed
Format src/interface.jl
1 parent c565b58 commit b7bd4a8

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

src/interface.jl

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -331,7 +331,9 @@ function _coloring(
331331
forced_colors::Union{AbstractVector{<:Integer},Nothing}=nothing,
332332
) where {R}
333333
A_and_Aᵀ, edge_to_index = bidirectional_pattern(A; symmetric_pattern)
334-
ag = AdjacencyGraph(A_and_Aᵀ, edge_to_index, 0; augmented_graph=true, original_size=size(A))
334+
ag = AdjacencyGraph(
335+
A_and_Aᵀ, edge_to_index, 0; augmented_graph=true, original_size=size(A)
336+
)
335337
postprocessing_minimizes = algo.postprocessing_minimizes
336338
outputs_by_order = map(algo.orders) do order
337339
vertices_in_order = vertices(ag, order)
@@ -383,7 +385,9 @@ function _coloring(
383385
symmetric_pattern::Bool,
384386
) where {R}
385387
A_and_Aᵀ, edge_to_index = bidirectional_pattern(A; symmetric_pattern)
386-
ag = AdjacencyGraph(A_and_Aᵀ, edge_to_index, 0; augmented_graph=true, original_size=size(A))
388+
ag = AdjacencyGraph(
389+
A_and_Aᵀ, edge_to_index, 0; augmented_graph=true, original_size=size(A)
390+
)
387391
postprocessing_minimizes = algo.postprocessing_minimizes
388392
outputs_by_order = map(algo.orders) do order
389393
vertices_in_order = vertices(ag, order)

0 commit comments

Comments
 (0)