Uses of Class
com.bayesserver.inference.InterventionType
-
Packages that use InterventionType Package Description com.bayesserver.inference com.bayesserver.optimization -
-
Uses of InterventionType in com.bayesserver.inference
Methods in com.bayesserver.inference that return InterventionType Modifier and Type Method Description InterventionType
EvidenceTypes. getInterventionType()
Gets theInterventionType
.static InterventionType
InterventionType. valueOf(String name)
Returns the enum constant of this type with the specified name.static InterventionType[]
InterventionType. values()
Returns an array containing the constants of this enum type, in the order they are declared.Methods in com.bayesserver.inference with parameters of type InterventionType Modifier and Type Method Description void
DefaultEvidence. set(Variable variable, Double value, Integer time, InterventionType interventionType)
Sets evidence on the variable, in the form of an intervention (do-operator).void
Evidence. set(Variable variable, Double value, Integer time, InterventionType interventionType)
Sets evidence on the variable, in the form of an intervention (do-operator).void
EvidenceTypes. setInterventionType(InterventionType value)
Sets theInterventionType
.void
DefaultEvidence. setState(State state, Integer time, InterventionType interventionType)
Sets evidence on a discrete state (hard evidence), in the form of an intervention (do-operator).void
Evidence. setState(State state, Integer time, InterventionType interventionType)
Sets evidence on a discrete state (hard evidence), in the form of an intervention (do-operator). -
Uses of InterventionType in com.bayesserver.optimization
Methods in com.bayesserver.optimization that return InterventionType Modifier and Type Method Description InterventionType
DesignVariable. getInterventionType()
Determines the evidence intervention type for this variable.Methods in com.bayesserver.optimization with parameters of type InterventionType Modifier and Type Method Description void
DesignVariable. setInterventionType(InterventionType value)
Determines the evidence intervention type for this variable.Constructors in com.bayesserver.optimization with parameters of type InterventionType Constructor Description DesignVariable(Variable variable, Double lowerBound, Double upperBound, boolean allowMissing, InterventionType interventionType)
Initializes a new instance of theDesignVariable
class, automatically generating the necessary design states.DesignVariable(Variable variable, List<DesignState> designStates, DesignEvidenceKind evidenceKind, boolean allowMissing, InterventionType interventionType)
Initializes a new instance of theDesignVariable
class.
-