Decision Optimization

Decision Optimization

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


#Analytics
#DecisionOptimization
#DecisionOptimization
 View Only
Expand all | Collapse all

How to close all log when using cplex in eclipse?

  • 1.  How to close all log when using cplex in eclipse?

    Posted 07/16/13 09:55 PM

    Originally posted by: waldstein


    Hi all,

    I want to close all cplex log when testing my application

    thanks!


    #CPLEXOptimizers
    #DecisionOptimization


  • 2.  Re: How to close all log when using cplex in eclipse?

    Posted 07/17/13 01:04 AM

    How to do that depends on what API you are using.

    In the interactive you do

    set log *

    In C you use

    CPXsetintparam(env, CPX_PARAM_SCRIND, CPX_OFF)

    In the object oriented APIs you use the setOut() and setWarning() methods of class IloCplex to install an output destination that just swallows all output..

    See the reference documentation here.


    #CPLEXOptimizers
    #DecisionOptimization