Uses of Class
logist.plan.Plan

Packages that use Plan
logist.behavior   
logist.plan Allows to create plans that consist of a sequence of actions. 
 

Uses of Plan in logist.behavior
 

Methods in logist.behavior that return Plan
 Plan DeliberativeBehavior.plan(Vehicle vehicle, TaskSet tasks)
          Computes the transportation plan for a vehicle.
 

Methods in logist.behavior that return types with arguments of type Plan
 java.util.List<Plan> CentralizedBehavior.plan(java.util.List<Vehicle> vehicles, TaskSet tasks)
          Computes the joint plan for several vehicles.
 java.util.List<Plan> AuctionBehavior.plan(java.util.List<Vehicle> vehicles, TaskSet tasks)
          Computes the joint plan for several vehicles.
 

Uses of Plan in logist.plan
 

Fields in logist.plan declared as Plan
static Plan Plan.EMPTY
          The empty plan
 

Methods in logist.plan that return Plan
 Plan Plan.seal()
          Prevent any future modification to this plan
 

Methods in logist.plan with parameters of type Plan
 void PlanVerifier.verifyPlan(Vehicle vehicle, Plan plan)
          Verifies that a sequence of actions is valid for a vehicle.