package
1.33.0-alpha.2
Repository: https://github.com/kubernetes/kubernetes.git
Documentation: pkg.go.dev
# README
Forked from gonum/graph@50b27dea7ebbfb052dfaf91681afc6fde28d8796 to support memory-use improvements to the simple graph
# Functions
Copy copies nodes and edges as undirected edges from the source to the destination without first clearing the destination.
# Interfaces
Builder is a graph that can have nodes and edges added.
Directed is a directed graph.
DirectedBuilder is a directed graph builder.
Edge is a graph edge.
EdgeRemover is an interface for removing nodes from a graph.
EdgeSetter is an interface for adding edges to a graph.
Graph is a generalized graph.
Node is a graph node.
NodeAdder is an interface for adding arbitrary nodes to a graph.
NodeRemover is an interface for removing nodes from a graph.
Undirected is an undirected graph.
UndirectedBuilder is an undirected graph builder.
Weighter defines graphs that can report edge weights.