cook_broccolini-0


Required Synsets

Name State Definition
broccolini.n.01 Matched
clove.n.03 Matched one of the small bulblets that can be split off of the axis of a larger garlic bulb
countertop.n.01 Matched the top side of a counter
floor.n.01 Matched the inside lower horizontal surface (as of a room, hallway, tent, or other structure)
frying_pan.n.01 Matched a pan used for frying foods
plate.n.04 Matched dish on which food is served or from which food is eaten
stove.n.01 Matched a kitchen appliance used for cooking food

Transition Paths By Task Scope Objects

graph TD;

Scene Matching Status

Scene Status Reason
Beechwood_0_garden Matched
Beechwood_0_int Matched
Beechwood_1_int Unmatched Cannot find suitable kitchen.
Benevolence_0_int Unmatched Cannot find suitable kitchen.
Benevolence_1_int Unmatched Cannot find suitable kitchen: kitchen_0 is missing 1 stove.n.01.
Benevolence_2_int Unmatched Cannot find suitable kitchen.
Ihlen_0_int Unmatched Cannot find suitable kitchen.
Ihlen_1_int Unmatched Cannot find suitable kitchen: kitchen_0 is missing 1 stove.n.01.
Merom_0_garden Unmatched Cannot find suitable kitchen.
Merom_0_int Unmatched Cannot find suitable kitchen.
Merom_1_int Unmatched Cannot find suitable kitchen: kitchen_0 is missing 1 countertop.n.01.
Pomaria_0_garden Unmatched Cannot find suitable kitchen.
Pomaria_0_int Unmatched Cannot find suitable kitchen.
Pomaria_1_int Matched
Pomaria_2_int Unmatched Cannot find suitable kitchen.
Rs_garden Unmatched Cannot find suitable kitchen: kitchen_0 is missing 1 stove.n.01.
Rs_int Unmatched Cannot find suitable kitchen: kitchen_0 is missing 1 stove.n.01.
Wainscott_0_garden Matched
Wainscott_0_int Matched
Wainscott_1_int Unmatched Cannot find suitable kitchen.
gates_bedroom Unmatched Cannot find suitable kitchen.
grocery_store_asian Unmatched Cannot find suitable kitchen.
grocery_store_cafe Unmatched Cannot find suitable kitchen.
grocery_store_convenience Unmatched Cannot find suitable kitchen.
grocery_store_half_stocked Unmatched Cannot find suitable kitchen.
hall_arch_wood Unmatched Cannot find suitable kitchen.
hall_conference_large Unmatched Cannot find suitable kitchen.
hall_glass_ceiling Unmatched Cannot find suitable kitchen.
hall_train_station Unmatched Cannot find suitable kitchen.
hotel_gym_spa Unmatched Cannot find suitable kitchen.
hotel_suite_large Unmatched Cannot find suitable kitchen.
hotel_suite_small Unmatched Cannot find suitable kitchen.
house_double_floor_lower Matched
house_double_floor_upper Unmatched Cannot find suitable kitchen.
house_single_floor Matched
office_bike Unmatched Cannot find suitable kitchen.
office_cubicles_left Unmatched Cannot find suitable kitchen.
office_cubicles_right Unmatched Cannot find suitable kitchen.
office_large Unmatched Cannot find suitable kitchen.
office_vendor_machine Unmatched Cannot find suitable kitchen.
restaurant_asian Matched
restaurant_brunch Matched
restaurant_cafeteria Matched
restaurant_diner Matched
restaurant_hotel Matched
restaurant_urban Matched
school_biology Unmatched Cannot find suitable kitchen.
school_chemistry Unmatched Cannot find suitable kitchen.
school_computer_lab_and_infirmary Unmatched Cannot find suitable kitchen.
school_geography Unmatched Cannot find suitable kitchen.
school_gym Unmatched Cannot find suitable kitchen.

Full Definition

(define (problem cook_broccolini-0)
    (:domain behavior-1k)

    (:objects
    	broccolini.n.01_1 broccolini.n.01_2 broccolini.n.01_3 - broccolini.n.01
    	frying_pan.n.01_1 - frying_pan.n.01
    	clove.n.03_1 clove.n.03_2 - clove.n.03
    	plate.n.04_1 - plate.n.04
    	stove.n.01_1 - stove.n.01
    	countertop.n.01_1 - countertop.n.01
    	floor.n.01_1 - floor.n.01
    	agent.n.01_1 - agent.n.01
    )
    
    (:init 
        (ontop broccolini.n.01_1 plate.n.04_1)
        (ontop broccolini.n.01_2 plate.n.04_1) 
        (ontop broccolini.n.01_3 plate.n.04_1) 
        (ontop clove.n.03_1 plate.n.04_1)
        (ontop clove.n.03_2 plate.n.04_1)
        (ontop plate.n.04_1 countertop.n.01_1)
        (ontop frying_pan.n.01_1 countertop.n.01_1) 
        (not  
            (cooked broccolini.n.01_1)
        ) 
        (inroom stove.n.01_1 kitchen) 
        (inroom countertop.n.01_1 kitchen) 
        (inroom floor.n.01_1 kitchen) 
        (ontop agent.n.01_1 floor.n.01_1)
    )
    
    (:goal 
        (and
            (forall
                (?clove.n.03 - clove.n.03)
                (and
                    (ontop ?clove.n.03 ?frying_pan.n.01_1)
                    (cooked ?clove.n.03)
                )
            )
            (forall
                (?broccolini.n.01 - broccolini.n.01)
                (and
                    (ontop ?broccolini.n.01 ?frying_pan.n.01_1)
                    (cooked ?broccolini.n.01)
                )
            )
            (ontop ?frying_pan.n.01_1 ?stove.n.01_1)
        )
    )
)

  

Debugging: All Possible Recipes Resulting in Future Synsets

graph TD;