Fact-checked by Grok 2 weeks ago

Partial-order planning

Partial-order planning is a paradigm in automated planning that constructs plans as partially ordered sets of actions, where the sequence of execution is flexible and only constrained by necessary dependencies such as causal links and temporal orders, enabling parallelism and avoiding premature commitments to full linearization. Introduced by Earl D. Sacerdoti in 1975, this approach represented a shift from earlier linear methods by modeling plans as directed acyclic graphs with nodes for actions and arcs for ordering constraints, allowing for hierarchical refinement of goals into subgoals without enforcing a . Key implementations, such as partial-order causal link (POCL) planning, use causal links to connect actions that support preconditions and resolve threats through ordering adjustments or insertions, resulting in plans that can have exponentially many linear extensions for flexible execution. Compared to total-order planning, which requires a complete linear sequence of actions and can suffer from larger search spaces due to early ordering decisions, partial-order planning often explores a smaller or equal search space, potentially improving efficiency with appropriate heuristics like , though it incurs higher per-node computational costs for maintaining partial orders. This flexibility makes partial-order planning particularly suitable for domains requiring concurrency or adaptability, such as robotic task allocation and hierarchical task networks (HTN), where it integrates with strategies to handle complex, real-world problems like home assistance systems. The paradigm's is PSPACE-complete in general, but polynomial-time approximations exist via techniques like delete relaxation.

Fundamentals

Definition and motivation

Partial-order planning (POP) is an approach in automated planning that generates plans represented as partially ordered sets of actions, enforcing only the necessary ordering constraints such as precedence and causal dependencies, thereby permitting parallelism and execution flexibility where full sequential commitment is not required. Formally, a partial-order plan is defined as a pair (S, <), where S is a set of steps (unique operator instances), and < is a strict partial order on S (before ). Causal links connect actions to ensure preconditions are satisfied by prior effects. This representation contrasts with total-order , which imposes a complete linear sequence on all actions from the outset. Central to POP are several key concepts that enable its flexible structure. The least-commitment strategy defers decisions on action ordering and variable bindings until they are necessitated by dependencies, minimizing premature choices and potential during plan construction. in the plan are classified as open conditions, which remain unsatisfied and require future resolution, or closed conditions, which are supported by existing causal links; unresolved open conditions drive further plan refinement. Causal links, also termed support links, explicitly pair an action's effect with a subsequent action's precondition, protecting against interference and establishing the minimal dependencies needed for plan validity. The motivation for POP arises from the limitations of earlier total-order planners, which often commit to arbitrary sequences early, leading to inefficiencies in domains involving independent subgoals or nondeterministic elements, such as the Sussman anomaly in blocks-world planning where subgoal interactions require interleaved actions. By maintaining partial orders, POP improves search efficiency through reduced branching on unnecessary orderings and better exploitation of parallelism in concurrent actions, proving particularly advantageous in domains with loosely coupled tasks or uncertainty, as evidenced by empirical comparisons showing performance gains in subgoal decomposition scenarios. This least-commitment paradigm, originating in nonlinear planning techniques, allows for more adaptable plans that can be linearized into executable sequences only when needed.

Historical development

Partial-order planning emerged in the amid efforts to overcome the rigidity of early planning systems, which typically produced totally ordered action sequences. The foundational STRIPS system, developed by Richard Fikes, Peter Hart, and Nils Nilsson in 1971, represented planning as forward-chaining through state spaces to generate linear plans, but it struggled with problems requiring interleaved subgoal achievement, such as the Sussman anomaly—a blocks-world scenario introduced by Gerald Sussman in 1973 that exposed the inefficiencies of committing to full action orders prematurely. A pivotal advancement came with Earl Sacerdoti's planner in 1975, which introduced hierarchical partial-order task networks to decompose complex goals into partially ordered subtasks, resolving inter-subgoal interactions via minimal ordering constraints rather than total . This approach allowed planners to defer unnecessary ordering decisions, improving efficiency in domains with independent or loosely dependent actions. Building directly on , Austin Tate's NONLIN system, also released in 1977, refined these concepts by employing a goal structure that supported nonlinear interleaving of subgoals and dependency-directed for plan refinement, marking a key step toward flexible, least-commitment . The 1980s saw further maturation through systems like David E. Wilkins' SIPE in 1984, a domain-independent planner that integrated hierarchical with partial orders, adding capabilities for execution monitoring and dynamic plan repair to handle real-world variability. David Chapman's 1987 TWEAK algorithm provided a formal logical for partial-order planning, demonstrating its , , and inherent intractability while emphasizing refinement search in plan space. These developments solidified partial-order methods as a core paradigm in AI planning. In the 1990s, partial-order planning evolved through deeper integration with (HTN) techniques, as seen in extensions of earlier systems like O-Plan, which combined procedural with partial orders for guided refinement in large-scale applications such as space mission planning. Post-2000, the approach extended to probabilistic and concurrent settings, with frameworks like contingent partial-order planning addressing uncertainty in execution, as explored in works on non-deterministic domains for and multi-agent coordination.

Plan representation

Structure of partial-order plans

A partial-order plan consists of a set of steps, each representing an instantiated from the , along with constraints that define their interdependencies without requiring a total linear sequence. Each step includes preconditions that must hold for its execution, an add list specifying positive effects that establish new facts in the world state, and a delete list indicating facts that are negated or removed. The plan is formally defined as a quadruple comprising steps S, ordering constraints O, causal links L, and binding constraints B to ensure consistency among variables; open preconditions are the unsatisfied preconditions that serve as subgoals for further refinement. The partial order is captured by the set of precedence relations O, where S_i < S_j denotes that step S_i must precede step S_j in any valid of the plan, allowing for concurrency among non-dependent actions. Causal links form the core interconnections, represented as (S_i, e, r, S_j), indicating that an e from step S_i supports the r of step S_j, thereby justifying why r holds at the time of S_j's execution. Preconditions are classified as open conditions if they lack a supporting causal link and thus require future resolution by inserting additional steps, or closed conditions if they are satisfied either by the initial state, prior effects within the same step, or established causal links. Additional constraints maintain plan validity, including ordering constraints that enforce necessary sequences via <, protection constraints that prevent interfering actions from deleting a fact between a causal link's supporter and consumer, and promotion constraints that resolve potential interferences by ordering a threatening step after the supported condition's use. Causal links serve as building blocks for the plan's support structure, with more detailed threat handling addressed in subsequent refinements. For illustration, consider a simple blocks-world scenario where the goal is to place block A on the table and block B on the table, assuming both are initially stacked on other blocks and a single is available. The steps might include Unstack(A, C) with preconditions HandEmpty, , and , adding Holding(A) and while deleting HandEmpty and On(A, C); and similarly Unstack(B, D). The partial order allows Unstack(A, C) < Putdown(A) and Unstack(B, D) < Putdown(B), but the HandEmpty and single arm introduce , requiring additional ordering constraints (e.g., Putdown(A) < Unstack(B, D) or vice versa) to serialize the unstack actions; a causal link such as Initial On(A, C) → Unstack(A, C) for the On(A, C) closes that condition, while Holding(A) from Unstack(A, C) supports the precondition for Putdown(A). In partial-order planning, causal links serve as a fundamental mechanism to establish and protect dependencies between actions in a plan. A causal link is defined as a (i, p, j), where action i achieves the p that is required as a by action j. This link ensures that the effect of i supports the precondition of j, thereby maintaining the plan's validity by preventing any intermediate actions from deleting p during the execution between i and j. Formally, causal links are often notated as i \xrightarrow{p} j, indicating that i is the , p is the supported , and j is the . These links form part of representation alongside the set of actions and ordering relations, explicitly recording why certain preconditions are satisfied without committing to a . By embedding these dependencies, partial-order planners can explore flexible plan structures while safeguarding critical supports. To preserve the integrity of causal links, various constraints are imposed on the plan. Ordering constraints enforce strict precedence, such as i < j, ensuring that supporters precede consumers and that potential threats are serialized appropriately. Inequality constraints, denoted as i \neq j, prohibit the same action from serving multiple incompatible roles, while binding constraints maintain variable consistency across actions, such as equating or distinguishing object variables (e.g., ?x = ?y or ?x \neq ?a) to avoid inconsistencies in proposition interpretations. These constraints collectively define the partial order, allowing planners to refine plans without premature linearization. Protection intervals represent the temporal span between a supporter i and a consumer j in a causal link i \xrightarrow{p} j, during which no interfering actions may delete p. This interval must remain interference-free, achieved by adjusting ordering constraints to position any potential threats outside it, such as by serializing a threatening k before i or after j. Violations of these protections manifest as flaws in the plan. Open preconditions occur when a required lacks a supporting causal link, necessitating the addition of new actions or links. Threats arise when an interferes with an existing link, treated as constraint violations that demand resolution through reordering or further constraints.

Planning algorithms

Plan space and refinement

In partial-order planning, the plan space is conceptualized as a of possible partial plans, where each plan consists of a set of actions with partial ordering constraints and causal , and the space expands through the systematic resolution of flaws such as open preconditions or conflicts. This structure allows the planner to explore multiple linearizations of a without committing to a prematurely, enabling the discovery of more flexible solutions. The search begins with an initial plan comprising a dummy start action, which encodes all initial world facts as its effects, and a dummy goal action, which lists all goal propositions as its preconditions, leaving the latter as open conditions to be resolved. From this skeletal plan, refinement proceeds by identifying and addressing flaws iteratively, transforming incomplete or inconsistent partial plans into valid, executable ones. Refinement operators include , which selects an existing or new to satisfy an open by unifying an with that ; causal link addition, which establishes a dependency between the chosen action's and the supported while imposing an ordering ; and ordering establishment, which adds precedence relations between actions to maintain in the partial . These operators expand the plan space nondeterministically, with each application generating child plans that resolve one flaw while potentially introducing new ones. The core partial-order causal link (POCL) planning algorithm, as implemented in systems like SNLP and UCPOP, operates by repeatedly selecting a flaw from the current partial plan and applying refinement operators until no flaws remain, yielding a complete plan. The search process typically employs depth-first exploration with iterative deepening for efficiency, incorporating to abandon dead-end branches where flaws cannot be resolved without contradiction; modern variants enhance this with guidance, such as planning graph-based estimates of remaining actions needed, to prioritize promising refinements and improve .

Threat resolution

In partial-order planning, a is defined as a situation where an action k has a delete effect that unifies with a p supported by a causal link from action i to action j (denoted i \xrightarrow{p} j), and the partial order does not constrain k to precede i or follow j. This potential interference could invalidate the support for p if k executes between i and j. Threats are detected during plan refinement by scanning for delete effects of existing or newly added steps that match unprotected causal links. Threats are classified as relevant only if k can occur within the temporal interval between i and j; irrelevant threats, where existing ordering constraints already position k outside this interval, are safely ignored without further action. Relevant threats must be resolved to maintain consistency, as unresolved conflicts could lead to invalid executions. In the Systematic Nonlinear Planner (SNLP), threats are identified immediately upon introduction of new steps or links, ensuring proactive flaw detection. Resolution strategies focus on imposing ordering constraints to separate the threat from the protected interval. Demotion orders k before i (k < i), preventing the deletion of p after it is established by i. Promotion orders k after j (j < k), allowing p to be consumed by j before the deletion occurs. If the threatening action k is non-essential—such as an auxiliary resolver without dependent causal links—it can be deleted to eliminate the flaw without impacting the plan's core structure. These methods are applied systematically, with the choice between and often guided by domain heuristics or least-commitment principles to preserve plan flexibility. Should a introduce new flaws, such as additional or unachievable open conditions, the planner backtracks by undoing the ordering or deletion and explores alternative , ensuring through exhaustive search within the plan space. Advanced variants, like those in SNLP extensions, may postpone certain resolvable to later stages if they can be proven non-interfering under current constraints, reducing immediate branching. Overall, threat enhances efficiency by serializing conflicting actions early, inconsistent branches and focusing the search on viable partial plans.

Search strategies

Partial-order planning algorithms, such as those based on the partial-order causal-link (POCL) framework, conduct search in the space of partial plans by iteratively refining an initial plan through the application of refinement operators to resolve flaws like open preconditions and threats. These methods are sound and complete, systematically exploring nondeterministic choices such as step selection and ordering via or A*-like strategies, ensuring that a solution is found if one exists in finite domains. To enhance efficiency, POCL planners often incorporate heuristic guidance, including hill-climbing and variants that prioritize plans based on estimates of remaining work. Common heuristics include plan distance metrics, such as the number of open preconditions or the set-level heuristic, which evaluates the cost of achieving sets of subgoals while accounting for action reuse in the current partial plan. These heuristics help avoid level-off in infinite domains by incorporating analysis from planning graphs to detect implicit conflicts and prune inconsistent branches, thereby reducing the exponential search space. Optimizations focus on greedy flaw resolution, where the least-cost repair selects flaws with minimal estimated resolution , often prioritizing threats over open preconditions to minimize branching. For instance, strategies like ZLIFO delay resolution of separable threats, generating smaller search spaces compared to uniform approaches. Incomplete approximations, such as disjunctive constraint propagation, further improve by relaxing strict ordering early in search, though at the potential of . Modern variants integrate POCL search with satisfiability (SAT) solvers, encoding partial plans as weighted MaxSAT problems to compute optimal relaxations by minimizing unnecessary ordering constraints while preserving validity. This allows for anytime optimization of plan flexibility post-generation. Machine learning techniques, including reinforcement learning for action selection, have also been explored to learn search-control rules that accelerate flaw resolution in POCL frameworks. Despite these advances, POCL search remains exponential in the worst case, guaranteeing optimality only under complete exploration in finite domains.

Comparative analysis

Differences from total-order planning

Partial-order planning (POP) and total-order planning (TOP) differ primarily in their representational approach to plans. POP represents plans as partial orders of actions, which impose only necessary ordering constraints while permitting flexibility for concurrent or interleaved execution of independent actions. In contrast, TOP represents plans as fully linear sequences, specifying a complete over all actions from start to finish. This partial ordering in POP avoids unnecessary commitments to specific sequences, enabling more compact and adaptable plan structures. From a computational , POP searches a more by considering equivalence classes of linearizations rather than enumerating all possible total orders, which can exponentially reduce the in domains with parallelism. However, POP incurs additional overhead for managing causal links and resolving threats from interfering actions. TOP, being simpler, avoids these complexities but explores a larger or equal search space, as every partial plan in POP corresponds to multiple total orders in TOP, potentially leading to redundant computations. Empirical studies show that optimized TOP implementations with state can outperform basic POP in sequential domains, solving problems up to 7 times faster on average across 39 benchmarks. POP is preferable in domains featuring independent or parallelizable actions, such as robotic where multiple manipulators operate concurrently, as it naturally captures opportunities for reduced . suits environments requiring strict sequential dependencies, like linear puzzles in without concurrency. In parallel domains, POP typically yields shorter plans by exploiting concurrency, though plans are simpler to verify and execute due to their explicit ordering. Both paradigms trace their roots to the STRIPS system, which emphasized sequential action application in state-space search. POP evolved as an extension to address STRIPS' limitations in handling nonlinear plans, introducing partial orders to better manage interleaving and avoid premature linear commitments.

Resolution of the Sussman anomaly

The Sussman anomaly refers to a classic blocks world planning problem introduced by Gerald Sussman in 1973, highlighting the limitations of early total-order planners like HACKER. In this scenario, the initial state consists of block C stacked on block A (which is on the table), block B on the table, with C and B clear. The goals are to achieve block A on block B and block B on block C, without specifying a fixed sequence. Total-order approaches, which commit to a linear execution order early, struggle here because achieving one goal (e.g., stacking A on B) often interferes with the preconditions of the other (e.g., by blocking the clear top of B needed for picking up B to stack it on C), leading to repeated backtracking and inefficient search. Partial-order planning (POP), as introduced in the NOAH system, resolves the Sussman anomaly by representing plans as partial orders of actions connected by causal links, allowing flexible interleaving without premature linearization. The process begins with an initial partial plan containing only Start and Finish steps, where the open preconditions are the goals On(A, B) and On(B, C). NOAH expands these conjunctive goals in parallel, selecting subgoals non-sequentially and building a procedural network of actions. For instance, to achieve On(A, B), the planner adds a Stack(A, B) action, which requires preconditions Holding(A) and Clear(B); to support Holding(A), a Pickup(A) action is added, requiring Clear(A) and On(A, Table), with Clear(A) supported causally by an Unstack(C, A) action (addressing initial On(C, A)). Unstack(C, A) in turn requires On(C, A) and Clear(C) from Start, and produces Holding(C). A causal link is established from Unstack(C, A) to Pickup(A) via Clear(A), and from Pickup(A) to Stack(A, B) via Holding(A); Stack(A, B) supports Finish via On(A, B). Similarly, for On(B, C), a Stack(B, C) action is added, requiring Holding(B) and Clear(C); a Pickup(B) action supports Holding(B), requiring Clear(B) and On(B, Table) from Start. To achieve Clear(C) for Stack(B, C), since Unstack(C, A) produces Holding(C), a Putdown(C) action is inserted after Unstack(C, A), producing Clear(C) and On(C, Table), with a causal link from Putdown(C) to Stack(B, C) via Clear(C), and from Pickup(B) to Stack(B, C) via Holding(B); Stack(B, C) supports Finish via On(B, C). As the plan develops, conflicts arise as threats: Stack(A, B) deletes Clear(B), threatening the Clear(B) precondition for Pickup(B), and other actions may interfere with causal links. NOAH's "Resolve Conflicts" mechanism detects these threats—where a delete effect endangers a causal link—and resolves them through ordering adjustments without backtracking. Resolution proceeds via promotion or demotion: for the threat to Clear(B) from Stack(A, B), the planner promotes Pickup(B) before Stack(A, B) (ordering constraint Pickup(B) < Stack(B, C) < Stack(A, B)), ensuring Clear(B) is used before deletion; this also requires Putdown(C) < Pickup(B) to ensure the arm is empty. Similarly, for any threat to Clear(C) from actions like Unstack(C, A) (which deletes Clear(C) initially but is resolved by ordering Putdown(C) after and before Stack(B, C)), promotion orders the threatening action appropriately, protecting the causal link Putdown(C) → Clear(C) → Stack(B, C). The resulting partial plan includes the steps Unstack(C, A) < Putdown(C) < Pickup(B) < Stack(B, C) < Pickup(A) < Stack(A, B), with no open preconditions or unresolved threats, forming a valid total order upon linearization (e.g., unstack C from A, put down C, pick up B, stack B on C, pick up A, stack A on B). This interleaving handles goal interactions efficiently. The significance of this resolution lies in POP's ability to defer ordering decisions, avoiding the exponential backtracking of total-order methods on interdependent goals like the Sussman anomaly; solves it in a single pass through , demonstrating the power of partial orders for nonlinear . A conceptual of the final plan graph contrasts with total-order rigidity:
  • Steps: Start, Unstack(C,A), Putdown(C), Pickup(B), Stack(B,C), Pickup(A), Stack(A,B), Finish
  • Causal Links:
    • Start → On(C,A), Clear(C) → Unstack(C,A) → Clear(A), Holding(C) → Putdown(C) → On(C,Table), Clear(C) → Stack(B,C) → On(B,C) → Finish
    • Start → Clear(B), On(B,Table) → Pickup(B) → Holding(B) → Stack(B,C)
    • Unstack(C,A) → Clear(A) → Pickup(A) → Holding(A) → Stack(A,B) → On(A,B) → Finish
    • Start → On(A,Table) → Pickup(A)
  • Ordering Constraints: Unstack(C,A) < Putdown(C) < Pickup(B) < Stack(B,C) < Pickup(A) < Stack(A,B)
  • No Threats: All delete effects (e.g., Stack(A,B) deletes Clear(B), but Pickup(B) occurs before; Stack(B,C) deletes Clear(C), but after its use as precondition) are positioned outside protected intervals.
This structure allows multiple linearizations while ensuring correctness, underscoring POP's advantage in managing interference.

Applications and limitations

Practical uses

Partial-order planning (POP) has found significant application in robotics, where it facilitates concurrent task scheduling by allowing parallel execution of independent actions, such as coordinating multiple manipulators in assembly tasks or navigating mobile robots through dynamic environments. In manufacturing, POP supports assembly line optimization by modeling parallel steps, like simultaneous part fetching and processing, which reduces bottlenecks and improves throughput in flexible production systems. Workflow management in business processes benefits from POP's ability to handle partially ordered tasks, enabling adaptive scheduling in domains like supply chain logistics where actions such as order verification and inventory checks can overlap. Prominent systems implementing POP include SIPE-2, developed in the for NASA's space missions and operations, which generated flexible plans for crisis action and replanning in complex scenarios like satellite deployment and tactical coordination. Post-2000 developments extend this through tools like SHOP2, a (HTN) planner that incorporates partial ordering of subtasks for efficient execution in ordered domains, and PDDL extensions such as those in POPF for temporal-numeric planning, allowing POP in standardized planning competitions. Hybrid approaches combining POP with HTN, as in pyHiPOP and OptiPlan, enhance hierarchical decomposition while preserving partial orders for domains requiring both structure and flexibility. Probabilistic extensions integrate POP with Markov decision processes (MDPs) to handle uncertainty, as seen in Probapop and preference-based frameworks that generate robust plans under conditions. Case studies illustrate POP's efficacy in autonomous vehicles, where partial-order techniques enable parallel sensor actions and path planning to avoid collisions while merging trajectories, as demonstrated in temporal plan merging for mobile robots. In game AI, POP supports non-linear quests by creating branching narratives with concurrent events, allowing non-player characters to pursue partially ordered goals that adapt to player interactions.

Key disadvantages

One significant limitation of partial-order planning lies in its , particularly during threat resolution. Certain plan improvement techniques in partial-order planning, such as determining optimal orderings in the algorithm to protect causal links, are proven to be NP-hard by from the 3-dimensional matching problem. This hardness arises because the planner must evaluate exponential numbers of possible orderings for non-serializable subgoals, leading to large search spaces in domains with complex action interactions. In sequential tasks, partial-order planners often perform worse than total-order approaches due to the overhead of maintaining and refining partial orderings, where the per-plan-state can reach O(|S|^2) for step orderings, compared to O(|S|) for total-order methods. Scalability issues further exacerbate these challenges, as the search space in partial-order planning grows exponentially with action interdependence and the number of subgoals or initial conditions. In domains with high parallelism, this least-commitment strategy offers flexibility, but in serial domains—such as grid navigation or puzzle-solving—it becomes a burden, requiring eventual total ordering of all actions and rendering planners ineffective without complete . As a result, partial-order planners like UCPOP often fail to find solutions in interrelated subgoal scenarios, even with large search limits, necessitating incomplete variants for applications where exhaustive search is infeasible. Implementation presents additional hurdles, including difficulties in debugging non-linear plans due to the intricate web of ordering constraints and causal links, which obscure causal chains compared to sequential representations. Effective deployment thus requires domain-specific heuristics to guide flaw selection and threat removal, increasing development effort. Moreover, partial-order planners tend to over-generate flexible plans that, while theoretically adaptable, may underperform in dynamic environments where unforeseen changes violate unprotected links, making them less intuitive for human oversight. To mitigate these drawbacks, approximations such as greedy flaw selection in POCL algorithms prioritize immediate resolution of open conditions or threats, reducing search depth at the expense of optimality and risking local optima. These heuristics, including distance-based of partial plans, improve in practice but sacrifice the completeness and solution quality inherent to full POCL exploration.

References

  1. [1]
    [PDF] A Structure for Plans and Behavior - DTIC
    AUG 1975. 2. REPORT TYPE. 3. DATES COVERED. 00-08-1975 to 00-08-1975. 4. TITLE AND SUBTITLE. A Structure for Plans and Behavior. 5a. CONTRACT NUMBER. 5b. GRANT ...
  2. [2]
    [PDF] Hierarchical planning and reasoning about partially ordered plans& ...
    Jun 13, 2022 · AI planning is a general problem solving technique that can be deployed for autonomously solving a wide range of different problems (Ghallab, ...
  3. [3]
    [PDF] Total-Order and Partial-Order Planning: A Comparative Analysis
    Similarly, partial-order planners are commonly plan-based, but it is possible to have a world-based partial-order planner (Godefroid & Kabanza, 1991). In this ...
  4. [4]
    [PDF] Total-Order and Partial-Order Planning: A Comparative Analysis
    In this paper, we present a rigorous comparative analysis of partial-order and total-order planning by focusing on two speci c planners that can be directly ...
  5. [5]
    An Introduction to Least Commitment Planning | AI Magazine
    Dec 15, 1994 · This article summarizes a progression of least commitment planners, starting with one that handles the simple STRIPS representation and ending with UCPOP.
  6. [6]
    [PDF] Planning for Conjunctive Goals. - DTIC
    The problem of achieving conjunctive goals has been'central to domain- independent planning research; the nonlinear constraint-posting approach has.
  7. [7]
    [PDF] UCPOP: A Sound, Complete, Partial Order Planner for ADL
    McDermott [1991] represented action schema as sec- ondary preconditions to create a provably complete, total-order planner for ADL. While generating these.
  8. [8]
    [PDF] Engineering Note - Journal of Artificial Intelligence Research
    An open condition can be closed by adding a new step from the domain theory, or reusing a step already in the plan. An unsafe link is handled by the promotion, ...
  9. [9]
    [PDF] Partial-Order Planning: - University of Washington
    Feb 19, 1993 · In this paper we focus on the former and hold the latter xed; we evaluate the relative e ciency of total-order and partial order ...Missing: seminal | Show results with:seminal
  10. [10]
    [PDF] 1991-Systematic Nonlinear Planning
    A nonlinear plan is order inconsistent if and only if the causal links and safety conditions of the plan define a cycle in the plan steps.
  11. [11]
    [PDF] Reviving Partial Order Planning - Subbarao Kambhampati
    This paper challenges the prevailing pessimism about the scalability of partial order planning (POP) algorithms by presenting several novel heuristic ...Missing: seminal | Show results with:seminal
  12. [12]
    [PDF] 1993-Threat-Removal Strategies for Partial-Order Planning
    In this paper, we introduce four alternative threat removal strategies and show that some are strictly better than others. In particular, we show that delaying ...
  13. [13]
    [PDF] 1993-Postponing Threats in Partial-Order Planning
    An important aspect of partial-order planning is the resolution of threats between actions and causal links in a plan. We present a technique for ...Missing: seminal | Show results with:seminal
  14. [14]
  15. [15]
  16. [16]
    [PDF] Optimal Partial-Order Plan Relaxation via MaxSAT
    Our approach for computing an optimally relaxed POP is to use a family of novel encod- ings for partial weighted MaxSAT: an optimal solution to the MaxSAT ...Missing: integration | Show results with:integration
  17. [17]
    Using Reinforcement Learning in Partial Order Plan Space
    Partial order planning is an important approach that solves planning problems without completely specifying the orderings between the actions in the plan.Missing: selection | Show results with:selection
  18. [18]
  19. [19]
    [PDF] The Nonlinear Nature Of Plans - IJCAI
    This paper deals with a deceptively simple idea: a plan may have the structure of a partial ordering. ... Sacerdoti, E. D., "Planning in a Hierarchy of.
  20. [20]
    [PDF] Total Order Planning is More Efficient than we Thought
    The experimental studies we detail here clearly demonstrate that the question is far from being solved, at least concerning the comparison between partial plans.
  21. [21]
    [PDF] A Computational Model for Skill Acquisition
    A Computational Model of Skill Acquisition by Gerald Jay Sussman. Submitted to the Department of Mathematics on July 23, 1973 in partial fulfillment of the ...
  22. [22]
    [PDF] Optimal Planning for Timed Partial Order Specifications - Bardh Hoxha
    This paper addresses planning task sequences for multiple robots using Timed Partial Orders (TPO) and a MILP approach, using a TSP variant.
  23. [23]
    Manipulator Robots Using Partial-Order Planning - ResearchGate
    Aug 7, 2025 · Intelligent task planning executed by manipulators robots and mainly its integration with the development of efficient controllers ...Missing: manufacturing workflow
  24. [24]
    A robotic process automation model for order-handling optimization ...
    This study proposes a robotic process automation (RPA) model to streamline and optimize order-handling procedures in supply chain management.
  25. [25]
    [PDF] N95- 23763 Integrating Planning and Reactive Control
    SIPE-2 is a partial-order. AI planning sys- tem that supports planning at multiple lev- els of abstraction. It has the properties re- quired by our agent ...
  26. [26]
    [PDF] An HTN Planning System - SHOP2 - arXiv
    SHOP2 allows tasks and subtasks to be partially ordered; thus plans may interleave subtasks from different tasks. This often makes it possible to specify domain ...
  27. [27]
    [PDF] pyHiPOP – Hierarchical Partial-Order Planner. - IPC 2020
    The Hybrid Planning domains D considered here, consist of a set of fluents, a finite set of abstract and primitive tasks, and a set of methods M that describe ...
  28. [28]
    [PDF] Partial Order Temporal Plan Merging for Mobile Robot Tasks
    The ROSPlan framework [5] is a general framework that allows for a task planner to be embedded into the Robot Operating System (ROS), a middleware widely used ...
  29. [29]
    [PDF] Game AI as Storytelling - Georgia Institute of Technology
    Temporal and causal links create a partial ordering between actions, meaning that it is possible that some actions can occur during overlapping time intervals.
  30. [30]
    LLM Agent Frameworks for Autonomous AI (2025 Guide)
    Jul 7, 2025 · Discover the top LLM agent frameworks of 2025, including LangChain, AutoGen, and LiveChatAI. Learn how to build AI agents with tools, ...
  31. [31]
    [PDF] Comparison of Methods for Improving Search Efficiency in a Partial ...
    The search space in partial-order planning grows quickly with the number of subgoals and initial conditions, as well as less countable fac-.
  32. [32]
    [PDF] Flaw Selection Strategies for Partial-Order Planning
    The basic POP algorithm follows a greedy path in its search space suffering from local optima problems, from where it cannot recover, and is augmented with ...