package de.ugoe.cs.autoquest.tasktrees.temporalrelation; /** *

* The rule application status describes the result of applying a {@link TemporalRelationshipRule} * on a task tree node. See the description of {@link TemporalRelationshipRule} for more details. *

* * @author Patrick Harms */ enum RuleApplicationStatus { RULE_APPLICATION_FINISHED, RULE_APPLICATION_FEASIBLE, RULE_NOT_APPLIED; }