Package jason.stdlib
Class min
java.lang.Object
jason.asSemantics.DefaultInternalAction
jason.stdlib.min
- All Implemented Interfaces:
InternalAction
,java.io.Serializable
- Direct Known Subclasses:
max
@Manual(literal=".min(list,minimal)", hint="gets the minimum value of a list of terms, using the \"natural\" order. For different types, the order is: numbers < atoms < structures < lists", argsHint={"the list where to find the minimal term","the resulting minimal"}, argsType={"list","term"}, examples={".max([c,a,b],X): X unifies with a",".max([b,c,10,g,f(10),5,f(4)],X): X unifies with 5",".max([3,2,5],2]): true",".max([3,2,5],5): false",".max([],X): false"}, seeAlso={"jason.stdlib.concat","jason.stdlib.delete","jason.stdlib.length","jason.stdlib.member","jason.stdlib.sort","jason.stdlib.nth","jason.stdlib.max","jason.stdlib.reverse","jason.stdlib.difference","jason.stdlib.intersection","jason.stdlib.union"}) public class min extends DefaultInternalAction
Internal action: .min
.
Description: gets the minimum value of a list of terms, using
the "natural" order of terms. Between
different types of terms, the following order is
used:
numbers < atoms < structures < lists
Parameters:
- + list (list): the list where to find the minimal term.
- +/- minimal (term).
Examples:
-
.min([c,a,b],X)
:X
unifies witha
. -
.min([b,c,10,g,f(10),[3,4],5,[3,10],f(4)],X)
:X
unifies with5
. -
.min([3,2,5],2)
: true. -
.min([3,2,5],5)
: false. -
.min([],X)
: false.
- See Also:
concat
,delete
,length
,member
,nth
,sort
,max
,reverse
,difference
,intersection
,union
, Serialized Form
-
Field Summary
Fields Modifier and Type Field Description private static InternalAction
singleton
-
Constructor Summary
Constructors Constructor Description min()
-
Method Summary
Modifier and Type Method Description protected void
checkArguments(Term[] args)
protected boolean
compare(Term a, Term t)
static InternalAction
create()
java.lang.Object
execute(TransitionSystem ts, Unifier un, Term[] args)
Executes the internal action.int
getMaxArgs()
int
getMinArgs()
Methods inherited from class jason.asSemantics.DefaultInternalAction
canBeUsedInContext, destroy, prepareArguments, suspendIntention
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Field Details
-
singleton
-
-
Constructor Details
-
min
public min()
-
-
Method Details
-
create
-
getMinArgs
public int getMinArgs()- Overrides:
getMinArgs
in classDefaultInternalAction
-
getMaxArgs
public int getMaxArgs()- Overrides:
getMaxArgs
in classDefaultInternalAction
-
checkArguments
- Overrides:
checkArguments
in classDefaultInternalAction
- Throws:
JasonException
-
execute
public java.lang.Object execute(TransitionSystem ts, Unifier un, Term[] args) throws java.lang.ExceptionDescription copied from interface:InternalAction
Executes 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:
execute
in interfaceInternalAction
- Overrides:
execute
in classDefaultInternalAction
- Throws:
java.lang.Exception
-
compare
-