il2.inf
Enum Algorithm.EliminationOrderHeuristic

Object
  extended by Enum<Algorithm.EliminationOrderHeuristic>
      extended by Algorithm.EliminationOrderHeuristic
All Implemented Interfaces:
Serializable, Comparable<Algorithm.EliminationOrderHeuristic>
Enclosing class:
Algorithm

public static enum Algorithm.EliminationOrderHeuristic
extends Enum<Algorithm.EliminationOrderHeuristic>

elimination order heuristic


Enum Constant Summary
minfill
           
minsize
           
 
Field Summary
static Algorithm.EliminationOrderHeuristic DEFAULT
           
 
Method Summary
abstract  EliminationOrders.Record order(BayesianNetwork bn, int repetitions)
           
static Algorithm.EliminationOrderHeuristic valueOf(String name)
          Returns the enum constant of this type with the specified name.
static Algorithm.EliminationOrderHeuristic[] values()
          Returns an array containing the constants of this enum type, in the order they are declared.
 
Methods inherited from class Enum
compareTo, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
 
Methods inherited from class Object
getClass, notify, notifyAll, wait, wait, wait
 

Enum Constant Detail

minfill

public static final Algorithm.EliminationOrderHeuristic minfill

minsize

public static final Algorithm.EliminationOrderHeuristic minsize
Field Detail

DEFAULT

public static final Algorithm.EliminationOrderHeuristic DEFAULT
Method Detail

values

public static Algorithm.EliminationOrderHeuristic[] 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 (Algorithm.EliminationOrderHeuristic c : Algorithm.EliminationOrderHeuristic.values())
    System.out.println(c);

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

valueOf

public static Algorithm.EliminationOrderHeuristic valueOf(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:
IllegalArgumentException - if this enum type has no constant with the specified name
NullPointerException - if the argument is null

order

public abstract EliminationOrders.Record order(BayesianNetwork bn,
                                               int repetitions)


Copyright 2010 UCLA Automated Reasoning Group