installing_a_modem-0


Required Synsets

Name State Definition
cabinet.n.01 Matched a piece of furniture resembling a cupboard with doors and shelves and drawers; for storage or display
coffee_table.n.01 Matched low table where magazines can be placed and coffee or cocktails are served
floor.n.01 Matched the inside lower horizontal surface (as of a room, hallway, tent, or other structure)
modem.n.01 Matched (from a combination of MOdulate and DEModulate) electronic equipment consisting of a device used to connect computers by a telephone line
television_receiver.n.01 Matched an electronic device that receives television signals and displays them on a screen

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 living_room.
Benevolence_0_int Unmatched Cannot find suitable living_room.
Benevolence_1_int Unmatched Cannot find suitable living_room: living_room_0 is missing 2 cabinet.n.01, 1 coffee_table.n.01.
Benevolence_2_int Unmatched Cannot find suitable living_room.
Ihlen_0_int Unmatched Cannot find suitable living_room: living_room_0 is missing 1 television_receiver.n.01, 2 cabinet.n.01.
Ihlen_1_int Unmatched Cannot find suitable living_room: living_room_0 is missing 1 television_receiver.n.01, 1 cabinet.n.01.
Merom_0_garden Unmatched Cannot find suitable living_room: living_room_0 is missing 2 cabinet.n.01.
Merom_0_int Unmatched Cannot find suitable living_room: living_room_0 is missing 2 cabinet.n.01.
Merom_1_int Unmatched Cannot find suitable living_room: living_room_0 is missing 1 television_receiver.n.01, 1 cabinet.n.01.
Pomaria_0_garden Unmatched Cannot find suitable living_room: living_room_0 is missing 2 cabinet.n.01.
Pomaria_0_int Unmatched Cannot find suitable living_room: living_room_0 is missing 2 cabinet.n.01.
Pomaria_1_int Unmatched Cannot find suitable living_room: living_room_0 is missing 1 television_receiver.n.01, 2 cabinet.n.01.
Pomaria_2_int Unmatched Cannot find suitable living_room.
Rs_garden Matched
Rs_int Matched
Wainscott_0_garden Unmatched Cannot find suitable living_room: living_room_2 is missing 1 television_receiver.n.01, 1 cabinet.n.01; living_room_0 is missing 1 television_receiver.n.01, 1 cabinet.n.01; living_room_1 is missing 1 television_receiver.n.01, 1 cabinet.n.01.
Wainscott_0_int Unmatched Cannot find suitable living_room: living_room_0 is missing 1 television_receiver.n.01, 1 cabinet.n.01; living_room_1 is missing 1 television_receiver.n.01, 1 cabinet.n.01; living_room_2 is missing 1 television_receiver.n.01, 1 cabinet.n.01.
Wainscott_1_int Unmatched Cannot find suitable living_room.
gates_bedroom Unmatched Cannot find suitable living_room.
grocery_store_asian Unmatched Cannot find suitable living_room.
grocery_store_cafe Unmatched Cannot find suitable living_room.
grocery_store_convenience Unmatched Cannot find suitable living_room.
grocery_store_half_stocked Unmatched Cannot find suitable living_room.
hall_arch_wood Unmatched Cannot find suitable living_room.
hall_conference_large Unmatched Cannot find suitable living_room.
hall_glass_ceiling Unmatched Cannot find suitable living_room.
hall_train_station Unmatched Cannot find suitable living_room.
hotel_gym_spa Unmatched Cannot find suitable living_room.
hotel_suite_large Unmatched Cannot find suitable living_room.
hotel_suite_small Unmatched Cannot find suitable living_room.
house_double_floor_lower Unmatched Cannot find suitable living_room: living_room_0 is missing 1 cabinet.n.01.
house_double_floor_upper Unmatched Cannot find suitable living_room: living_room_0 is missing 1 television_receiver.n.01, 2 cabinet.n.01.
house_single_floor Unmatched Cannot find suitable living_room: living_room_1 is missing 1 television_receiver.n.01, 2 cabinet.n.01; living_room_0 is missing 2 cabinet.n.01.
office_bike Unmatched Cannot find suitable living_room.
office_cubicles_left Unmatched Cannot find suitable living_room.
office_cubicles_right Unmatched Cannot find suitable living_room.
office_large Unmatched Cannot find suitable living_room.
office_vendor_machine Unmatched Cannot find suitable living_room.
restaurant_asian Unmatched Cannot find suitable living_room.
restaurant_brunch Unmatched Cannot find suitable living_room.
restaurant_cafeteria Unmatched Cannot find suitable living_room.
restaurant_diner Unmatched Cannot find suitable living_room.
restaurant_hotel Unmatched Cannot find suitable living_room.
restaurant_urban Unmatched Cannot find suitable living_room.
school_biology Unmatched Cannot find suitable living_room.
school_chemistry Unmatched Cannot find suitable living_room.
school_computer_lab_and_infirmary Unmatched Cannot find suitable living_room.
school_geography Unmatched Cannot find suitable living_room.
school_gym Unmatched Cannot find suitable living_room.

Full Definition

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

    (:objects
     	modem.n.01_1 - modem.n.01
    	coffee_table.n.01_1 - coffee_table.n.01
    	cabinet.n.01_1 cabinet.n.01_2 - cabinet.n.01
        television_receiver.n.01_1 - television_receiver.n.01
    	floor.n.01_1 - floor.n.01
    	agent.n.01_1 - agent.n.01
    )
    
    (:init 
        (not 
            (toggled_on modem.n.01_1)
        ) 
        (ontop modem.n.01_1 coffee_table.n.01_1) 
        (inroom coffee_table.n.01_1 living_room) 
        (inroom cabinet.n.01_1 living_room) 
        (inroom cabinet.n.01_2 living_room) 
        (inroom television_receiver.n.01_1 living_room) 
        (inroom floor.n.01_1 living_room) 
        (ontop agent.n.01_1 floor.n.01_1)
    )
    
    (:goal 
        (and 
            (toggled_on ?modem.n.01_1) 
            (nextto ?modem.n.01_1 ?television_receiver.n.01_1)
            (exists 
                (?cabinet.n.01 - cabinet.n.01)
                (and 
                    (ontop ?television_receiver.n.01_1 ?cabinet.n.01)
                    (ontop ?modem.n.01_1 ?cabinet.n.01)
                )
            )
        )
    )
)

  

Debugging: All Possible Recipes Resulting in Future Synsets

graph TD;