Package | Description |
---|---|
jason.asSemantics | |
jason.bb |
Modifier and Type | Field and Description |
---|---|
protected BeliefBase |
Agent.bb |
Modifier and Type | Method and Description |
---|---|
BeliefBase |
Agent.getBB() |
Modifier and Type | Method and Description |
---|---|
TransitionSystem |
Agent.initAg(AgArch arch,
BeliefBase bb,
java.lang.String asSrc,
Settings stts)
Deprecated.
Prefer the initAg method with only the source code of the agent as parameter.
A call of this method like
TransitionSystem ts = ag.initAg(arch, bb, asSrc, stts)can be replaced by new TransitionSystem(ag, new Circumstance(), stts, arch); ag.setBB(bb); // only if you use a custom BB ag.initAg(asSrc); TransitionSystem ts = ag.getTS(); |
void |
Agent.setBB(BeliefBase bb) |
Modifier and Type | Class and Description |
---|---|
class |
AgentJDBCPersistentBB
Implementation of BB that stores some beliefs in a relational data base.
|
class |
ChainBB
A wrapper for a chain of belief bases customisations.
|
class |
ChainBBAdapter
This class is to be extended by customised belief bases that may be
used in chains (of responsibility).
|
class |
DefaultBeliefBase
Default implementation of Jason BB.
|
class |
IndexedBB
Customised version of Belief Base where some beliefs are unique (with primary keys) and
indexed for faster access.
|
class |
JDBCPersistentBB
Implementation of BB that stores some beliefs in a relational data base.
|
class |
TextPersistentBB
Implementation of BB that stores the agent BB in text files.
|
Modifier and Type | Field and Description |
---|---|
protected BeliefBase |
ChainBBAdapter.nextBB |
Modifier and Type | Method and Description |
---|---|
BeliefBase |
IndexedBB.clone() |
BeliefBase |
DefaultBeliefBase.clone() |
BeliefBase |
ChainBBAdapter.clone() |
BeliefBase |
BeliefBase.clone() |
BeliefBase |
ChainBBAdapter.getLastBB() |
Modifier and Type | Method and Description |
---|---|
void |
ChainBB.addInChain(BeliefBase bb)
add a new BB at the end of the chain
|
void |
ChainBBAdapter.setNext(BeliefBase bb) |
Constructor and Description |
---|
ChainBBAdapter(BeliefBase bb) |
IndexedBB(BeliefBase next) |
JDBCPersistentBB(BeliefBase next) |
TextPersistentBB(BeliefBase next) |