All Downloads are FREE. Search and download functionalities are using the official Maven repository.

jason.asSyntax.NumberTerm Maven / Gradle / Ivy

Go to download

Jason is a fully-fledged interpreter for an extended version of AgentSpeak, a BDI agent-oriented logic programming language.

There is a newer version: 2.3
Show newest version
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