Uses of Class
org.insa.graphs.algorithm.AbstractSolution
-
-
Uses of AbstractSolution in org.insa.graphs.algorithm
Methods in org.insa.graphs.algorithm that return AbstractSolution Modifier and Type Method Description protected abstract AbstractSolution
AbstractAlgorithm. doRun()
Abstract method that should be implemented by child class.AbstractSolution
AbstractAlgorithm. run()
Run the algorithm and return the solution. -
Uses of AbstractSolution in org.insa.graphs.algorithm.carpooling
Subclasses of AbstractSolution in org.insa.graphs.algorithm.carpooling Modifier and Type Class Description class
CarPoolingSolution
-
Uses of AbstractSolution in org.insa.graphs.algorithm.packageswitch
Subclasses of AbstractSolution in org.insa.graphs.algorithm.packageswitch Modifier and Type Class Description class
PackageSwitchSolution
-
Uses of AbstractSolution in org.insa.graphs.algorithm.shortestpath
Subclasses of AbstractSolution in org.insa.graphs.algorithm.shortestpath Modifier and Type Class Description class
ShortestPathSolution
-
Uses of AbstractSolution in org.insa.graphs.algorithm.weakconnectivity
Subclasses of AbstractSolution in org.insa.graphs.algorithm.weakconnectivity Modifier and Type Class Description class
WeaklyConnectedComponentsSolution
-
Uses of AbstractSolution in org.insa.graphs.gui
Fields in org.insa.graphs.gui declared as AbstractSolution Modifier and Type Field Description private AbstractSolution
SolutionPanel.SolutionBundle. solution
Methods in org.insa.graphs.gui that return AbstractSolution Modifier and Type Method Description AbstractSolution
SolutionPanel.SolutionBundle. getSolution()
Methods in org.insa.graphs.gui with parameters of type AbstractSolution Modifier and Type Method Description void
SolutionPanel. addSolution(AbstractSolution solution)
void
SolutionPanel. addSolution(AbstractSolution solution, boolean createOverlays)
Add the given solution to the panel.Constructors in org.insa.graphs.gui with parameters of type AbstractSolution Constructor Description SolutionBundle(AbstractSolution solution, boolean createOverlays)
Create a new bundle with the given solution and create a new overlay corresponding to the solution (if the solution is feasible).
-