AIMay 8

Parallel Lifted Planning via Semi-Naive Datalog Evaluation

arXiv:2605.075844.4
AI Analysis

This work addresses the efficiency bottleneck of lifted planning for AI planning researchers, offering a parallel approach that significantly speeds up Datalog-based planning components.

The authors propose a parallel execution model for lifted classical planning using semi-naive Datalog evaluation, achieving up to a 6-fold speedup on 8 cores and solving more tasks than baselines, especially on hard-to-ground tasks where 97.6% of runtime is in Datalog execution.

Lifted classical planners operate directly on first-order planning tasks to avoid the computationally demanding grounding step. However, lifted planning is typically slower, as planners must repeatedly instantiate ground structures during search. Many core components of lifted classical planning, such as successor generation, axiom evaluation, task grounding, and delete-relaxed heuristics, have previously been studied through the lens of Datalog evaluation. We build upon this line of work and extend it by developing and analyzing an execution model with two levels of parallelism: rule-level parallelism and grounding parallelism. We further specialize this solver for planning-specific workloads with a grounder based on clique enumeration, which we extend to support semi-naive Datalog evaluation. Our experimental evaluation using greedy best-first search with the FF heuristic shows that our implementation already solves more tasks than the baselines on a single core, and the gap widens as additional cores are used. Moreover, on hard-to-ground tasks where on average 97.6% of the total runtime is spent in Datalog execution, the proposed execution model exhibits an average parallel fraction of 92.4%, while achieving up to a 6-fold speedup on 8 cores in practice.

Foundations

The foundational work for this paper's niche, ranked by how specifically the neighbourhood builds on it — not by global fame.

Your Notes