Package | Description |
---|---|
com.google.javascript.jscomp.graph |
Provides graph data structures and algorithms for coloring and fixed-point
computations.
|
Modifier and Type | Class and Description |
---|---|
(package private) static class |
LinkedUndirectedGraph.AnnotatedLinkedUndirectedGraphNode<N,E>
An undirected graph node with annotations.
|
(package private) static class |
LinkedUndirectedGraph.LinkedUndirectedGraphNode<N,E>
An undirected graph node that stores outgoing edges and incoming edges as
an list within the node itself.
|
Modifier and Type | Field and Description |
---|---|
private UndiGraph.UndiGraphNode<N,E> |
LinkedUndirectedGraph.LinkedUndirectedGraphEdge.nodeA |
private UndiGraph.UndiGraphNode<N,E> |
LinkedUndirectedGraph.LinkedUndirectedGraphEdge.nodeB |
Modifier and Type | Method and Description |
---|---|
UndiGraph.UndiGraphNode<N,E> |
LinkedUndirectedGraph.createUndirectedGraphNode(N nodeValue) |
(package private) abstract UndiGraph.UndiGraphNode<N,E> |
UndiGraph.createUndirectedGraphNode(N nodeValue) |
UndiGraph.UndiGraphNode<N,E> |
LinkedUndirectedGraph.getUndirectedGraphNode(N nodeValue) |
abstract UndiGraph.UndiGraphNode<N,E> |
UndiGraph.getUndirectedGraphNode(N nodeValue) |
Modifier and Type | Method and Description |
---|---|
java.util.Collection<UndiGraph.UndiGraphNode<N,E>> |
LinkedUndirectedGraph.getUndirectedGraphNodes() |
(package private) abstract java.util.Collection<UndiGraph.UndiGraphNode<N,E>> |
UndiGraph.getUndirectedGraphNodes()
Gets an immutable collection of all the nodes in this graph.
|
Constructor and Description |
---|
AnnotatedLinkedUndirectedGraphEdge(UndiGraph.UndiGraphNode<N,E> nodeA,
E edgeValue,
UndiGraph.UndiGraphNode<N,E> nodeB) |
AnnotatedLinkedUndirectedGraphEdge(UndiGraph.UndiGraphNode<N,E> nodeA,
E edgeValue,
UndiGraph.UndiGraphNode<N,E> nodeB) |
LinkedUndirectedGraphEdge(UndiGraph.UndiGraphNode<N,E> nodeA,
E edgeValue,
UndiGraph.UndiGraphNode<N,E> nodeB) |
LinkedUndirectedGraphEdge(UndiGraph.UndiGraphNode<N,E> nodeA,
E edgeValue,
UndiGraph.UndiGraphNode<N,E> nodeB) |