Package | Description |
---|---|
com.google.javascript.jscomp.graph |
Provides graph data structures and algorithms for coloring and fixed-point
computations.
|
Modifier and Type | Interface and Description |
---|---|
static interface |
DiGraph.DiGraphEdge<N,E>
A generic directed graph edge.
|
static interface |
UndiGraph.UndiGraphEdge<N,E>
A generic undirected graph edge.
|
Modifier and Type | Method and Description |
---|---|
Graph.GraphEdge<N,E> |
LinkedDirectedGraph.getFirstEdge(N n1,
N n2) |
Graph.GraphEdge<N,E> |
LinkedUndirectedGraph.getFirstEdge(N n1,
N n2) |
abstract Graph.GraphEdge<N,E> |
Graph.getFirstEdge(N n1,
N n2)
Retrieves any edge from the graph.
|
Modifier and Type | Method and Description |
---|---|
java.util.List<Graph.GraphEdge<N,E>> |
LinkedUndirectedGraph.getEdges() |
abstract java.util.List<? extends Graph.GraphEdge<N,E>> |
Graph.getEdges()
Gets an immutable list of all edges.
|
java.util.List<Graph.GraphEdge<N,E>> |
LinkedUndirectedGraph.getEdges(N n1,
N n2) |
abstract java.util.List<? extends Graph.GraphEdge<N,E>> |
Graph.getEdges(N n1,
N n2)
Retrieves an edge from the graph.
|
Copyright © 2009-2017 Google. All Rights Reserved.