Class SequentialPlan

java.lang.Object
fr.uga.pddl4j.plan.AbstractPlan
fr.uga.pddl4j.plan.SequentialPlan
All Implemented Interfaces:
Plan, Serializable

public class SequentialPlan extends AbstractPlan
This class implements a sequential plan. Actions in a sequential plan must be consecutive.
Since:
3.0
See Also:
Serialized Form
  • Constructor Details

    • SequentialPlan

      public SequentialPlan()
      Creates a new empty sequential plan.
      See Also:
      AbstractPlan()
    • SequentialPlan

      public SequentialPlan(Plan other)
      Creates a new sequential plan from an other. This constructor creates a deep copy of the specified plan.
      Parameters:
      other - the other plan.
      See Also:
      AbstractPlan(Plan)
  • Method Details

    • makespan

      public final double makespan()
      Returns the makespan of the plan. The makespan of a sequential plan is its size.
      Returns:
      the makespan of the plan.
      See Also:
      Plan.size()
    • actions

      public final List<Action> actions()
      Returns the list of actions contained in the plan ordered depending on their time specifier.
      Returns:
      the ordered set of actions of the plan.
      See Also:
      Plan.actions()
    • timeSpecifiers

      public final Set<Integer> timeSpecifiers()
      Returns the set of time specifiers used in this plan.
      Returns:
      the set of time specifiers used in this plan.
      See Also:
      Plan.timeSpecifiers()
    • getActionSet

      public final Set<Action> getActionSet(int time)
      Returns the set of actions at a specified time specifier.
      Parameters:
      time - the time specifier.
      Returns:
      the set of actions at a specified time specifier or null if no actions are scheduled in the plan at the the time specifier.
      See Also:
      Plan.getActionSet(int)
    • add

      public final boolean add(int time, Action action)
      Adds an action at a specified time specifier in the plan.
      Parameters:
      action - the action to add.
      time - the time specifier of the action in the plan.
      Returns:
      true if the action was added; false otherwise.
      See Also:
      Plan.add(int, Action)
    • remove

      public final boolean remove(int time, Action action)
      Removes an action at a specified time specifier of the plan.
      Parameters:
      action - the action to remove.
      time - the time specifier of the action in the plan to remove.
      Returns:
      true if the action was removed; false otherwise.
      See Also:
      Plan.remove(int, Action)
    • remove

      public final boolean remove(int time)
      Removes all the actions at a specified time specifier of the plan.
      Parameters:
      time - the time specifier of the actions in the plan to remove.
      Returns:
      true if the action was removed; false otherwise.
      See Also:
      Plan.remove(int)
    • contains

      public final boolean contains(int time, Action action)
      Returns if an action is contained in the plan at a specified time specifier.
      Parameters:
      time - the time specifier.
      action - the action.
      Returns:
      true if the specified action is contained in the plan at the specified time specifier; false otherwise.
      See Also:
      Plan.contains(int, Action)
    • clear

      public final void clear()
      Removes all the actions of the plan.
      See Also:
      Plan.clear()
    • equals

      public boolean equals(Object obj)
      Returns if the plan is equal to an other object. A plan is equal to an other object if the object is an instance of the same class and have the same action at the same time specifier. The equals method uses the equal method of the class BitOp to compare actions.
      Overrides:
      equals in class Object
      Parameters:
      obj - the object to be compared.
      Returns:
      true if this plan is equal to the specified object; false otherwise.
      See Also:
      AbstractInstantiatedOperator.equals(Object), Object.equals(Object)
    • hashCode

      public int hashCode()
      Returns the hash code of this plan.
      Overrides:
      hashCode in class Object
      Returns:
      the hash code of this plan.
      See Also:
      Object.hashCode()
    • isTimeSpecifierOutOfBound

      protected final boolean isTimeSpecifierOutOfBound(int time)
      Returns if a specified time specifier is invalid. Formally a time specifier is invalid if it is less than 0 or greater than the size of the plan.
      Parameters:
      time - the time stamp.
      Returns:
      true if the specified time specifier is out of bound; false otherwise.