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

Full docs

Graphs.TestModule
Graphs.Test

A module that provides utilities for testing functions that should work with any Graphs.AbstractGraph.

source
Graphs.Test.GenericDiGraphType
GenericDiGraph{T} <: Graphs.AbstractGraph{T}

A directed graph type that can be used to tests functions that relay on the Graphs.jl interface.

source
Graphs.Test.GenericEdgeType
GenericEdge <: Graphs.AbstractEdge

An edge type that can be used to tests functions that relay on the Graphs.jl interface.

source
Graphs.Test.GenericGraphType
GenericGraph{T} <: Graphs.AbstractGraph{T}

An undirected graph type that can be used to tests functions that relay on the Graphs.jl interface.

source
Graphs.Test.generic_graphMethod
generic_graph(g::Union{SimpleGraph, SimpleDiGraph})

Return either a GenericGraph or GenericDiGraph that wraps a copy of g.

source