Package | Description |
---|---|
model.agent.humanAgent.aatom.operationalLevel |
All operational models in the project.
|
model.agent.humanAgent.aatom.operationalLevel.action.movement |
Movement related classes.
|
model.agent.humanAgent.aatom.operationalLevel.action.movement.impl |
Movement model implementations.
|
model.agent.humanAgent.aatom.operationalLevel.observation.impl |
Observation module implementations.
|
model.agent.humanAgent.aatom.strategicLevel |
Package contains all existing strategic models of an agent.
|
model.agent.humanAgent.aatom.strategicLevel.belief |
The belief module and its related classes.
|
model.agent.humanAgent.aatom.tacticalLevel |
Tactical level related classes.
|
model.agent.humanAgent.aatom.tacticalLevel.activity |
Activity related classes.
|
model.agent.humanAgent.aatom.tacticalLevel.navigation |
The navigation module and related classes.
|
Modifier and Type | Field and Description |
---|---|
private ObservationModule |
OperationalModel.observationModule
The observation module.
|
Modifier and Type | Method and Description |
---|---|
ObservationModule |
OperationalModel.getObservationModule()
Gets the observation module.
|
Constructor and Description |
---|
OperationalModel(MovementModule movementModel,
ObservationModule observationModule,
CommunicationModule communicationModule) |
Modifier and Type | Field and Description |
---|---|
protected ObservationModule |
MovementModule.observationModule
The observation module.
|
Modifier and Type | Method and Description |
---|---|
void |
MovementModule.init(AatomHumanAgent agent,
ObservationModule observationModule)
Sets the agent.
|
Modifier and Type | Method and Description |
---|---|
void |
HelbingMovementModule.init(AatomHumanAgent agent,
ObservationModule observationModule) |
Modifier and Type | Class and Description |
---|---|
class |
BasicOperatorObservationModule
A basic observation model for an operator movementModel.
|
class |
BasicPassengerObservationModule
A basic observation model for a passenger.
|
Modifier and Type | Method and Description |
---|---|
void |
StrategicModel.init(ObservationModule observationModule)
Initializes the strategic model.
|
Modifier and Type | Field and Description |
---|---|
private ObservationModule |
BeliefModule.observationModule
The observation module.
|
Modifier and Type | Method and Description |
---|---|
void |
BeliefModule.init(PlanningModule planner,
ObservationModule observationModule,
java.util.Collection<Activity> activities)
Initializes the belief module.
|
Modifier and Type | Method and Description |
---|---|
void |
TacticalModel.init(Map map,
HumanAgent agent,
MovementModule movement,
ObservationModule observations,
PlanningModule planner,
java.util.Collection<Activity> activities)
Initializes the
HumanAgent . |
Modifier and Type | Field and Description |
---|---|
protected ObservationModule |
Activity.observations
The observation module.
|
Modifier and Type | Method and Description |
---|---|
void |
ActivityModule.init(Map map,
HumanAgent agent,
MovementModule movementModel,
ObservationModule observationModule,
java.util.Collection<Activity> activities,
PlanningModule planner,
NavigationModule navigationModule) |
void |
Activity.init(Map map,
HumanAgent agent,
MovementModule movement,
ObservationModule observations,
NavigationModule navigationModule,
ActivityModule activityModule)
Sets the agent.
|
Modifier and Type | Field and Description |
---|---|
protected ObservationModule |
NavigationModule.observationModule
The observation module.
|
Modifier and Type | Method and Description |
---|---|
void |
PassengerNavigationModule.init(Map map,
MovementModule movementModel,
ActivityModule activityModule,
ObservationModule observation) |
void |
NavigationModule.init(Map map,
MovementModule movementModel,
ActivityModule activityModule,
ObservationModule observationModule)
Sets the agent.
|