Decision Optimization

Decision Optimization

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


#Analytics
#DecisionOptimization
#DecisionOptimization
 View Only
  • 1.  Passing information to another model

    Posted 02/10/16 06:36 AM

    Originally posted by: Rym


    I read in IBM ILOG CPLEX Optimization Studio "language User's Manual > IBM ILOG Script for OPL > Tutorial: Flow control and multiple searches > Doing more with mulprod_main":

     

    i f i like to pass an objective value solved by file1.mod like as an input to the file2.mod, i will use 

    1. Create a basis structure.
      
      var basis = new IloOplCplexBasis();
      
    2. Load the structure with the basis contained in a cplex instance.
      
      basis.getBasis(cplex)
      
    3. Fill another instance with the basis.
      
      basis.setBasis(cplex)
      

    #DecisionOptimization
    #OPLusingCPLEXOptimizer


  • 2.  Re: Passing information to another model