com.sun.electric.tool.ncc.result
Enum BenchmarkResults.BenchIdx

java.lang.Object
  extended by java.lang.Enum<BenchmarkResults.BenchIdx>
      extended by com.sun.electric.tool.ncc.result.BenchmarkResults.BenchIdx
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<BenchmarkResults.BenchIdx>
Enclosing class:
BenchmarkResults

public static enum BenchmarkResults.BenchIdx
extends java.lang.Enum<BenchmarkResults.BenchIdx>


Enum Constant Summary
ABSTRACTION_CONSTRUCTION_TIME
           
BACKTRACK_GUESSES
           
BACKTRACK_SPACE
           
EXPORT_CHECKING_TIME
           
EXPORT_MATCHING_TIME
           
FAIL_RESULT
           
FINAL_SWAP_TIME
           
FORCED_PARTITION_TIME
           
HASH_CODE_PASS1_TIME
           
HASH_CODE_PASS2_TIME
           
LOCAL_PARTITIONING_TIME
           
MAX_MATRIX_SIZE
           
MAX_PORT_SIZE
           
MAYBE_RESULT
           
MERGE_TIME
           
NEWBORNS_PROCESSED
           
NUMBER_OF_MATRICES
           
NUMBER_OF_VALUES
           
PASS_RESULT
           
QUICK_INTERCHANGE_COUNT
           
QUICK_INTERCHANGE_TIME
           
RANDOM_MATCHING_TIME
           
SCHREIER_SIMS_COUNT
           
SCHREIER_SIMS_TIME
           
SIZE_CHECKING_TIME
           
SIZE_MATCHING_TIME
           
SUB_NCC_COUNT
           
SUB_NCC_TIME
           
SUM_OF_MATRIX_SIZES
           
 
Method Summary
static BenchmarkResults.BenchIdx valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static BenchmarkResults.BenchIdx[] values()
          Returns an array containing the constants of this enum type, in the order they are declared.
 
Methods inherited from class java.lang.Enum
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
 
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait
 

Enum Constant Detail

MERGE_TIME

public static final BenchmarkResults.BenchIdx MERGE_TIME

LOCAL_PARTITIONING_TIME

public static final BenchmarkResults.BenchIdx LOCAL_PARTITIONING_TIME

HASH_CODE_PASS1_TIME

public static final BenchmarkResults.BenchIdx HASH_CODE_PASS1_TIME

HASH_CODE_PASS2_TIME

public static final BenchmarkResults.BenchIdx HASH_CODE_PASS2_TIME

EXPORT_MATCHING_TIME

public static final BenchmarkResults.BenchIdx EXPORT_MATCHING_TIME

SIZE_MATCHING_TIME

public static final BenchmarkResults.BenchIdx SIZE_MATCHING_TIME

SIZE_CHECKING_TIME

public static final BenchmarkResults.BenchIdx SIZE_CHECKING_TIME

FORCED_PARTITION_TIME

public static final BenchmarkResults.BenchIdx FORCED_PARTITION_TIME

EXPORT_CHECKING_TIME

public static final BenchmarkResults.BenchIdx EXPORT_CHECKING_TIME

RANDOM_MATCHING_TIME

public static final BenchmarkResults.BenchIdx RANDOM_MATCHING_TIME

FINAL_SWAP_TIME

public static final BenchmarkResults.BenchIdx FINAL_SWAP_TIME

ABSTRACTION_CONSTRUCTION_TIME

public static final BenchmarkResults.BenchIdx ABSTRACTION_CONSTRUCTION_TIME

BACKTRACK_SPACE

public static final BenchmarkResults.BenchIdx BACKTRACK_SPACE

BACKTRACK_GUESSES

public static final BenchmarkResults.BenchIdx BACKTRACK_GUESSES

SUB_NCC_TIME

public static final BenchmarkResults.BenchIdx SUB_NCC_TIME

SUB_NCC_COUNT

public static final BenchmarkResults.BenchIdx SUB_NCC_COUNT

SCHREIER_SIMS_TIME

public static final BenchmarkResults.BenchIdx SCHREIER_SIMS_TIME

SCHREIER_SIMS_COUNT

public static final BenchmarkResults.BenchIdx SCHREIER_SIMS_COUNT

QUICK_INTERCHANGE_TIME

public static final BenchmarkResults.BenchIdx QUICK_INTERCHANGE_TIME

QUICK_INTERCHANGE_COUNT

public static final BenchmarkResults.BenchIdx QUICK_INTERCHANGE_COUNT

NEWBORNS_PROCESSED

public static final BenchmarkResults.BenchIdx NEWBORNS_PROCESSED

MAX_MATRIX_SIZE

public static final BenchmarkResults.BenchIdx MAX_MATRIX_SIZE

MAX_PORT_SIZE

public static final BenchmarkResults.BenchIdx MAX_PORT_SIZE

SUM_OF_MATRIX_SIZES

public static final BenchmarkResults.BenchIdx SUM_OF_MATRIX_SIZES

NUMBER_OF_MATRICES

public static final BenchmarkResults.BenchIdx NUMBER_OF_MATRICES

PASS_RESULT

public static final BenchmarkResults.BenchIdx PASS_RESULT

FAIL_RESULT

public static final BenchmarkResults.BenchIdx FAIL_RESULT

MAYBE_RESULT

public static final BenchmarkResults.BenchIdx MAYBE_RESULT

NUMBER_OF_VALUES

public static final BenchmarkResults.BenchIdx NUMBER_OF_VALUES
Method Detail

values

public static BenchmarkResults.BenchIdx[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:
for (BenchmarkResults.BenchIdx c : BenchmarkResults.BenchIdx.values())
    System.out.println(c);

Returns:
an array containing the constants of this enum type, in the order they are declared

valueOf

public static BenchmarkResults.BenchIdx valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)

Parameters:
name - the name of the enum constant to be returned.
Returns:
the enum constant with the specified name
Throws:
java.lang.IllegalArgumentException - if this enum type has no constant with the specified name
java.lang.NullPointerException - if the argument is null