| Name | State | Definition |
|---|---|---|
| dirt.n.02 | Matched | the state of being covered with unclean things |
| floor.n.01 | Matched | the inside lower horizontal surface (as of a room, hallway, tent, or other structure) |
| scrub_brush.n.01 | Matched | a brush with short stiff bristles for heavy cleaning |
| sink.n.01 | Matched | plumbing fixture consisting of a water basin fixed to a wall or floor and having a drainpipe |
| toilet.n.02 | Matched | a plumbing fixture for defecation and urination |
(define (problem cleaning_toilet-0)
(:domain behavior-1k)
(:objects
dirt.n.02_1 - dirt.n.02
toilet.n.02_1 - toilet.n.02
scrub_brush.n.01_1 - scrub_brush.n.01
sink.n.01_1 - sink.n.01
floor.n.01_1 - floor.n.01
agent.n.01_1 - agent.n.01
)
(:init
(covered toilet.n.02_1 dirt.n.02_1)
(ontop scrub_brush.n.01_1 sink.n.01_1)
(inroom toilet.n.02_1 bathroom)
(inroom sink.n.01_1 bathroom)
(inroom floor.n.01_1 bathroom)
(ontop agent.n.01_1 floor.n.01_1)
)
(:goal
(and
(not
(covered ?toilet.n.02_1 dirt.n.02_1)
)
)
)
)