jason.asSyntax.NumberTerm Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jason Show documentation
Show all versions of jason Show documentation
Jason is a fully-fledged interpreter for an extended version of AgentSpeak, a BDI agent-oriented logic programming language.
package jason.asSyntax;
import jason.NoValueException;
/** The interface for numeric terms of AgentSpeak language
*
* @opt nodefillcolor lightgoldenrodyellow
*/
public interface NumberTerm extends Term {
/** returns the numeric value of the term */
public double solve() throws NoValueException;
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy