Advertisement
froleyks

domain.pddl

Nov 14th, 2018
175
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.55 KB | None | 0 0
  1. (define (domain horb)
  2. (:types
  3. room - object
  4. )
  5.  
  6. (:predicates
  7. (clean ?room - room)
  8. (edge ?from ?to - room) ; undirected
  9. (at ?room - room)
  10. )
  11.  
  12. (:action moveAndClean
  13. :parameters(?from ?to - room)
  14. :precondition(and
  15. (not (clean ?to))
  16. (edge ?from ?to)
  17. (at ?from)
  18. )
  19. :effect(and
  20. (clean ?to)
  21. (not (at ?from))
  22. (at ?to)
  23. )
  24. )
  25.  
  26.  
  27. )
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement