Can pyperplan plan with domains that use metrics ? #20
Replies: 4 comments 2 replies
-
No, this is "numerical planning" and goes beyond the "classical planning" fragment that Pyperplan supports. |
Beta Was this translation helpful? Give feedback.
2 replies
-
I know that https://sites.google.com/view/enhsp/ supports heuristics, but it's not implemented in Python. I'd also recommend the slack server. |
Beta Was this translation helpful? Give feedback.
0 replies
-
Hi,
I don’t know if absolutely need Python, but check the ENHSP planner: https://gitlab.com/enricos83/ENHSP-Public <https://gitlab.com/enricos83/ENHSP-Public>
Best wishes,
--
Felipe Meneguzzi
***@***.***
… On 7 Jun 2023, at 14:08, Malte Helmert ***@***.***> wrote:
I don't, but perhaps others that are following this do? If not, a good place to ask this question is the "planning community" slack server. It is linked from here: http://planning.domains/about <http://planning.domains/about>
—
Reply to this email directly, view it on GitHub <#20 (reply in thread)>, or unsubscribe <https://github.com/notifications/unsubscribe-auth/ABD3DUBISM6RTYXD3ERMJQDXKB4LTANCNFSM6AAAAAAY5ZZLUA>.
You are receiving this because you are subscribed to this thread.
|
Beta Was this translation helpful? Give feedback.
0 replies
-
Jendrik beat me to it.
--
Felipe Meneguzzi
***@***.***
… On 7 Jun 2023, at 14:33, Jendrik Seipp ***@***.***> wrote:
I know that https://sites.google.com/view/enhsp/ <https://sites.google.com/view/enhsp/> supports heuristics, but it's not implemented in Python. I'd also recommend the slack server.
—
Reply to this email directly, view it on GitHub <#20 (comment)>, or unsubscribe <https://github.com/notifications/unsubscribe-auth/ABD3DUHGPEBXVWSSELVSXUTXKB7KTANCNFSM6AAAAAAY5ZZLUA>.
You are receiving this because you are subscribed to this thread.
|
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hello, I'm trying to make plans for domains that use PDDL fluents like this :
(define (domain tequila)
(:requirements :typing :fluents)
(:types bottle )
(:functions
(amount ?b - bottle)
)
(:predicates
(bottle-finished ?b - bottle)
)
(:action drink
:parameters (?b - bottle)
:precondition (>= (amount ?b) 1)
:effect (decrease (amount ?b) 1)
)
(:action done-drinking
:parameters (?b - bottle)
:precondition (= (amount ?b) 0)
:effect (bottle-finished ?b)
)
)
Can pyperplan plan on these types of domains ?
Beta Was this translation helpful? Give feedback.
All reactions