pddl_parser/plan/
mod.rs

1/// The plan item module contains the definition of a plan item. A plan item is either an action or a durative action.
2pub mod action;
3/// The durative action module contains the definition of a durative action. A durative action is an action that has a duration. Durative actions are used in temporal planning.
4pub mod durative_action;
5/// The plan module contains the definition of a plan. A plan is a sequence of actions.
6pub mod plan;
7/// The action module contains the definition of an action. An action is a function that takes a set of parameters and returns a set of effects.
8pub mod simple_action;