We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
The construction of BackwardSearchGoal fails when goal is a StateConstrainedGoal. Here is a minimal (not) working example:
BackwardSearchGoal
StateConstrainedGoal
using PDDL import SymbolicPlanners as SP domain = @pddl("(define (domain d) (:predicates (something) ) (:action do-something :parameters () :precondition (and (not (something))) :effect (and something) ) )") problem = @pddl("(define (problem p) (:domain d) (:init (not (something))) (:goal (and (something))) (:constraints (and)) )") planner = SP.BackwardPlanner(heuristic=SP.HAddR()) planner(domain, initstate(domain, problem), PDDL.get_goal(problem)) # works planner(domain, initstate(domain, problem), SP.StateConstrainedGoal(problem)) # errors
The text was updated successfully, but these errors were encountered:
No branches or pull requests
The construction of
BackwardSearchGoal
fails when goal is aStateConstrainedGoal
. Here is a minimal (not) working example:The text was updated successfully, but these errors were encountered: