
goal.tools.history.explanation.reasons.Reason Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of runtime Show documentation
Show all versions of runtime Show documentation
A system for running GOAL multi-agent systems.
The newest version!
package goal.tools.history.explanation.reasons;
import krTools.parser.SourceInfo;
public abstract class Reason {
protected final SourceInfo location;
protected final int state;
protected Reason(final SourceInfo location, final int state) {
this.location = location;
this.state = state;
}
@Override
public abstract String toString();
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy