Uses of Class
org.insa.graphs.model.Graph
-
-
Uses of Graph in org.insa.graphes.model
Fields in org.insa.graphes.model declared as Graph Modifier and Type Field Description private static Graph
GraphTest. graph
private static Graph
PathTest. graph
-
Uses of Graph in org.insa.graphs.algorithm
Fields in org.insa.graphs.algorithm declared as Graph Modifier and Type Field Description private Graph
AbstractInputData. graph
Methods in org.insa.graphs.algorithm that return Graph Modifier and Type Method Description Graph
AbstractInputData. getGraph()
Constructors in org.insa.graphs.algorithm with parameters of type Graph Constructor Description AbstractInputData(Graph graph, ArcInspector arcInspector)
Create a new AbstractInputData instance for the given graph, mode and filter. -
Uses of Graph in org.insa.graphs.algorithm.carpooling
Constructors in org.insa.graphs.algorithm.carpooling with parameters of type Graph Constructor Description CarPoolingData(Graph graph, ArcInspector arcFilter)
-
Uses of Graph in org.insa.graphs.algorithm.packageswitch
Constructors in org.insa.graphs.algorithm.packageswitch with parameters of type Graph Constructor Description PackageSwitchData(Graph graph, ArcInspector arcFilter)
-
Uses of Graph in org.insa.graphs.algorithm.shortestpath
Constructors in org.insa.graphs.algorithm.shortestpath with parameters of type Graph Constructor Description ShortestPathData(Graph graph, Node origin, Node destination, ArcInspector arcInspector)
Construct a new instance of ShortestPathInputData with the given parameters. -
Uses of Graph in org.insa.graphs.algorithm.weakconnectivity
Constructors in org.insa.graphs.algorithm.weakconnectivity with parameters of type Graph Constructor Description WeaklyConnectedComponentsData(Graph graph)
-
Uses of Graph in org.insa.graphs.gui
Fields in org.insa.graphs.gui declared as Graph Modifier and Type Field Description protected Graph
MainWindow. graph
private Graph
NodesInputPanel. graph
private Graph
NodesInputPanel.NodeFinder. graph
Methods in org.insa.graphs.gui that return Graph Modifier and Type Method Description protected Graph
NodesInputPanel. getGraph()
Methods in org.insa.graphs.gui with parameters of type Graph Modifier and Type Method Description void
GraphChangeListener. newGraphLoaded(Graph graph)
Event fire when a new graph has been loaded.void
NodesInputPanel. newGraphLoaded(Graph graph)
void
PathsPanel. newGraphLoaded(Graph graph)
void
SolutionPanel. newGraphLoaded(Graph graph)
Constructors in org.insa.graphs.gui with parameters of type Graph Constructor Description NodeFinder(Graph graph)
-
Uses of Graph in org.insa.graphs.gui.drawing
Methods in org.insa.graphs.gui.drawing with parameters of type Graph Modifier and Type Method Description void
Drawing. drawGraph(Graph graph)
Draw the given graph using a default palette specific to the implementation.void
Drawing. drawGraph(Graph graph, GraphPalette palette)
Draw the given graph using the given palette. -
Uses of Graph in org.insa.graphs.gui.drawing.components
Methods in org.insa.graphs.gui.drawing.components with parameters of type Graph Modifier and Type Method Description void
BasicDrawing. drawGraph(Graph graph)
void
BasicDrawing. drawGraph(Graph graph, GraphPalette palette)
void
MapViewDrawing. drawGraph(Graph graph)
void
MapViewDrawing. drawGraph(Graph graph, GraphPalette palette)
protected void
BasicDrawing. initialize(Graph graph)
Initialize the drawing for the given graph. -
Uses of Graph in org.insa.graphs.model
Fields in org.insa.graphs.model declared as Graph Modifier and Type Field Description private Graph
Path. graph
Methods in org.insa.graphs.model that return Graph Modifier and Type Method Description Graph
Path. getGraph()
Graph
Graph. transpose()
Methods in org.insa.graphs.model with parameters of type Graph Modifier and Type Method Description static Path
Path. createFastestPathFromNodes(Graph graph, java.util.List<Node> nodes)
Deprecated.Need to be implemented.static Path
Path. createShortestPathFromNodes(Graph graph, java.util.List<Node> nodes)
Deprecated.Need to be implemented.Constructors in org.insa.graphs.model with parameters of type Graph Constructor Description Path(Graph graph)
Create an empty path corresponding to the given graph.Path(Graph graph, java.util.List<Arc> arcs)
Create a new path with the given list of arcs.Path(Graph graph, Node node)
Create a new path containing a single node. -
Uses of Graph in org.insa.graphs.model.io
Methods in org.insa.graphs.model.io that return Graph Modifier and Type Method Description Graph
BinaryGraphReader. read()
Graph
GraphReader. read()
Read a graph an returns it.Methods in org.insa.graphs.model.io with parameters of type Graph Modifier and Type Method Description protected Node
BinaryPathReader. readNode(Graph graph)
Read a node from the input stream and returns it.Path
BinaryPathReader. readPath(Graph graph)
Path
PathReader. readPath(Graph graph)
Read a path of the given graph and returns it.
-