Hi, @djukic14 ! Thank you for setting up this resources, it is incredibly valuable!
I wanted to post a few suggestions on how we can make this more widely advertised in Graphs.jl and more easily used through Graphs.jl
using Graphs
import Graph(s)Coloring
g = <some_graph>
c = Graphs.color(g, ColoringAlgGreedy())::Coloring
c = Graphs.color(g, ColoringAlgDSATUR())::Coloring
c = Graphs.color(g, etc...)::Coloring
The names above are probably not the best ones, I am just posting it as an example.
It is fine if there will be (hopefully non-breaking) changes to Graphs.jl.
Hi, @djukic14 ! Thank you for setting up this resources, it is incredibly valuable!
I wanted to post a few suggestions on how we can make this more widely advertised in Graphs.jl and more easily used through Graphs.jl
The names above are probably not the best ones, I am just posting it as an example.
It is fine if there will be (hopefully non-breaking) changes to
Graphs.jl.