Decision Optimization

Decision Optimization

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


#Analytics
#DecisionOptimization
#DecisionOptimization
 View Only
  • 1.  Which method is to find solving time used in Cplex 9.0 , (Java API)

    Posted 02/12/10 09:52 PM

    Originally posted by: zhongping


    as topic
    Anyone know the method. I searched online and find iloCplex.getCplexTime, but it is only for Cplex11, I need the equivalent one for Cplex 9
    #CPLEXOptimizers
    #DecisionOptimization


  • 2.  Re: Which method is to find solving time used in Cplex 9.0 , (Java API)

    Posted 02/13/10 08:53 AM

    Originally posted by: SystemAdmin


    I fear that in CPLEX < 11 you just have to measure the solving time yourself, using standard OS methods (which are different in Windows and Linux).
    #CPLEXOptimizers
    #DecisionOptimization


  • 3.  Re: Which method is to find solving time used in Cplex 9.0 , (Java API)

    Posted 02/13/10 08:54 AM

    Originally posted by: SystemAdmin


    As a second thought, since you are using Java you can just use the Java clock functions (do not know right now how they are called, but they exist!) to measure time yourself. These are portable across all architectures.
    #CPLEXOptimizers
    #DecisionOptimization


  • 4.  Re: Which method is to find solving time used in Cplex 9.0 , (Java API)

    Posted 02/13/10 10:48 AM

    Originally posted by: SystemAdmin


    > Tobias Achterberg wrote:
    > As a second thought, since you are using Java you can just use the Java clock functions (do not know right now how they are called, but they exist!) to measure time yourself. These are portable across all architectures.

    System.currentTimeMillis()
    #CPLEXOptimizers
    #DecisionOptimization