Decision Optimization

Decision Optimization

Delivers prescriptive analytics capabilities and decision intelligence to improve decision-making.


#Analytics
#DecisionOptimization
#DecisionOptimization
 View Only
  • 1.  How to use the parallel computation feature of CPLEX from Java?

    Posted 10/10/11 11:55 PM

    Originally posted by: ilovetoyota


    I am currently trying to implement local branching with multiple local trees. How can I implement this through calling CPLEX from Java?
    #CPLEXOptimizers
    #DecisionOptimization


  • 2.  Re: How to use the parallel computation feature of CPLEX from Java?

    Posted 10/11/11 12:17 AM

    Originally posted by: ilovetoyota


    is there anyway to invoke Parallel MIP Optimizer of CPLEX or its equivalent from the callable library?
    #CPLEXOptimizers
    #DecisionOptimization


  • 3.  Re: How to use the parallel computation feature of CPLEX from Java?

    Posted 10/11/11 08:41 PM

    Originally posted by: SystemAdmin


    > is there anyway to invoke Parallel MIP Optimizer of CPLEX or its
    > equivalent from the callable library?

    Assuming that your machine allows multiple threads (has more than one core/processor), CPLEX will invoke the parallel MIP optimizer by default. This is true for all the APIs (including the callable library) as well as the interactive optimizer. The number of threads that CPLEX can invoke is limited the number of parallel threads that the machine can support (the number of cores/processors) and the IloCplex::Threads/CPX_PARAM_THREADS parameter setting. The default setting of this parameter is 0, which invokes the maximum number of threads that the machine can support, but the user is free to set it to a particular value (<= the number of cores/processor) as he may wish.
    #CPLEXOptimizers
    #DecisionOptimization