Uses of Interface
choco.kernel.solver.branch.VarSelector

Packages that use VarSelector
choco.cp.solver   
choco.cp.solver.constraints.global.automata.fast_multicostregular.example   
choco.cp.solver.constraints.strong   
choco.cp.solver.goals.choice   
choco.cp.solver.search.integer.branching   
choco.cp.solver.search.integer.varselector   
choco.cp.solver.search.integer.varselector.ratioselector   
choco.cp.solver.search.real   
choco.cp.solver.search.set   
choco.kernel.solver   
choco.kernel.solver.search.integer A package devoted to choice points and search heuristics specific to integer variables.
choco.kernel.solver.search.real A package devoted to serach tools based on real constraints and variables. 
choco.kernel.solver.search.set   
samples.multicostregular.asap.heuristics   
samples.multicostregular.carsequencing.heuristics   
samples.multicostregular.nsp   
samples.multicostregular.planner   
samples.tutorials.lns.lns   
samples.tutorials.to_sort.tsp   
 

Uses of VarSelector in choco.cp.solver
 

Methods in choco.cp.solver with parameters of type VarSelector
 void CPSolver.setVarIntSelector(VarSelector<IntDomainVar> varSelector)
          Sets a unique integer variable selector the search olver should use.
 void CPSolver.setVarRealSelector(VarSelector<RealVar> realVarSelector)
          Sets a unique real variable selector the search strategy should use.
 void CPSolver.setVarSetSelector(VarSelector<SetVar> setVarSelector)
          Sets unique set variable selector the search strategy should use.
 

Uses of VarSelector in choco.cp.solver.constraints.global.automata.fast_multicostregular.example
 

Classes in choco.cp.solver.constraints.global.automata.fast_multicostregular.example that implement VarSelector
 class CoverVarValSelector
          Created by IntelliJ IDEA.
 

Uses of VarSelector in choco.cp.solver.constraints.strong
 

Classes in choco.cp.solver.constraints.strong that implement VarSelector
 class DomOverDDegRPC
           
 class DomOverWDegRPC
          History: 2007-12-07 : FR_1873619 CPRU: DomOverDeg+DomOverWDeg
 

Uses of VarSelector in choco.cp.solver.goals.choice
 

Fields in choco.cp.solver.goals.choice declared as VarSelector
protected  VarSelector<IntDomainVar> Generate.varSelector
           
 

Constructors in choco.cp.solver.goals.choice with parameters of type VarSelector
Generate(IntDomainVar[] vars, VarSelector<IntDomainVar> varSelector)
           
Generate(IntDomainVar[] vars, VarSelector<IntDomainVar> varSelector, ValIterator<IntDomainVar> valIterator)
           
Generate(IntDomainVar[] vars, VarSelector<IntDomainVar> varSelector, ValSelector<IntDomainVar> valSelector)
           
 

Uses of VarSelector in choco.cp.solver.search.integer.branching
 

Constructors in choco.cp.solver.search.integer.branching with parameters of type VarSelector
AssignOrForbidIntVarVal(VarSelector<IntDomainVar> varHeuristic, ValSelector<IntDomainVar> valSHeuristic)
           
AssignVar(VarSelector varSel, ValIterator valIterator)
           
AssignVar(VarSelector varSel, ValSelector valSelector)
           
PackDynRemovals(VarSelector<IntDomainVar> varSel, ValSelector<IntDomainVar> valHeuri, PackSConstraint pack)
           
 

Uses of VarSelector in choco.cp.solver.search.integer.varselector
 

Classes in choco.cp.solver.search.integer.varselector that implement VarSelector
 class CompositeIntVarSelector
          A class that composes two heuristics for selecting a variable: a first heuristic is appled for selecting a constraint.
 class DomOverDeg
          Deprecated. @see BranchingFactory
 class DomOverDynDeg
          Deprecated. @see BranchingFactory
 class DomOverWDeg
          Deprecated. @see BranchingFactory
 class LexIntVarSelector
          A class that applies two heuristics lexicographically for selecting a variable: a first heuristic is applied finding the best constraint ties are broken with the second heuristic
 class MaxDomain
           
 class MaxRegret
           
 class MaxValueDomain
           
 class MinDomain
           
 class MinValueDomain
           
 class MostConstrained
          An heuristic to first instantiating most constrained variables.
 class RandomIntVarSelector
           
 class StaticVarOrder
          A variable selector selecting the first non instantiated variable according to a given static order
 

Uses of VarSelector in choco.cp.solver.search.integer.varselector.ratioselector
 

Subinterfaces of VarSelector in choco.cp.solver.search.integer.varselector.ratioselector
 interface IntVarRatioSelector
           
 

Classes in choco.cp.solver.search.integer.varselector.ratioselector that implement VarSelector
 class AbstractIntVarRatioSelector
          A class that select the min/max ratio (a/b) among an arrays.
 class DomOverWDegSelector
           
 class MaxRatioSelector
           
 class MinRatioSelector
           
 class RandDomOverWDegSelector
           
 class RandMaxRatioSelector
           
 class RandMinRatioSelector
           
 

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

Classes in choco.cp.solver.search.real that implement VarSelector
 class CyclicRealVarSelector
          A cyclic variable selector : since a dichotomy algorithm is used, cyclic assiging is nedded for instantiate a real interval variable.
 

Fields in choco.cp.solver.search.real declared as VarSelector
protected  VarSelector<RealVar> AssignInterval.varSelector
           
 

Constructors in choco.cp.solver.search.real with parameters of type VarSelector
AssignInterval(VarSelector<RealVar> varSelector, ValIterator<RealVar> valIterator)
           
 

Uses of VarSelector in choco.cp.solver.search.set
 

Classes in choco.cp.solver.search.set that implement VarSelector
 class MaxDomSet
           
 class MaxRegretSet
           
 class MaxValueDomSet
           
 class MinDomSet
           
 class MinValueDomSet
           
 class MostConstrainedSet
           
 class RandomSetVarSelector
           
 class StaticSetVarOrder
           
 

Fields in choco.cp.solver.search.set declared as VarSelector
protected  VarSelector<SetVar> AssignSetVar.varselector
           
 

Constructors in choco.cp.solver.search.set with parameters of type VarSelector
AssignSetVar(VarSelector<SetVar> varselect, ValSelector<SetVar> valselect)
           
 

Uses of VarSelector in choco.kernel.solver
 

Methods in choco.kernel.solver with parameters of type VarSelector
 void Solver.setVarIntSelector(VarSelector<IntDomainVar> varSelector)
          Sets the integer variable selector the search olver should use.
 void Solver.setVarRealSelector(VarSelector<RealVar> realVarSelector)
          Sets the real variable selector the search strategy should use.
 void Solver.setVarSetSelector(VarSelector<SetVar> setVarIntSelector)
          Sets the set variable selector the search strategy should use.
 

Uses of VarSelector in choco.kernel.solver.search.integer
 

Classes in choco.kernel.solver.search.integer that implement VarSelector
 class AbstractIntVarSelector
           
 class DoubleHeuristicIntVarSelector
           
 class HeuristicIntVarSelector
          A class the selects the variables which minimizes a heuristic (such classes support ties)
 class IntHeuristicIntVarSelector
          A class the selects the variables which minimizes a heuristic (such classes support ties)
 

Uses of VarSelector in choco.kernel.solver.search.real
 

Classes in choco.kernel.solver.search.real that implement VarSelector
 class AbstractRealVarSelector
          An interface for real variable selector during a braching assigning intervals.
 

Uses of VarSelector in choco.kernel.solver.search.set
 

Classes in choco.kernel.solver.search.set that implement VarSelector
 class AbstractSetVarSelector
           
 

Uses of VarSelector in samples.multicostregular.asap.heuristics
 

Classes in samples.multicostregular.asap.heuristics that implement VarSelector
 class ASAPVarSelector
          Created by IntelliJ IDEA.
 class CoverVarSelector
          Created by IntelliJ IDEA.
 

Uses of VarSelector in samples.multicostregular.carsequencing.heuristics
 

Classes in samples.multicostregular.carsequencing.heuristics that implement VarSelector
 class ManInTheMiddleVarHeur
          Created by IntelliJ IDEA.
 

Uses of VarSelector in samples.multicostregular.nsp
 

Classes in samples.multicostregular.nsp that implement VarSelector
 class NSPVarSelector
          Created by IntelliJ IDEA.
 

Uses of VarSelector in samples.multicostregular.planner
 

Classes in samples.multicostregular.planner that implement VarSelector
 class CenterVarSelec
          Created by IntelliJ IDEA.
 

Uses of VarSelector in samples.tutorials.lns.lns
 

Methods in samples.tutorials.lns.lns with parameters of type VarSelector
 void AbstractLNSSolver.setVarIntSelector(VarSelector<IntDomainVar> varSelector)
          Deprecated.  
 void AbstractLNSSolver.setVarRealSelector(VarSelector<RealVar> realVarSelector)
          Deprecated.  
 void AbstractLNSSolver.setVarSetSelector(VarSelector<SetVar> setVarIntSelector)
          Deprecated.  
 

Uses of VarSelector in samples.tutorials.to_sort.tsp
 

Classes in samples.tutorials.to_sort.tsp that implement VarSelector
 class MyVarSelector
           
 



Copyright © 2012. All Rights Reserved.