16 lines
366 B
Java
16 lines
366 B
Java
package h07.peano;
|
|
|
|
import org.tudalgo.algoutils.student.annotation.StudentCreationRequired;
|
|
|
|
/**
|
|
* Represents a Peano number expression.
|
|
*/
|
|
@StudentCreationRequired
|
|
public interface PeanoNumberExpression {
|
|
/**
|
|
* Evaluates the expression represented by this node.
|
|
*
|
|
* @return the result of the evaluation
|
|
*/
|
|
NaturalNumber evaluate();
|
|
}
|