Skip to content

Commit

Permalink
add test_cabinet task
Browse files Browse the repository at this point in the history
  • Loading branch information
ChengshuLi committed Sep 20, 2024
1 parent eee5815 commit ca77af0
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions bddl/activity_definitions/test_cabinet/problem0.bddl
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
(define (problem test_cabinet-0)
(:domain omnigibson)

(:objects
floor.n.01_1 - floor.n.01
agent.n.01_1 - agent.n.01
cabinet.n.01_1 - cabinet.n.01
)
(:init
(ontop agent.n.01_1 floor.n.01_1)
(inroom floor.n.01_1 living_room)
(inroom agent.n.01_1 living_room)
)

(:goal
(and
(open cabinet.n.01_1)
)
)
)

0 comments on commit ca77af0

Please sign in to comment.