Skip to content

Files

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
Aug 28, 2018
Nov 27, 2017
Apr 24, 2018

TableMover Domain

This domain is described in [Boutilier and Brafman, 2001]. The domain folder contains a domain generator called generate_domain.py. The difference between two TableMover domains is given by the number of tables in the problem since tables are used as constants. The generator creates domains using [Kovacs, 2012] notation, and it is used as follows:

python generate_domain.py <num-tables> <add-move-agent-action>

where num-tables is the number of tables in the domain, and add-move-agent-action indicates whether to add or not the action for moving agents between rooms (i.e. no need to be move the table to go from one room to another).

In the same domain folder you can find TableMover domains ranging from 1 to 4 tables (table_domain1.pddl, ..., table_domain4.pddl).

The problems folder also contains a generator inside the generator subfolder. The script is called generate_instance.py and it is used as follows:

python generate_instance.py <num-nodes> <num-edges> <num-blocks> <num-agents> <num-tables> <instance-number>

where:

  • num_nodes is the number of rooms.
  • num_edges is the number of links between rooms (they are randomly created).
  • num_agents is the number of agents.
  • num_tables is the number of tables.
  • instance_number is a number used to differentiate between two instances with the same number of nodes, edges, ...

References