choco.kernel.solver.search.measure
Interface ISearchMeasures

All Known Subinterfaces:
IMeasures, Solver
All Known Implementing Classes:
AbstractGlobalSearchStrategy, AbstractLNSSolver, AbstractOptimize, BranchAndBound, CPSolver, CPSolverDis, GlobalSearchStrategy, GoalSearchSolver, LNSCPSolver, MeasuresBean, PreProcessCPSolver, RealBranchAndBound

public interface ISearchMeasures


Method Summary
 int getBackTrackCount()
          Get the backtrack count of the measure
 int getFailCount()
          Get the fail count of the measure
 int getNodeCount()
          Get the node count of the measure
 int getRestartCount()
          Get the restart count of the measure
 int getSolutionCount()
          Get the solution count of the measure
 int getTimeCount()
          Get the time count in milliseconds of the measure
 

Method Detail

getTimeCount

int getTimeCount()
Get the time count in milliseconds of the measure

Returns:
time count

getNodeCount

int getNodeCount()
Get the node count of the measure

Returns:
node count

getBackTrackCount

int getBackTrackCount()
Get the backtrack count of the measure

Returns:
backtrack count

getFailCount

int getFailCount()
Get the fail count of the measure

Returns:
fail count

getRestartCount

int getRestartCount()
Get the restart count of the measure

Returns:
restart count

getSolutionCount

int getSolutionCount()
Get the solution count of the measure

Returns:
restart count


Copyright © 2012. All Rights Reserved.