public enum DecisionAlgorithm extends Enum<DecisionAlgorithm>
| Enum Constant and Description | 
|---|
DEFAULT
Use the default algorithm. 
 | 
NONE
Any decision nodes are treated like standard probability nodes. 
 | 
SINGLE_POLICY_UPDATING_FULL
A Single Policy Updating (SPU) algorithm, that can compute a wider range of queries than the 'light' version, but is less efficient that the light version, both in terms of memory and speed. 
 | 
SINGLE_POLICY_UPDATING_LIGHT
A Single Policy Updating (SPU) algorithm, that is more efficient than the full version, as it treats the leaf MEU inputs as independent. 
 | 
| Modifier and Type | Method and Description | 
|---|---|
static DecisionAlgorithm | 
valueOf(String name)
Returns the enum constant of this type with the specified name. 
 | 
static DecisionAlgorithm[] | 
values()
Returns an array containing the constants of this enum type, in
the order they are declared. 
 | 
public static final DecisionAlgorithm SINGLE_POLICY_UPDATING_FULL
public static final DecisionAlgorithm NONE
public static final DecisionAlgorithm DEFAULT
public static final DecisionAlgorithm SINGLE_POLICY_UPDATING_LIGHT
public static DecisionAlgorithm[] values()
for (DecisionAlgorithm c : DecisionAlgorithm.values()) System.out.println(c);
public static DecisionAlgorithm valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullCopyright © 2021. All rights reserved.