Skip to content

Commit b494188

Browse files
authored
Fix visualization tutorial (#196)
1 parent bb695fa commit b494188

File tree

1 file changed

+7
-3
lines changed

1 file changed

+7
-3
lines changed

docs/src/vis.md

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ problem_bi = ColoringProblem(; structure=:nonsymmetric, partition=:bidirectional
7474
algo_bi = GreedyColoringAlgorithm(RandomOrder(StableRNG(0)); postprocessing=true, decompression=:direct)
7575
result_bi = coloring(S, problem_bi, algo_bi)
7676
77-
A_img, Br_img, Bc_img = show_colors(
77+
Ar_img, Ac_img, Br_img, Bc_img = show_colors(
7878
result_bi;
7979
colorscheme=ColorSchemes.progress,
8080
background_color=RGB(1, 1, 1), # white
@@ -87,10 +87,14 @@ A_img, Br_img, Bc_img = show_colors(
8787
In the bidirectional case, columns and rows can both get colors:
8888

8989
```@example img
90-
A_img
90+
Ar_img
91+
```
92+
93+
```@example img
94+
Ac_img
9195
```
9296

93-
And there are two compression results, one by row and one by column:
97+
And there are two associated compression results, one by row and one by column:
9498

9599
```@example img
96100
Br_img

0 commit comments

Comments
 (0)