public static enum Model.CalculationFlag extends Enum<Model.CalculationFlag>
| Enum Constant and Description |
|---|
CALCULATE_LOGPE
Along with calculating marginals, log probability of evidence will also be calculated (incurs additional calculation time)
|
KEEP_TAILS_ZERO_REGIONS
While propagating simulation nodes, keep tails and zero mass regions (default is to prune and compact)
|
WITH_ANCESTORS
Calculate ancestors of the networks provided as well
|
| Modifier and Type | Method and Description |
|---|---|
static Model.CalculationFlag |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Model.CalculationFlag[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Model.CalculationFlag WITH_ANCESTORS
public static final Model.CalculationFlag KEEP_TAILS_ZERO_REGIONS
public static final Model.CalculationFlag CALCULATE_LOGPE
public static Model.CalculationFlag[] values()
for (Model.CalculationFlag c : Model.CalculationFlag.values()) System.out.println(c);
public static Model.CalculationFlag 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 © 2022. All rights reserved.