Package jason.stdlib
Class count
java.lang.Object
jason.asSemantics.DefaultInternalAction
jason.stdlib.count
- All Implemented Interfaces:
InternalAction,Serializable
Internal action: .count.
Description: counts the number of occurrences of a particular belief (pattern) in the agent's belief base.
Parameters:
- + query (logical formula): the formula used to count literals in the belief base;
is has the same syntax as the plan context.
- +/- quantity (number): the number of occurrences of the belief.
Examples:
-
.count(a(2,_),N): counts the number of beliefs that unify witha(2,_);Nunifies with this quantity. -
.count((a(2,X)invalid input: '&' X>10),N): counts the number of beliefs that unify witha(2,X)and X > 10;Nunifies with this quantity. -
.count(a(2,_),5): succeeds if the BB has exactly 5 beliefs that unify witha(2,_).
- See Also:
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionprotected voidcheckArguments(Term[] args) execute(TransitionSystem ts, Unifier un, Term[] args) Executes the internal action.intintMethods inherited from class jason.asSemantics.DefaultInternalAction
canBeUsedInContext, destroy, prepareArguments, suspendIntention
-
Constructor Details
-
count
public count()
-
-
Method Details
-
getMinArgs
public int getMinArgs()- Overrides:
getMinArgsin classDefaultInternalAction
-
getMaxArgs
public int getMaxArgs()- Overrides:
getMaxArgsin classDefaultInternalAction
-
checkArguments
- Overrides:
checkArgumentsin classDefaultInternalAction- Throws:
JasonException
-
execute
Description 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 interfaceInternalAction- Overrides:
executein classDefaultInternalAction- Throws:
Exception
-