Originally posted by: Philippe_Refalo
Your question is pretty unclear so there are several answers:
- In CP Optimizer, you can choose between DepthFirst, Restart (default) and MultiPoint algorithms to solve the problem. Look at parameter SearchType.
- If your problem is linear or has a form that is supported by CPLEX then you can use CPLEX instead of CP Optimizer
- You can include a domain-reduciton algorithm as a subclass of an IloPropagator in Java, however this is rather slow as it goes through a JNI.
- You can include a domain-reduction algorithm as a subclass of an IloConstraint in C++ -- this is the way every CP Optimizer constraints is implemented.
Regards
Philippe
#CPOptimizer#DecisionOptimization