Package | Description |
---|---|
Algorithm | |
App | |
CommonGraphs | |
Frame | |
GraphGenerator | |
Visualization |
Modifier and Type | Method and Description |
---|---|
java.util.ArrayList<Vertex> |
SearchAlgorithm.getClosedV()
Gets the closed V.
|
java.util.ArrayList<Vertex> |
SearchAlgorithm.getResultV()
Gets the result V.
|
Constructor and Description |
---|
AStar(edu.uci.ics.jung.graph.Graph<Vertex,Edge> g)
Instantiates a new a star.
|
BFS(edu.uci.ics.jung.graph.Graph<Vertex,Edge> g)
Instantiates a new bfs.
|
DFS(edu.uci.ics.jung.graph.Graph<Vertex,Edge> g)
Instantiates a new dfs.
|
GreedySearch(edu.uci.ics.jung.graph.Graph<Vertex,Edge> g)
Instantiates a new greedy search.
|
Modifier and Type | Method and Description |
---|---|
edu.uci.ics.jung.graph.Graph<Vertex,Edge> |
SaveLoad.getLoadedGraph()
Gets the loaded graph.
|
edu.uci.ics.jung.algorithms.layout.AbstractLayout<Vertex,Edge> |
SaveLoad.getLoadedLayout()
Gets the loaded layout.
|
Modifier and Type | Method and Description |
---|---|
boolean |
SaveLoad.Save(javax.swing.JFrame f,
edu.uci.ics.jung.graph.Graph<Vertex,Edge> g,
edu.uci.ics.jung.algorithms.layout.AbstractLayout<Vertex,Edge> l)
Save.
|
boolean |
SaveLoad.Save(javax.swing.JFrame f,
edu.uci.ics.jung.graph.Graph<Vertex,Edge> g,
edu.uci.ics.jung.algorithms.layout.AbstractLayout<Vertex,Edge> l)
Save.
|
Modifier and Type | Method and Description |
---|---|
edu.uci.ics.jung.graph.Graph<Vertex,Edge> |
GridGraph.getGraph()
Gets the graph.
|
edu.uci.ics.jung.algorithms.layout.AbstractLayout<Vertex,Edge> |
GridGraph.getLayout()
Gets the layout.
|
Modifier and Type | Method and Description |
---|---|
static java.util.ArrayList<Vertex> |
Frame.getClosedV()
Gets the closed V.
|
static java.util.ArrayList<Vertex> |
Frame.getResultV()
Gets the result V.
|
Modifier and Type | Method and Description |
---|---|
Vertex |
VertexFactory.get() |
Vertex |
Vertex.getPrevious()
Gets the previous.
|
Modifier and Type | Method and Description |
---|---|
static edu.uci.ics.jung.graph.Graph<Vertex,Edge> |
Engine.generateEmptyGraph()
Generate empty graph.
|
static edu.uci.ics.jung.graph.Graph<Vertex,Edge> |
Engine.generateGraph()
Generate graph.
|
static edu.uci.ics.jung.graph.Graph<Vertex,Edge> |
Engine.getGraph()
Gets the graph.
|
Modifier and Type | Method and Description |
---|---|
int |
Vertex.compareTo(Vertex o) |
void |
Vertex.setPrevious(Vertex v)
Sets the previous.
|
Modifier and Type | Method and Description |
---|---|
static edu.uci.ics.jung.algorithms.layout.AbstractLayout<Vertex,Edge> |
Visualization.getLayout()
Gets the layout.
|
edu.uci.ics.jung.visualization.VisualizationViewer<Vertex,Edge> |
Visualization.getVisualizationViewer()
Gets the visualization viewer.
|
Modifier and Type | Method and Description |
---|---|
static double |
Visualization.getVertexX(Vertex vertex)
Gets the vertex X.
|
static double |
Visualization.getVertexY(Vertex vertex)
Gets the vertex Y.
|
Modifier and Type | Method and Description |
---|---|
static void |
Visualization.evaluateEdges(edu.uci.ics.jung.graph.Graph<Vertex,Edge> g)
Evaluate edges.
|
static void |
Visualization.setLayout(edu.uci.ics.jung.algorithms.layout.AbstractLayout<Vertex,Edge> l)
Sets the layout.
|
void |
Visualization.Visualize(edu.uci.ics.jung.graph.Graph<Vertex,Edge> g,
edu.uci.ics.jung.algorithms.layout.AbstractLayout<Vertex,Edge> l)
Visualize.
|
void |
Visualization.Visualize(edu.uci.ics.jung.graph.Graph<Vertex,Edge> g,
edu.uci.ics.jung.algorithms.layout.AbstractLayout<Vertex,Edge> l)
Visualize.
|