Test graphs
Graphs.Test is a module containing generic graph structures which make as few hypotheses as possible beyond the basic interface. It is not part of the public API and may break unexpectedly.
Index
Graphs.TestGraphs.Test.GenericDiGraphGraphs.Test.GenericEdgeGraphs.Test.GenericGraphGraphs.Test.generic_graph
Full docs
Graphs.Test — ModuleGraphs.TestA module that provides utilities for testing functions that should work with any Graphs.AbstractGraph.
Graphs.Test.GenericDiGraph — TypeGenericDiGraph{T} <: Graphs.AbstractGraph{T}A directed graph type that can be used to tests functions that relay on the Graphs.jl interface.
Graphs.Test.GenericEdge — TypeGenericEdge <: Graphs.AbstractEdgeAn edge type that can be used to tests functions that relay on the Graphs.jl interface.
Graphs.Test.GenericGraph — TypeGenericGraph{T} <: Graphs.AbstractGraph{T}An undirected graph type that can be used to tests functions that relay on the Graphs.jl interface.
Graphs.Test.generic_graph — Methodgeneric_graph(g::Union{SimpleGraph, SimpleDiGraph})Return either a GenericGraph or GenericDiGraph that wraps a copy of g.