FOP-2425-Marathon/src/main/java/h07/peano/PeanoArithmeticExpression.java
Oshgnacknak 1b00d4c29b Squashed 'solution/H07/' content from commit d17f229
git-subtree-dir: solution/H07
git-subtree-split: d17f22991286e5f500e50c2510a30531b6f28463
2025-03-16 16:48:37 +01:00

18 lines
547 B
Java

package h07.peano;
import org.tudalgo.algoutils.student.annotation.StudentCreationRequired;
/**
* Represents an arithmetic operation in Peano arithmetic.
*/
@StudentCreationRequired
public interface PeanoArithmeticExpression {
/**
* Evaluates the expression represented by this node.
*
* @param num1 the first number to evaluate
* @param num2 the second number to evaluate
* @return the result of the evaluation
*/
PeanoNumberExpression evaluate(PeanoNumberExpression num1, PeanoNumberExpression num2);
}