|
|||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | ||||||||
java.lang.Objectorg.jscience.computing.ai.planning.StdLib
public class StdLib
This class bundles all the code calls that are implemented in the
standard library of Planner in one class. As opposed to user-defined code
calls that will be mapped at compile-time to an object of the corresponding
class, all the stnadard code calls are mapped (at compile time) to the
static members of this class.
| Field Summary | |
|---|---|
static org.jscience.computing.ai.planning.Div |
div
For code call of the form (call / ...). |
static org.jscience.computing.ai.planning.Equal |
equal
For code call of the form (call = ...). |
static org.jscience.computing.ai.planning.Less |
less
For code call of the form (call < ...). |
static org.jscience.computing.ai.planning.LessEq |
lessEq
For code call of the form (call <= ...). |
static org.jscience.computing.ai.planning.Member |
member
For code call of the form (call Member ...). |
static org.jscience.computing.ai.planning.Minus |
minus
For code call of the form (call - ...). |
static org.jscience.computing.ai.planning.More |
more
For code call of the form (call > ...). |
static org.jscience.computing.ai.planning.MoreEq |
moreEq
For code call of the form (call >= ...). |
static org.jscience.computing.ai.planning.Mult |
mult
For code call of the form (call ...). |
static org.jscience.computing.ai.planning.NotEq |
notEq
For code call of the form (call != ...). |
static org.jscience.computing.ai.planning.Plus |
plus
For code call of the form (call + ...). |
static org.jscience.computing.ai.planning.Power |
power
For code call of the form (call ^ ...). |
| Constructor Summary | |
|---|---|
StdLib()
|
|
| Method Summary |
|---|
| Methods inherited from class java.lang.Object |
|---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
| Field Detail |
|---|
public static org.jscience.computing.ai.planning.Div div
(call / ...).
public static org.jscience.computing.ai.planning.Equal equal
(call = ...).
public static org.jscience.computing.ai.planning.Less less
(call < ...).
public static org.jscience.computing.ai.planning.LessEq lessEq
(call <= ...).
public static org.jscience.computing.ai.planning.Member member
(call Member ...).
public static org.jscience.computing.ai.planning.Minus minus
(call - ...).
public static org.jscience.computing.ai.planning.More more
(call > ...).
public static org.jscience.computing.ai.planning.MoreEq moreEq
(call >= ...).
public static org.jscience.computing.ai.planning.Mult mult
(call ...).
public static org.jscience.computing.ai.planning.NotEq notEq
(call != ...).
public static org.jscience.computing.ai.planning.Plus plus
(call + ...).
public static org.jscience.computing.ai.planning.Power power
(call ^ ...).
| Constructor Detail |
|---|
public StdLib()
|
|||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | ||||||||