Uses of Interface
algo.api.Solution

Packages that use Solution
algo.api   
algo.examples   
algo.solvers   
 

Uses of Solution in algo.api
 

Fields in algo.api declared as Solution
static Solution AbstractSolver.bestSolution
           
 

Methods in algo.api that return Solution
 Solution Solution.clone()
           
 Solution AbstractSolver.solve(Solution initial)
           
 Solution Solver.solve(Solution initial)
           
 

Methods in algo.api that return types with arguments of type Solution
 java.util.Enumeration<Solution> Solution.getSuccessors()
           
 

Methods in algo.api with parameters of type Solution
protected abstract  void AbstractSolver.search(Solution initial)
           
 Solution AbstractSolver.solve(Solution initial)
           
 Solution Solver.solve(Solution initial)
           
 void AbstractSolver.updateBest(Solution solution)
           
 

Uses of Solution in algo.examples
 

Classes in algo.examples that implement Solution
 class ProfileSolution
           
 

Methods in algo.examples that return types with arguments of type Solution
 java.util.Enumeration<Solution> ProfileSolution.getSuccessors()
           
 

Methods in algo.examples with parameters of type Solution
 int ProfileSolution.compareTo(Solution rhs)
           
 

Uses of Solution in algo.solvers
 

Methods in algo.solvers with parameters of type Solution
protected  void BreadthFirstSolver.search(Solution initial)
           
protected  void DepthFirstBranchAndBoundSolver.search(Solution solution)
           
protected  void DepthFirstSolver.search(Solution solution)