Skip to content

Commit

Permalink
initial integration of mimicgen and b1k
Browse files Browse the repository at this point in the history
  • Loading branch information
ChengshuLi committed Sep 7, 2024
1 parent 373985c commit eee5815
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions bddl/activity_definitions/test_pen_book/problem0.bddl
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
(define (problem test_pen_book-0)
(:domain omnigibson)

(:objects
breakfast_table.n.01_1 - breakfast_table.n.01
hardback.n.01_1 - hardback.n.01
rubber_eraser.n.01_1 - rubber_eraser.n.01
floor.n.01_1 - floor.n.01
agent.n.01_1 - agent.n.01
)
(:init
(ontop hardback.n.01_1 breakfast_table.n.01_1)
(ontop rubber_eraser.n.01_1 breakfast_table.n.01_1)
(inroom breakfast_table.n.01_1 living_room)
(ontop agent.n.01_1 floor.n.01_1)
(inroom floor.n.01_1 living_room)
)

(:goal
(and
(ontop rubber_eraser.n.01_1 hardback.n.01_1)
)
)
)

0 comments on commit eee5815

Please sign in to comment.