Uses of Class
choco.kernel.solver.search.AbstractGlobalSearchStrategy

Packages that use AbstractGlobalSearchStrategy
choco.cp.solver   
choco.cp.solver.configure   
choco.cp.solver.goals   
choco.cp.solver.search   
choco.cp.solver.search.real   
choco.cp.solver.search.restart   
choco.kernel.solver   
choco.kernel.solver.branch A package devoted to control (branching schemes and heuristics) for branching in a search tree.
choco.kernel.solver.search A package devoted to the the control of search algorithms.
choco.kernel.solver.search.limit   
choco.visu.searchloop   
samples.tutorials.lns.lns   
 

Uses of AbstractGlobalSearchStrategy in choco.cp.solver
 

Fields in choco.cp.solver declared as AbstractGlobalSearchStrategy
protected  AbstractGlobalSearchStrategy CPSolver.strategy
          The object controlling the global search exploration
 

Methods in choco.cp.solver that return AbstractGlobalSearchStrategy
 AbstractGlobalSearchStrategy CPSolver.getSearchStrategy()
           
 

Uses of AbstractGlobalSearchStrategy in choco.cp.solver.configure
 

Methods in choco.cp.solver.configure with parameters of type AbstractGlobalSearchStrategy
static IKickRestart StrategyFactory.createKickRestart(AbstractGlobalSearchStrategy strategy)
           
static AbstractGlobalSearchLimit LimitFactory.createLimit(AbstractGlobalSearchStrategy strategy, Limit type, int theLimit)
           
static SearchLimitManager LimitFactory.createLimitManager(AbstractGlobalSearchStrategy strategy)
           
static AbstractSearchLoop StrategyFactory.createSearchLoop(AbstractGlobalSearchStrategy strategy)
           
static ISolutionPool StrategyFactory.createSolutionPool(AbstractGlobalSearchStrategy strategy)
           
static AbstractGlobalSearchLimit LimitFactory.makeLimit(AbstractGlobalSearchStrategy strategy, Limit type, int theLimit)
           
static AbstractGlobalSearchLimit LimitFactory.makeRestartLimit(AbstractGlobalSearchStrategy strategy)
           
static AbstractGlobalSearchLimit LimitFactory.makeSearchLimit(AbstractGlobalSearchStrategy strategy)
           
 

Uses of AbstractGlobalSearchStrategy in choco.cp.solver.goals
 

Subclasses of AbstractGlobalSearchStrategy in choco.cp.solver.goals
 class GoalSearchSolver
          Deprecated. 
 

Uses of AbstractGlobalSearchStrategy in choco.cp.solver.search
 

Subclasses of AbstractGlobalSearchStrategy in choco.cp.solver.search
 class BranchAndBound
           
 class GlobalSearchStrategy
           
 

Fields in choco.cp.solver.search declared as AbstractGlobalSearchStrategy
protected  AbstractGlobalSearchStrategy SearchLimitManager.searchStrategy
           
 

Methods in choco.cp.solver.search that return AbstractGlobalSearchStrategy
 AbstractGlobalSearchStrategy SearchLimitManager.getSearchStrategy()
           
 

Constructors in choco.cp.solver.search with parameters of type AbstractGlobalSearchStrategy
AbstractSearchLoopWithRestart(AbstractGlobalSearchStrategy searchStrategy, IKickRestart kickRestart)
           
GoalSearchLoop(AbstractGlobalSearchStrategy searchStrategy, Goal mainGoal)
           
SearchLimitManager(AbstractGlobalSearchStrategy searchStrategy)
           
SearchLoop(AbstractGlobalSearchStrategy searchStrategy, IKickRestart kickRestart)
           
SearchLoopWithRecomputation(AbstractGlobalSearchStrategy searchStrategy, IKickRestart kickRestart, int gap)
           
 

Uses of AbstractGlobalSearchStrategy in choco.cp.solver.search.real
 

Subclasses of AbstractGlobalSearchStrategy in choco.cp.solver.search.real
 class RealBranchAndBound
          

An open-source Constraint Programming Kernel for Research and Education

Created by: Guillaume on 20 juil. 2004

 

Uses of AbstractGlobalSearchStrategy in choco.cp.solver.search.restart
 

Fields in choco.cp.solver.search.restart declared as AbstractGlobalSearchStrategy
 AbstractGlobalSearchStrategy AbstractKickRestart.searchStrategy
           
 

Methods in choco.cp.solver.search.restart that return AbstractGlobalSearchStrategy
 AbstractGlobalSearchStrategy IKickRestart.getSearchStrategy()
           
 AbstractGlobalSearchStrategy AbstractKickRestart.getSearchStrategy()
           
 

Constructors in choco.cp.solver.search.restart with parameters of type AbstractGlobalSearchStrategy
AbstractKickRestart(AbstractGlobalSearchStrategy searchStrategy)
           
BasicKickRestart(AbstractGlobalSearchStrategy searchStrategy)
           
NogoodKickRestart(AbstractGlobalSearchStrategy searchStrategy)
           
 

Uses of AbstractGlobalSearchStrategy in choco.kernel.solver
 

Methods in choco.kernel.solver that return AbstractGlobalSearchStrategy
 AbstractGlobalSearchStrategy Solver.getSearchStrategy()
           
 

Uses of AbstractGlobalSearchStrategy in choco.kernel.solver.branch
 

Fields in choco.kernel.solver.branch declared as AbstractGlobalSearchStrategy
protected  AbstractGlobalSearchStrategy AbstractIntBranching.manager
          Deprecated. the main control object (responsible for the whole exploration, while the branching object is responsible only at the choice point level
protected  AbstractGlobalSearchStrategy AbstractBranchingStrategy.manager
          the main control object (responsible for the whole exploration, while Eqthe branching object is responsible only at the choice point level
 

Methods in choco.kernel.solver.branch that return AbstractGlobalSearchStrategy
 AbstractGlobalSearchStrategy AbstractBranchingStrategy.getManager()
           
 

Methods in choco.kernel.solver.branch with parameters of type AbstractGlobalSearchStrategy
 void AbstractIntBranching.setSolver(AbstractGlobalSearchStrategy s)
          Deprecated.  
 void AbstractBranchingStrategy.setSolver(AbstractGlobalSearchStrategy s)
           
 

Uses of AbstractGlobalSearchStrategy in choco.kernel.solver.search
 

Subclasses of AbstractGlobalSearchStrategy in choco.kernel.solver.search
 class AbstractOptimize
           
 

Fields in choco.kernel.solver.search declared as AbstractGlobalSearchStrategy
 AbstractGlobalSearchStrategy AbstractSearchLoop.searchStrategy
           
 

Methods in choco.kernel.solver.search that return AbstractGlobalSearchStrategy
 AbstractGlobalSearchStrategy ISolutionPool.getSearchStrategy()
           
 AbstractGlobalSearchStrategy ISearchLoop.getSearchStrategy()
           
 AbstractGlobalSearchStrategy GlobalSearchLimitManager.getSearchStrategy()
           
 AbstractGlobalSearchStrategy AbstractSearchLoop.getSearchStrategy()
           
 

Methods in choco.kernel.solver.search with parameters of type AbstractGlobalSearchStrategy
static ISolutionPool SolutionPoolFactory.makeDefaultSolutionPool(AbstractGlobalSearchStrategy strategy, int capacity)
           
static ISolutionPool SolutionPoolFactory.makeFifoSolutionPool(AbstractGlobalSearchStrategy strategy, int capacity)
          contains the last/best solutions (capa > 0).
static ISolutionPool SolutionPoolFactory.makeInfiniteSolutionPool(AbstractGlobalSearchStrategy strategy)
          record all solution (not resizable).
static ISolutionPool SolutionPoolFactory.makeOneSolutionPool(AbstractGlobalSearchStrategy strategy)
          pool of unit capacity, contains the last solution (not resizable);
 

Constructors in choco.kernel.solver.search with parameters of type AbstractGlobalSearchStrategy
AbstractSearchLoop(AbstractGlobalSearchStrategy searchStrategy)
           
 

Uses of AbstractGlobalSearchStrategy in choco.kernel.solver.search.limit
 

Fields in choco.kernel.solver.search.limit declared as AbstractGlobalSearchStrategy
protected  AbstractGlobalSearchStrategy AbstractGlobalSearchLimit.strategy
          the strategy that delegates the limit checking task to such AbstractGlobalSearchLimit objects
 

Methods in choco.kernel.solver.search.limit that return AbstractGlobalSearchStrategy
 AbstractGlobalSearchStrategy AbstractGlobalSearchLimit.getSearchStrategy()
           
 

Constructors in choco.kernel.solver.search.limit with parameters of type AbstractGlobalSearchStrategy
AbstractGlobalSearchLimit(AbstractGlobalSearchStrategy theStrategy, int theLimit, Limit type)
           
AbstractGlobalSearchLimit(AbstractGlobalSearchStrategy theStrategy, int theLimit, String unit)
           
BackTrackLimit(AbstractGlobalSearchStrategy theStrategy, int theLimit)
           
FailLimit(AbstractGlobalSearchStrategy theStrategy, int theLimit)
           
NodeLimit(AbstractGlobalSearchStrategy theStrategy, int theLimit)
           
RestartLimit(AbstractGlobalSearchStrategy theStrategy, int theLimit)
           
SolutionLimit(AbstractGlobalSearchStrategy theStrategy, int theLimit)
           
TimeLimit(AbstractGlobalSearchStrategy theStrategy, int theLimit)
           
 

Uses of AbstractGlobalSearchStrategy in choco.visu.searchloop
 

Constructors in choco.visu.searchloop with parameters of type AbstractGlobalSearchStrategy
ObservableStepSearchLoop(AbstractGlobalSearchStrategy searchStrategy)
           
 

Uses of AbstractGlobalSearchStrategy in samples.tutorials.lns.lns
 

Methods in samples.tutorials.lns.lns that return AbstractGlobalSearchStrategy
 AbstractGlobalSearchStrategy AbstractLNSSolver.getSearchStrategy()
          Deprecated. ****************************************************************************** ******************************************************************************** SPECIFIC CPSolver ******************************************************************************** *******************************************************************************
 



Copyright © 2012. All Rights Reserved.