potassco / plasp

🗺️ ASP planning tools for PDDL
https://potassco.org/
MIT License
28 stars 13 forks source link

Supports for Multi-shot Algorithms? #5

Closed dosydon closed 6 years ago

dosydon commented 6 years ago

In Section 3 of the paper "plasp 3: Towards Effective ASP Planning", several strategies for fixing the plan length are described. Does this code repository support multi-shot algorithms such as "algorithm A" and "algorithm B" described in the paper?

As far as I can tell, the code base supports parallel encoding variants using encodings in (https://github.com/potassco/plasp/tree/master/encodings/strips). But the strategy for fixing the plan length is limited to the "sequential strategy".

pluehne commented 6 years ago

Thanks for reaching out and your interest in plasp 😃!

You’ve pointed out correctly that as of now, this repository contains the translation part of plasp and some PDDL-related tools. The planning algorithms A and B are currently maintained by @javier-romero in another repository. You might want to look there for the actual planner.

If you have further questions, feel free to ask @javier-romero or me!

dosydon commented 6 years ago

Thanks very much!