fr.jussieu.gla.wasa.core
Class AlgorithmState

java.lang.Object
  |
  +--com.lc.util.SafeEnumeration
        |
        +--fr.jussieu.gla.wasa.core.AlgorithmState
All Implemented Interfaces:
java.lang.Comparable

public final class AlgorithmState
extends SafeEnumeration

Enumerates all states of an Algorithm.

Version:
$Revision: 1.3 $ $Date: 2002/04/01 16:25:36 $
Author:
Laurent Caillette

Field Summary
static AlgorithmState EXPLORING
          Algorithm.explore() currently running.
static AlgorithmState IMPROVEMENT_FOUND
          Exploration found an improvement from its Start Point.
static AlgorithmState NO_ERROR_ASSIGNED
          Exploration found a Configuration for which Constraints did not set any Var error.
static AlgorithmState NO_IMPROVEMENT_FOUND
          Exploration did not find any improvement from its Start Point.
static AlgorithmState NO_VAR_FOUND
          No "worst" Var was found.
static AlgorithmState UNINITIALIZED
          Algorithm not initialized.
 
Methods inherited from class com.lc.util.SafeEnumeration
compareTo, getByDeclaringName, getDeclaringName, getElements, getFirstElement, getName, toString
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Field Detail

UNINITIALIZED

public static final AlgorithmState UNINITIALIZED
Algorithm not initialized.

NO_VAR_FOUND

public static final AlgorithmState NO_VAR_FOUND
No "worst" Var was found.

NO_IMPROVEMENT_FOUND

public static final AlgorithmState NO_IMPROVEMENT_FOUND
Exploration did not find any improvement from its Start Point.

IMPROVEMENT_FOUND

public static final AlgorithmState IMPROVEMENT_FOUND
Exploration found an improvement from its Start Point.

NO_ERROR_ASSIGNED

public static final AlgorithmState NO_ERROR_ASSIGNED
Exploration found a Configuration for which Constraints did not set any Var error.

EXPLORING

public static final AlgorithmState EXPLORING
Algorithm.explore() currently running.