Package jason.stdlib
Class loop
java.lang.Object
jason.asSemantics.DefaultInternalAction
jason.stdlib.loop
- All Implemented Interfaces:
- InternalAction,- Serializable
@Manual(literal="while (formula) { plan_body }",
        hint="while logical formula holds, the plan_body is executed",
        argsHint="the formula that when true makes the plan_body be executed",
        argsType="logical formula",
        examples="while(vl(X) & X > 10) { .print(\"value > 10\"); -+vl(X+1); }: where vl(X) is a belief, prints the message while X is greater than 10",
        seeAlso="jason.stdlib.foreach")
public class loop
extends DefaultInternalAction
Implementation of while.
Syntax:
  while ( logical formula ) {
     plan_body
  }
while logical formula holds, the plan_body is executed.
Example:
+event : context invalid input: '<'- .... while(vl(X) invalid input: '&' X > 10) { // where vl(X) is a belief .print("value > 10"); -+vl(X+1); } ....The unification resulted from the evaluation of the logical formula is used only inside the loop, i.e., the unification after the while is the same as before.
- See Also:
- 
Constructor SummaryConstructors
- 
Method SummaryModifier and TypeMethodDescriptionprotected voidcheckArguments(Term[] args) static InternalActioncreate()execute(TransitionSystem ts, Unifier un, Term[] args) Executes the internal action.intintTerm[]prepareArguments(Literal body, Unifier un) Prepare body's terms to be used in 'execute', normally it consist of cloning and applying each termMethods inherited from class jason.asSemantics.DefaultInternalActioncanBeUsedInContext, destroy, suspendIntention
- 
Constructor Details- 
looppublic loop()
 
- 
- 
Method Details- 
create
- 
prepareArgumentsDescription copied from interface:InternalActionPrepare body's terms to be used in 'execute', normally it consist of cloning and applying each term- Specified by:
- prepareArgumentsin interface- InternalAction
- Overrides:
- prepareArgumentsin class- DefaultInternalAction
 
- 
getMinArgspublic int getMinArgs()- Overrides:
- getMinArgsin class- DefaultInternalAction
 
- 
getMaxArgspublic int getMaxArgs()- Overrides:
- getMaxArgsin class- DefaultInternalAction
 
- 
checkArguments- Overrides:
- checkArgumentsin class- DefaultInternalAction
- Throws:
- JasonException
 
- 
executeDescription copied from interface:InternalActionExecutes the internal action. It should return a Boolean or an Iterator. A true boolean return means that the IA was successfully executed. An Iterator result means that there is more than one answer for this IA (e.g. see member internal action). - Specified by:
- executein interface- InternalAction
- Overrides:
- executein class- DefaultInternalAction
- Throws:
- Exception
 
 
-