Skip to content

Commit 848d915

Browse files
committed
Update postprocessing.jl
1 parent 00974f5 commit 848d915

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/postprocessing.jl

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -209,7 +209,7 @@ function postprocess_star_bicoloring!(
209209

210210
# Process the trivial stars (if any)
211211
if nb_trivial_stars > 0
212-
occurrences .= 0
212+
fill!(occurrences, 0)
213213
all_trivial_stars_treated = true
214214

215215
rvS = rowvals(S)
@@ -338,7 +338,7 @@ function postprocess_acyclic_coloring!(
338338

339339
# Process the trivial trees (if any)
340340
if nb_trivial_trees > 0
341-
occurrences .= 0
341+
fill!(occurrences, 0)
342342
all_trivial_trees_treated = true
343343

344344
for k in 1:nt
@@ -453,7 +453,7 @@ function postprocess_acyclic_bicoloring!(
453453

454454
# Process the trivial trees (if any)
455455
if nb_trivial_trees > 0
456-
occurrences .= 0
456+
fill!(occurrences, 0)
457457
all_trivial_trees_treated = true
458458

459459
for k in 1:nt

0 commit comments

Comments
 (0)