(define (problem jam-03_02) (:domain jam) (:objects p1 p2 p3 h1 h2 red blue) (:init (next red blue) (out p1) (out p2) (out p3) (empty h1) (empty h2) (color p1 red) (color p2 red) (color p3 red) ) (:goal (and (out p1) (out p2) (out p3) (color p1 blue) (color p2 blue) (color p3 blue) ) ) )