Reference

Contents

Index

GraphDynamicalSystems.Conversions.to_arbitrary_steppableFunction
to_arbitrary_steppable(gds)

Convert gds to a DynamicalSystemsBase.ArbitrarySteppable.

gds is required to implement the GDS interface.

Tip

Use this method when an object <:DynamicalSystem is necessary. The DynamicalSystems ecosystem currently requires this for most (all?) of its functionality. Until a trait-based version of the ecosystem arrives, then one must use this method (or one like it) to construct something that is <:DynamicalSystem.

Note

Requires DynamicalSystemsBase to be loaded.

source
GraphDynamicalSystems.Conversions.to_simple_graphFunction
to_simple_graph(gds)

Convert gds to a Graphs.SimpleDiGraph.

gds is required to implement the GDS interface.

Tip

Use this method when an object <:AbstractGraph is necessary. The Graphs ecosystem currently requires this for most (all?) of its functionality. Until a trait-based version of the ecosystem arrives, then one must use this method (or one like it) to construct something that is <:AbstractGraph.

Note

Requires Graphs to be loaded.

source
GraphDynamicalSystems.Constructors.vertex_function_to_edgelistMethod
vertex_function_to_edgelist(vertex_fn_pairs)
vertex_function_to_edgelist(vertex, fn, all_vertices)

Create a list of edges based on the vertices that appear in fn.

If a vertex X has a function X + Y and all_vertices = [X, Y, ...], then return edges X => X and X => Y.

Note

Requires AbstractTrees to be loaded.

source