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 GraphGraphTest. graphprivate static GraphPathTest. graph -
Uses of Graph in org.insa.graphs.algorithm
Fields in org.insa.graphs.algorithm declared as Graph Modifier and Type Field Description private GraphAbstractInputData. graphMethods in org.insa.graphs.algorithm that return Graph Modifier and Type Method Description GraphAbstractInputData. 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 GraphMainWindow. graphprivate GraphNodesInputPanel. graphprivate GraphNodesInputPanel.NodeFinder. graphMethods in org.insa.graphs.gui that return Graph Modifier and Type Method Description protected GraphNodesInputPanel. getGraph()Methods in org.insa.graphs.gui with parameters of type Graph Modifier and Type Method Description voidGraphChangeListener. newGraphLoaded(Graph graph)Event fire when a new graph has been loaded.voidNodesInputPanel. newGraphLoaded(Graph graph)voidPathsPanel. newGraphLoaded(Graph graph)voidSolutionPanel. 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 voidDrawing. drawGraph(Graph graph)Draw the given graph using a default palette specific to the implementation.voidDrawing. 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 voidBasicDrawing. drawGraph(Graph graph)voidBasicDrawing. drawGraph(Graph graph, GraphPalette palette)voidMapViewDrawing. drawGraph(Graph graph)voidMapViewDrawing. drawGraph(Graph graph, GraphPalette palette)protected voidBasicDrawing. 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 GraphPath. graphMethods in org.insa.graphs.model that return Graph Modifier and Type Method Description GraphPath. getGraph()GraphGraph. transpose()Methods in org.insa.graphs.model with parameters of type Graph Modifier and Type Method Description static PathPath. createFastestPathFromNodes(Graph graph, java.util.List<Node> nodes)Create a new path that goes through the given list of nodes (in order), choosing the fastest route if multiple are available.static PathPath. createShortestPathFromNodes(Graph graph, java.util.List<Node> nodes)Create a new path that goes through the given list of nodes (in order), choosing the shortest route if multiple are available.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 GraphBinaryGraphReader. read()GraphGraphReader. 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 NodeBinaryPathReader. readNode(Graph graph)Read a node from the input stream and returns it.PathBinaryPathReader. readPath(Graph graph)PathPathReader. readPath(Graph graph)Read a path of the given graph and returns it.
-