-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
initial integration of mimicgen and b1k
- Loading branch information
1 parent
373985c
commit eee5815
Showing
1 changed file
with
24 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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) | ||
) | ||
) | ||
) |