Advertisement
Guest User

Problem

a guest
Oct 17th, 2017
58
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.00 KB | None | 0 0
  1. (define (problem courseworkproblem)
  2. (:domain courseworkdomain)
  3.  
  4. (:objects
  5.  
  6.  
  7. spaceship
  8. bridge
  9. engineeringRoom
  10. sickbay
  11. transporterRoom
  12. shuttleBay
  13. scienceLab
  14. cargoBay
  15.  
  16. captain
  17. engineers
  18. scienceOffers
  19. navigators
  20. medicalPersonnels
  21. securityStaff
  22. transpoterChief
  23. robots
  24. medicalSupplies
  25.  
  26. earth
  27. mars
  28. saturn
  29.  
  30. undamaged
  31. damaged
  32.  
  33.  
  34. )
  35.  
  36. (:init
  37.  
  38. (personLocation captain bridge)
  39. (personLocation engineers engineeringRoom)
  40. (personLocation medicalPersonnels sickbay)
  41. (medicalSupplies cargoBay)
  42. (shipLocation spaceship earth)
  43.  
  44. (path earth mars)
  45. (path mars earth)
  46. (path earth saturn)
  47. (path saturn earth)
  48.  
  49. (shipUndamaged damaged)
  50.  
  51. )
  52.  
  53. (:goal
  54. (and
  55.  
  56. (shipLocation spaceship mars)
  57. (shipUndamaged undamaged)
  58. (medicalSupplies sickBay)
  59. )
  60. )
  61. )
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement