jadex.bdi.testcases.planlib.ICNPNextroundInfoPlan Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jadex-applications-bdi Show documentation
Show all versions of jadex-applications-bdi Show documentation
The Jadex BDI applications package contain
several example applications, benchmarks and
testcases using BDI agents.
package jadex.bdi.testcases.planlib;
import jadex.bdi.runtime.Plan;
/**
* Decide if the next iteration should be done.
*/
public class ICNPNextroundInfoPlan extends Plan
{
/**
* The plan body.
*/
public void body()
{
// Allow at most 3 negotiation rounds and do not alter cfp, cfp_info or participants.
if(getParameterSet("history").size()<3)
{
getParameter("iterate").setValue(Boolean.TRUE);
}
else
{
getParameter("iterate").setValue(Boolean.FALSE);
}
}
}