About PDDL in AI planning
问题 I am trying to solve a Pacman-style problem with a planner, using PDDL. I assume there are many food in the given map. I use exists to check if here is any other food in the map, but it does not work; why is that? Here is my problem file: (define (problem pacman-level-1) (:domain pacman_simple) ;; problem map ;; | 1 | 2 | 3 | ;; -|---|---|---| ;; a| P | G | F | ;; b| _ | _ | _ | ;; |---|---|---| (:objects a1 a2 a3 b1 b2 b3 - cell pacman - pacman ghost - ghost food1 - food food2 - food nofood