Record Class DecisionRule
java.lang.Object
java.lang.Record
tools.refinery.store.dse.transition.DecisionRule
-
Field Summary
FieldsModifier and TypeFieldDescriptionstatic final doublestatic final doublestatic 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 aDecisionRulerecord class. -
Method Summary
Modifier and TypeMethodDescriptiondoubleReturns the value of thecoefficientrecord component.final booleanIndicates whether some other object is "equal to" this one.doubleexponent()Returns the value of theexponentrecord component.doublegetWeight(int numberOfUnvisitedActivations) final inthashCode()Returns a hash code value for this object.intpriority()Returns the value of thepriorityrecord component.rule()Returns the value of therulerecord component.final StringtoString()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 aDecisionRulerecord class.- Parameters:
rule- the value for therulerecord componentpriority- the value for thepriorityrecord componentcoefficient- the value for thecoefficientrecord componentexponent- the value for theexponentrecord 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 therulerecord component.- Returns:
- the value of the
rulerecord component
-
priority
public int priority()Returns the value of thepriorityrecord component.- Returns:
- the value of the
priorityrecord component
-
coefficient
public double coefficient()Returns the value of thecoefficientrecord component.- Returns:
- the value of the
coefficientrecord component
-
exponent
public double exponent()Returns the value of theexponentrecord component.- Returns:
- the value of the
exponentrecord component
-