Skip to content

Commit

Permalink
add pouring task
Browse files Browse the repository at this point in the history
  • Loading branch information
ChengshuLi committed May 17, 2024
1 parent b0c2b62 commit 9bc6f7b
Showing 1 changed file with 26 additions and 0 deletions.
26 changes: 26 additions & 0 deletions bddl/activity_definitions/affordance_pouring/problem0.bddl
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)
)
)
)

0 comments on commit 9bc6f7b

Please sign in to comment.