Skip to content

Commit 90e3163

Browse files
committed
Revisit post-processing
1 parent 2cf5f8b commit 90e3163

File tree

6 files changed

+437
-51
lines changed

6 files changed

+437
-51
lines changed

src/coloring.jl

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,8 @@ The optional `forced_colors` keyword argument is used to enforce predefined vert
109109
function star_coloring(
110110
g::AdjacencyGraph{T},
111111
vertices_in_order::AbstractVector{<:Integer},
112-
postprocessing::Bool;
112+
postprocessing::Bool,
113+
postprocessing_minimizes::Symbol;
113114
forced_colors::Union{AbstractVector{<:Integer},Nothing}=nothing,
114115
) where {T<:Integer}
115116
# Initialize data structures
@@ -168,7 +169,7 @@ function star_coloring(
168169
if postprocessing
169170
# Reuse the vector forbidden_colors to compute offsets during post-processing
170171
offsets = forbidden_colors
171-
postprocess!(color, star_set, g, offsets)
172+
postprocess!(color, star_set, g, offsets, postprocessing_minimizes)
172173
end
173174
return color, star_set
174175
end
@@ -273,7 +274,10 @@ If `postprocessing=true`, some colors might be replaced with `0` (the "neutral"
273274
> [_New Acyclic and Star Coloring Algorithms with Application to Computing Hessians_](https://epubs.siam.org/doi/abs/10.1137/050639879), Gebremedhin et al. (2007), Algorithm 3.1
274275
"""
275276
function acyclic_coloring(
276-
g::AdjacencyGraph{T}, vertices_in_order::AbstractVector{<:Integer}, postprocessing::Bool
277+
g::AdjacencyGraph{T},
278+
vertices_in_order::AbstractVector{<:Integer},
279+
postprocessing::Bool,
280+
postprocessing_minimizes::Symbol,
277281
) where {T<:Integer}
278282
# Initialize data structures
279283
nv = nb_vertices(g)
@@ -345,7 +349,7 @@ function acyclic_coloring(
345349
if postprocessing
346350
# Reuse the vector forbidden_colors to compute offsets during post-processing
347351
offsets = forbidden_colors
348-
postprocess!(color, tree_set, g, offsets)
352+
postprocess!(color, tree_set, g, offsets, postprocessing_minimizes)
349353
end
350354
return color, tree_set
351355
end

src/interface.jl

Lines changed: 12 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -69,11 +69,12 @@ It is passed as an argument to the main function [`coloring`](@ref).
6969
7070
# Constructors
7171
72-
GreedyColoringAlgorithm{decompression}(order=NaturalOrder(); postprocessing=false)
73-
GreedyColoringAlgorithm(order=NaturalOrder(); postprocessing=false, decompression=:direct)
72+
GreedyColoringAlgorithm{decompression}(order=NaturalOrder(); postprocessing=false, postprocessing_minimizes=:all_colors)
73+
GreedyColoringAlgorithm(order=NaturalOrder(); postprocessing=false, postprocessing_minimizes=:all_colors, decompression=:direct)
7474
7575
- `order::Union{AbstractOrder,Tuple}`: the order in which the columns or rows are colored, which can impact the number of colors. Can also be a tuple of different orders to try out, from which the best order (the one with the lowest total number of colors) will be used.
7676
- `postprocessing::Bool`: whether or not the coloring will be refined by assigning the neutral color `0` to some vertices.
77+
- `postprocessing_minimizes::Symbol`: either `:all_colors`, `:row_colors` or `:column_colors`. The options `:row_colors` and `:column_colors` are only available for bicoloring. Otherwise, the setting defaults to `:all_colors`.
7778
- `decompression::Symbol`: either `:direct` or `:substitution`. Usually `:substitution` leads to fewer colors, at the cost of a more expensive coloring (and decompression). When `:substitution` is not applicable, it falls back on `:direct` decompression.
7879
7980
!!! warning
@@ -98,27 +99,30 @@ struct GreedyColoringAlgorithm{decompression,N,O<:NTuple{N,AbstractOrder}} <:
9899
ADTypes.AbstractColoringAlgorithm
99100
orders::O
100101
postprocessing::Bool
102+
postprocessing_minimizes::Symbol
101103

102104
function GreedyColoringAlgorithm{decompression}(
103105
order_or_orders::Union{AbstractOrder,Tuple}=NaturalOrder();
104106
postprocessing::Bool=false,
107+
postprocessing_minimizes::Symbol=:all_colors,
105108
) where {decompression}
106109
check_valid_algorithm(decompression)
107110
if order_or_orders isa AbstractOrder
108111
orders = (order_or_orders,)
109112
else
110113
orders = order_or_orders
111114
end
112-
return new{decompression,length(orders),typeof(orders)}(orders, postprocessing)
115+
return new{decompression,length(orders),typeof(orders)}(orders, postprocessing, postprocessing_minimizes)
113116
end
114117
end
115118

116119
function GreedyColoringAlgorithm(
117120
order_or_orders::Union{AbstractOrder,Tuple}=NaturalOrder();
118121
postprocessing::Bool=false,
119122
decompression::Symbol=:direct,
123+
postprocessing_minimizes::Symbol=:all_colors,
120124
)
121-
return GreedyColoringAlgorithm{decompression}(order_or_orders; postprocessing)
125+
return GreedyColoringAlgorithm{decompression}(order_or_orders; postprocessing, postprocessing_minimizes)
122126
end
123127

124128
## Coloring
@@ -282,7 +286,7 @@ function _coloring(
282286
ag = AdjacencyGraph(A; augmented_graph=false)
283287
color_and_star_set_by_order = map(algo.orders) do order
284288
vertices_in_order = vertices(ag, order)
285-
return star_coloring(ag, vertices_in_order, algo.postprocessing; forced_colors)
289+
return star_coloring(ag, vertices_in_order, algo.postprocessing, :all_colors; forced_colors)
286290
end
287291
color, star_set = argmin(maximum first, color_and_star_set_by_order)
288292
if speed_setting isa WithResult
@@ -303,7 +307,7 @@ function _coloring(
303307
ag = AdjacencyGraph(A; augmented_graph=false)
304308
color_and_tree_set_by_order = map(algo.orders) do order
305309
vertices_in_order = vertices(ag, order)
306-
return acyclic_coloring(ag, vertices_in_order, algo.postprocessing)
310+
return acyclic_coloring(ag, vertices_in_order, algo.postprocessing, :all_colors)
307311
end
308312
color, tree_set = argmin(maximum first, color_and_tree_set_by_order)
309313
if speed_setting isa WithResult
@@ -327,7 +331,7 @@ function _coloring(
327331
outputs_by_order = map(algo.orders) do order
328332
vertices_in_order = vertices(ag, order)
329333
_color, _star_set = star_coloring(
330-
ag, vertices_in_order, algo.postprocessing; forced_colors
334+
ag, vertices_in_order, algo.postprocessing, algo.postprocessing_minimizes; forced_colors
331335
)
332336
(_row_color, _column_color, _symmetric_to_row, _symmetric_to_column) = remap_colors(
333337
eltype(ag), _color, maximum(_color), size(A)...
@@ -373,7 +377,7 @@ function _coloring(
373377
ag = AdjacencyGraph(A_and_Aᵀ, edge_to_index; augmented_graph=true)
374378
outputs_by_order = map(algo.orders) do order
375379
vertices_in_order = vertices(ag, order)
376-
_color, _tree_set = acyclic_coloring(ag, vertices_in_order, algo.postprocessing)
380+
_color, _tree_set = acyclic_coloring(ag, vertices_in_order, algo.postprocessing, algo.postprocessing_minimizes)
377381
(_row_color, _column_color, _symmetric_to_row, _symmetric_to_column) = remap_colors(
378382
eltype(ag), _color, maximum(_color), size(A)...
379383
)

0 commit comments

Comments
 (0)