Last active
November 14, 2024 14:27
-
-
Save gamesbyangelina/f75ca3d02407e943bcf1f35c4a9b6434 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(define (domain tutorialwk8tube) | |
(:types station person - object) | |
(:predicates | |
(at ?p - person ?x - station) | |
(connected ?x ?y - station) | |
) | |
(:action travel | |
; :parameters ??? | |
:precondition (and (at ?p ?x) (connected ?x ?y)) | |
; :effect ??? | |
) | |
) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment