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

jadex.bdi.testcases.misc.EndStateInitiatorPlan Maven / Gradle / Ivy

Go to download

The Jadex BDI applications package contain several example applications, benchmarks and testcases using BDI agents.

There is a newer version: 2.4
Show newest version
package jadex.bdi.testcases.misc;

import jadex.bdi.runtime.Plan;

/**
 *  Check correct operation of end states.
 */
public class EndStateInitiatorPlan extends Plan
{
	/**
	 *  Plan body.
	 */
	public void body()
	{
		// Set belief to true to trigger creation of goal.
		// Will be checked in worker plan.
		getBeliefbase().getBelief("trigger").setFact(Boolean.TRUE);
		
		waitFor(300);

		// Kill agent to start end state.
		killAgent();
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy