Uses of Interface
jopt.csp.search.SearchTechnique

Packages that use SearchTechnique
jopt.csp   
jopt.csp.search The interfaces to all your searching needs. 
 

Uses of SearchTechnique in jopt.csp
 

Methods in jopt.csp with parameters of type SearchTechnique
abstract  boolean CspSolver.solve(SearchAction action, SearchGoal goal, SearchTechnique technique, boolean continuallyImprove, boolean reset)
          Locates a solution for the current problem.
 boolean CspSolver.solve(SearchAction action, SearchGoal goal, SearchTechnique technique, boolean continuallyImprove)
          Resets the solver and locates a solution for the current problem.
 boolean CspSolver.solve(SearchAction action, SearchGoal goal, SearchTechnique technique)
          Resets the solver and locates a solution.
 boolean CspSolver.solve(SearchAction action, SearchTechnique technique)
          Resets the solver and locates a solution.
 boolean CspSolver.solve(SearchAction action, SearchTechnique technique, boolean reset)
          Locates a solution for the current problem.
 

Uses of SearchTechnique in jopt.csp.search
 

Methods in jopt.csp.search that return SearchTechnique
 SearchTechnique SearchTechniques.bfs()
          Creates a new breadth first search technique
 SearchTechnique SearchTechniques.dfs()
          Creates a new depth first search technique
 

Methods in jopt.csp.search with parameters of type SearchTechnique
 Search SearchTechniques.search(SearchAction action, SearchTechnique technique)
          Creates a search object that can be used to search for a problem solution as an alternative to the solve methods in the CspSolver
 SearchAction SearchTechniques.changeSearch(SearchTechnique technique, SearchAction action)
          Special action that changes the search technique being used at this point in the search tree
 SearchAction SearchTechniques.changeSearch(SearchGoal goal, SearchTechnique technique, SearchAction action)
          Special action that changes the goal and search technique being used at this point in the search tree