Record Class DecisionRule
java.lang.Object
java.lang.Record
tools.refinery.store.dse.transition.DecisionRule
-
Field Summary
FieldsModifier and TypeFieldDescriptionstatic final double
static final double
static final int
-
Constructor Summary
ConstructorsConstructorDescriptionDecisionRule
(Rule rule) DecisionRule
(Rule rule, int priority) DecisionRule
(Rule rule, int priority, double coefficient, double exponent) Creates an instance of aDecisionRule
record class. -
Method Summary
Modifier and TypeMethodDescriptiondouble
Returns the value of thecoefficient
record component.final boolean
Indicates whether some other object is "equal to" this one.double
exponent()
Returns the value of theexponent
record component.double
getWeight
(int numberOfUnvisitedActivations) final int
hashCode()
Returns a hash code value for this object.int
priority()
Returns the value of thepriority
record component.rule()
Returns the value of therule
record component.final String
toString()
Returns a string representation of this record class.
-
Field Details
-
DEFAULT_PRIORITY
public static final int DEFAULT_PRIORITY- See Also:
-
DEFAULT_COEFFICIENT
public static final double DEFAULT_COEFFICIENT- See Also:
-
DEFAULT_EXPONENT
public static final double DEFAULT_EXPONENT- See Also:
-
-
Constructor Details
-
DecisionRule
-
DecisionRule
-
DecisionRule
Creates an instance of aDecisionRule
record class.- Parameters:
rule
- the value for therule
record componentpriority
- the value for thepriority
record componentcoefficient
- the value for thecoefficient
record componentexponent
- the value for theexponent
record component
-
-
Method Details
-
getWeight
public double getWeight(int numberOfUnvisitedActivations) -
toString
Returns a string representation of this record class. The representation contains the name of the class, followed by the name and value of each of the record components. -
hashCode
public final int hashCode()Returns a hash code value for this object. The value is derived from the hash code of each of the record components. -
equals
Indicates whether some other object is "equal to" this one. The objects are equal if the other object is of the same class and if all the record components are equal. Reference components are compared withObjects::equals(Object,Object)
; primitive components are compared with '=='. -
rule
Returns the value of therule
record component.- Returns:
- the value of the
rule
record component
-
priority
public int priority()Returns the value of thepriority
record component.- Returns:
- the value of the
priority
record component
-
coefficient
public double coefficient()Returns the value of thecoefficient
record component.- Returns:
- the value of the
coefficient
record component
-
exponent
public double exponent()Returns the value of theexponent
record component.- Returns:
- the value of the
exponent
record component
-