-
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.
- Loading branch information
1 parent
b0c2b62
commit 9bc6f7b
Showing
1 changed file
with
26 additions
and
0 deletions.
There are no files selected for viewing
26 changes: 26 additions & 0 deletions
26
bddl/activity_definitions/affordance_pouring/problem0.bddl
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,26 @@ | ||
(define (problem affordance_pouring-0) | ||
(:domain omnigibson) | ||
(:objects | ||
water.n.06_1 - water.n.06 | ||
pitcher.n.02_1 - pitcher.n.02 | ||
cup.n.01_1 - cup.n.01 | ||
countertop.n.01_1 - countertop.n.01 | ||
agent.n.01_1 - agent.n.01 | ||
floor.n.01_1 - floor.n.01 | ||
) | ||
|
||
(:init | ||
(ontop pitcher.n.02_1 countertop.n.01_1) | ||
(ontop cup.n.01_1 countertop.n.01_1) | ||
(filled pitcher.n.02_1 water.n.06_1) | ||
(ontop agent.n.01_1 floor.n.01_1) | ||
(inroom countertop.n.01_1 kitchen) | ||
(inroom floor.n.01_1 kitchen) | ||
) | ||
|
||
(:goal | ||
(and | ||
(filled cup.n.01_1 water.n.06_1) | ||
) | ||
) | ||
) |