jadex.bdi.planlib.protocols.ISelector Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jadex-applications-applib-bdi Show documentation
Show all versions of jadex-applications-applib-bdi Show documentation
The Jadex applib BDI package contains ready to use functionalities for BDI agents mostly in form of modules called capabilities.
The newest version!
package jadex.bdi.planlib.protocols;
/**
* Interface for checking the acceptance of proposals.
*/
public interface ISelector
{
/**
* Select winner proposals.
* @param proposals All available proposals.
* @return The selected winner proposal(s) or none.
*/
public Object[] select(Object[] proposals);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy