Decision Optimization

Decision Optimization

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

 View Only
  • 1.  Coefficient Matrix

    Posted Sun June 15, 2014 01:21 PM

    Originally posted by: disjunctive


    Dear All,

    In my algorithm, i need to solve several programs, sequentially. One of them requires constraint matrix A (in Ax=b) as parameter. I don't know how to get that matrix. Is there any way to construct and use the matrix A?

    Thanks in advance.


    #DecisionOptimization
    #OPLusingCPLEXOptimizer


  • 2.  Re: Coefficient Matrix

    Posted Wed July 09, 2014 06:42 AM

    Originally posted by: StephenHall


    Hi,

    normally you don't express you problem as matrix in OPL.

    OPL is a way to build this matrix using equations.

    But if you want to get the basis of your problem you can use OPL script and get the basis of your problem:

    http://pic.dhe.ibm.com/infocenter/cosinfoc/v12r6/topic/ilog.odms.ide.help/refjsopl/html/IloOplCplexBasis.html

     

    you could also loo at all tyhe methode available at your problem in CPLEX, such getAX()

    http://pic.dhe.ibm.com/infocenter/cosinfoc/v12r6/topic/ilog.odms.ide.help/refjsopl/html/IloCplex.html


    #DecisionOptimization
    #OPLusingCPLEXOptimizer


  • 3.  Re: Coefficient Matrix

    Posted Wed July 09, 2014 10:15 AM

    Originally posted by: disjunctive


    Hi,

    Thank you for answer but I couldn't understand whether the basis provides us to coefficient matrix or not?

    Thanks.


    #DecisionOptimization
    #OPLusingCPLEXOptimizer