Uses of Interface
choco.kernel.model.Model

Packages that use Model
choco.cp.common.util.preprocessor.detector.scheduling   
choco.cp.model   
choco.cp.model.managers.variables   
choco.cp.solver   
choco.cp.solver.constraints.global.automata.fast_multicostregular.example   
choco.cp.solver.constraints.global.geost.util   
choco.cp.solver.constraints.strong.xmlmodel   
choco.cp.solver.preprocessor   
choco.kernel.common.util.tools   
choco.kernel.model The root package for the Constraint Programming Kernel.
choco.kernel.model.constraints.pack   
choco.kernel.model.variables   
choco.kernel.solver   
parser.chocogen   
parser.flatzinc.ast   
parser.instances   
samples.multicostregular.asap   
samples.multicostregular.carsequencing   
samples.multicostregular.nsp   
samples.rackconfig   
samples.tutorials   
samples.tutorials.lns.lns   
samples.tutorials.lns.rcpsp   
samples.tutorials.puzzles   
samples.tutorials.to_sort   
samples.tutorials.to_sort.packing.parser   
samples.tutorials.to_sort.tsp   
 

Uses of Model in choco.cp.common.util.preprocessor.detector.scheduling
 

Fields in choco.cp.common.util.preprocessor.detector.scheduling declared as Model
 Model DisjunctiveModel.model
           
 

Methods in choco.cp.common.util.preprocessor.detector.scheduling that return Model
 Model DisjunctiveModel.getModel()
           
 

Constructors in choco.cp.common.util.preprocessor.detector.scheduling with parameters of type Model
DisjunctiveModel(Model model)
           
 

Uses of Model in choco.cp.model
 

Classes in choco.cp.model that implement Model
 class CPModel
          A model is a global structure containing variables bound by listeners as well as solutions or strategy parameters
 class CPModel2
           
 

Uses of Model in choco.cp.model.managers.variables
 

Methods in choco.cp.model.managers.variables with parameters of type Model
static int IntegerVariableManager.getIntelligentDomain(Model model, IntegerVariable v)
          try to find the most suitable domain for v regarding constraints wish a simple heuristic is applied to rank the domains
 

Uses of Model in choco.cp.solver
 

Methods in choco.cp.solver that return Model
 Model CPSolver.getModel()
          Retrieves the model of the entity
 

Methods in choco.cp.solver with parameters of type Model
 void CPSolver.read(Model m)
           
 void CPSolver.setModel(Model aModel)
           
 

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

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

Uses of Model in choco.cp.solver.constraints.global.geost.util
 

Methods in choco.cp.solver.constraints.global.geost.util that return Model
 Model RandomProblemGenerator.getModel()
           
 

Uses of Model in choco.cp.solver.constraints.strong.xmlmodel
 

Constructors in choco.cp.solver.constraints.strong.xmlmodel with parameters of type Model
ChocoFactoryRPC(InstanceParser parser, Model m)
           
 

Uses of Model in choco.cp.solver.preprocessor
 

Methods in choco.cp.solver.preprocessor with parameters of type Model
 void PreProcessCPSolver.read(Model m)
          read of the black box solver
 

Uses of Model in choco.kernel.common.util.tools
 

Methods in choco.kernel.common.util.tools with parameters of type Model
static Iterator<Constraint> IteratorUtils.iterator(Model m, Collection<Constraint> constraints)
           
 

Uses of Model in choco.kernel.model
 

Subinterfaces of Model in choco.kernel.model
 interface Model2
           
 

Methods in choco.kernel.model with parameters of type Model
 Iterator<Constraint> VariableArray.VConstraintsDataStructure.getConstraintIterator(Model m)
           
 Iterator<Constraint> IConstraintList.getConstraintIterator(Model m)
           
 int VariableArray.VConstraintsDataStructure.getNbConstraint(Model m)
           
 int IConstraintList.getNbConstraint(Model m)
           
 

Uses of Model in choco.kernel.model.constraints.pack
 

Methods in choco.kernel.model.constraints.pack with parameters of type Model
 int PackModel.decreasingCardinalities(Model model, int fromIndex)
          Symmetry Breaking: bins are sorted according to non increasing cardinalities.
 int PackModel.decreasingLoads(Model model, int fromIndex)
          Symmetry Breaking: bins are sorted according to non increasing loads.
 int PackModel.orderEqualSizedItems(Model model, int fromIndex)
          Symmetry Breaking : equal-sized items are ordered according to their indices.
 int PackModel.packLargeItems(Model m)
          Symmetry Breaking : pack the k largest items into the first bins.
 

Uses of Model in choco.kernel.model.variables
 

Methods in choco.kernel.model.variables with parameters of type Model
 Iterator<Constraint> ComponentVariable.ConstraintsDataStructure.getConstraintIterator(Model m)
           
 Iterator<Constraint> AbstractVariable.getConstraintIterator(Model m)
           
 int ComponentVariable.ConstraintsDataStructure.getNbConstraint(Model m)
           
 int AbstractVariable.getNbConstraint(Model m)
           
 

Uses of Model in choco.kernel.solver
 

Methods in choco.kernel.solver that return Model
 Model Solver.getModel()
           
 

Methods in choco.kernel.solver with parameters of type Model
 void Solver.read(Model m)
           
 void Solver.setModel(Model model)
           
 

Uses of Model in parser.chocogen
 

Fields in parser.chocogen declared as Model
protected  Model ObjectFactory.m
           
protected  Model ChocoFactory.m
           
 

Methods in parser.chocogen that return Model
 Model ChocoFactory.getM()
           
 

Constructors in parser.chocogen with parameters of type Model
ChocoFactory(InstanceParser parser, Model m)
           
ExtConstraintFactory(Model m, InstanceParser parser)
           
GloConstraintFactory(Model m, InstanceParser parser)
           
ModelConstraintFactory(Model m, InstanceParser parser)
           
ObjectFactory(Model m, InstanceParser parser)
           
RelationFactory(Model model, InstanceParser parser)
           
VariableFactory(Model m, InstanceParser parser)
           
 

Uses of Model in parser.flatzinc.ast
 

Constructors in parser.flatzinc.ast with parameters of type Model
PConstraint(Model model, String id, List<Expression> exps, List<EAnnotation> annotations)
           
 

Uses of Model in parser.instances
 

Fields in parser.instances declared as Model
protected  Model AbstractInstanceModel.model
           
 

Methods in parser.instances that return Model
 Model XcspModel.buildModel()
           
 Model FcspModel.buildModel()
          create the choco model after the preprocessing phase.
abstract  Model AbstractInstanceModel.buildModel()
          create the choco model after the preprocessing phase.
 Model AbstractInstanceModel.getModel()
           
 

Uses of Model in samples.multicostregular.asap
 

Classes in samples.multicostregular.asap that implement Model
 class ASAPCPModel
          Created by IntelliJ IDEA.
 

Uses of Model in samples.multicostregular.carsequencing
 

Classes in samples.multicostregular.carsequencing that implement Model
 class CarSeqModel
          Created by IntelliJ IDEA.
 

Uses of Model in samples.multicostregular.nsp
 

Classes in samples.multicostregular.nsp that implement Model
 class NSPModel
          Created by IntelliJ IDEA.
 

Uses of Model in samples.rackconfig
 

Classes in samples.rackconfig that implement Model
 class RackConfig
          Created by IntelliJ IDEA.
 class RackConfig2
          Created by IntelliJ IDEA.
 

Uses of Model in samples.tutorials
 

Fields in samples.tutorials declared as Model
 Model PatternExample.model
           
 

Uses of Model in samples.tutorials.lns.lns
 

Methods in samples.tutorials.lns.lns that return Model
 Model AbstractLNSSolver.getModel()
          Deprecated.  
 

Methods in samples.tutorials.lns.lns with parameters of type Model
 void LNSCPSolver.read(Model model)
          read the model and load it in the delegate solver
 void AbstractLNSSolver.read(Model model)
          Deprecated.  
 void AbstractLNSSolver.setModel(Model model)
          Deprecated.  
 

Uses of Model in samples.tutorials.lns.rcpsp
 

Methods in samples.tutorials.lns.rcpsp that return Model
 Model RCPSPModeler.buildModel()
          create the choco model after the preprocessing phase.
 

Uses of Model in samples.tutorials.puzzles
 

Methods in samples.tutorials.puzzles with parameters of type Model
 void Sudoku.advanced(Model model, IntegerVariable[][] rows, int[][] instance)
           
 

Uses of Model in samples.tutorials.to_sort
 

Classes in samples.tutorials.to_sort that implement Model
 class Picross
          This class implements a nonogram strategy.
 class SimpleSchedule
          This class present a simple scheduling problem defined in multicost-regular documentation.
 

Uses of Model in samples.tutorials.to_sort.packing.parser
 

Methods in samples.tutorials.to_sort.packing.parser that return Model
 Model BinPackingModel.buildModel()
           
 

Uses of Model in samples.tutorials.to_sort.tsp
 

Fields in samples.tutorials.to_sort.tsp declared as Model
protected  Model CycleMain.model
           
 



Copyright © 2012. All Rights Reserved.