Gurobi / modeling-examples

Gurobi modeling examples
https://gurobi.github.io/modeling-examples/
Apache License 2.0
615 stars 272 forks source link

proposal to avoid nx.nx_pydot.graphviz_layout #28

Closed venaturum closed 4 months ago

venaturum commented 4 months ago

In modeling-examples/food_program/food_supply.ipynb we draw a network with nx.nx_pydot.graphviz_layout which requires an external program called Graphviz to be installed.

We can get essentially the same plot with nx.kamada_kawai_layout which is implemented entirely within the networkx package.

image

Moving to nx.kamada_kawai_layout will make it easier for automated testing.