(define (problem disposal-problem)
  (:domain robot-disposal)
  (:objects
    item1 tomato2 item2 - object
    table bin plate - location
    switch - switchtype
  )

  (:init
    (at item1 table)
    (at tomato2 table)
    (at item2 table)
    (handempty)
    (dark)
  )

  (:goal
    (at item2 bin)
  )
)