Skip to content

Commit b97978a

Browse files
committed
Fix 🐛 Update division quickstart text
1 parent 497bfbc commit b97978a

File tree

1 file changed

+7
-3
lines changed

1 file changed

+7
-3
lines changed

docs/source/quickstart.rst

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -264,10 +264,14 @@ And if we solve the tracking problem again with those costs...
264264
:hide-output:
265265

266266
solution = solver.solve()
267-
draw_solution(graph, solver, label_attribute='score')
268267

268+
.. jupyter-execute::
269+
:hide-code:
269270

270-
...we see that the orphan node is gone now. Its (negative) cost is not enough
271-
to justify starting a new track:
271+
solution = solver.solve()
272+
draw_solution(graph, solver, label_attribute='score')
273+
274+
...we see that all three nodes in the final time point are again selected, since
275+
dividing gives the solver an option to pick the node without paying the appear cost.
272276

273277
:jupyter-download-notebook:`Download this page as a Jupyter notebook<quickstart>`

0 commit comments

Comments
 (0)