-
Notifications
You must be signed in to change notification settings - Fork 4
Interoperability with Julia's Graphs module
Ed Scheinerman edited this page Oct 5, 2022
·
1 revision
Computing with simple graphs (graphs without loops, directions, or multiple edges) is supported both by this SimpleGraphs
module (with the UndirectedGraph
type) as well as by the Graphs
module
(with the SimpleGraph
type).
You can use the SimpleGraphConverter
module to convert one kind of
graph to the other. See the README
file in that module.