Package fr.uga.pddl4j.problem.numeric
Interface NumericExpression
- All Superinterfaces:
Serializable
- All Known Implementing Classes:
AbstractNumericExpression,ArithmeticExpression,NumericAssignment,NumericConstraint,NumericVariable
This interface defines the methods of the numeric expression.
- Since:
- 4.0
-
Method Summary
Modifier and TypeMethodDescriptionReturns the left arithmetic expression of the numeric expression.Returns the right arithmetic expression of the numeric expression.voidsetRightExpression(ArithmeticExpression rightExpression)Sets the right arithmetic expression of the numeric expression.
-
Method Details
-
getRightExpression
ArithmeticExpression getRightExpression()Returns the right arithmetic expression of the numeric expression.- Returns:
- the right arithmetic expression of the numeric expression.
-
setRightExpression
Sets the right arithmetic expression of the numeric expression.- Parameters:
rightExpression- the right arithmetic expression of the numeric expression.
-
getLeftExpression
ArithmeticExpression getLeftExpression()Returns the left arithmetic expression of the numeric expression.- Returns:
- the left arithmetic expression of the numeric expression.
-