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
I am getting this error:
Error unknown predicate and used in precondition of action
from this code:
(:action PICKUP_NORMAL :parameters (?b - Bot ?a - Aisle ?s - Shelf) ; The bot is in the aisle (At ?b ?a) ; The bot is not holding anything (not (Holding ?b)) ; The bot can pick up (CanPickUp ?a ?s) ; The shelf must not be weighed (not (WeighableShelf ?s)) :precondition (and (At ?b ?a) (and (not (Holding ?b)) (and (CanPickUp ?a ?s) (not (WeighableShelf ?s)) ) ) ) ; The bot is holding something (Holding ?b) ; The bot is holding the shelf (HoldingShelf ?b ?s) :effect (and (Holding ?b) (HoldingShelf ?b ?s) ) )
The text was updated successfully, but these errors were encountered:
How does the (:predicates ...) section in your domain file look like? Did you declare all predicates there?
(:predicates ...)
Sorry, something went wrong.
No branches or pull requests
I am getting this error:
from this code:
The text was updated successfully, but these errors were encountered: