├── .env ├── .gitignore ├── .gitmodules ├── .vscode ├── launch.json └── settings.json ├── README.md ├── docker_scripts ├── .tmux.conf ├── .vimrc ├── Dockerfile ├── docker_build.sh ├── docker_run.sh ├── entrypoint.sh └── requirements.txt ├── experiments ├── basement_blocks_world │ ├── basement_blocks_world_streams │ │ ├── __init__.py │ │ └── streams.py │ ├── calibrate.py │ ├── calibration_confs.txt │ ├── data_generation │ │ ├── __init__.py │ │ ├── gen_basement_problems.py │ │ ├── make_problem.py │ │ ├── test │ │ │ ├── 2_1_2_0.yaml │ │ │ ├── 2_1_2_2.yaml │ │ │ ├── 2_2_2_1.yaml │ │ │ ├── 2_2_2_3.yaml │ │ │ ├── 3_1_2_10.yaml │ │ │ ├── 3_1_2_4.yaml │ │ │ ├── 3_1_3_11.yaml │ │ │ ├── 3_1_3_5.yaml │ │ │ ├── 3_2_2_12.yaml │ │ │ ├── 3_2_2_6.yaml │ │ │ ├── 3_2_3_13.yaml │ │ │ ├── 3_2_3_7.yaml │ │ │ ├── 3_3_2_14.yaml │ │ │ ├── 3_3_2_8.yaml │ │ │ ├── 3_3_3_15.yaml │ │ │ ├── 3_3_3_9.yaml │ │ │ ├── 4_1_2_16.yaml │ │ │ ├── 4_1_2_28.yaml │ │ │ ├── 4_1_3_17.yaml │ │ │ ├── 4_1_3_29.yaml │ │ │ ├── 4_1_4_18.yaml │ │ │ ├── 4_1_4_30.yaml │ │ │ ├── 4_2_2_19.yaml │ │ │ ├── 4_2_2_31.yaml │ │ │ ├── 4_2_3_20.yaml │ │ │ ├── 4_2_3_32.yaml │ │ │ ├── 4_2_4_21.yaml │ │ │ ├── 4_2_4_33.yaml │ │ │ ├── 4_3_2_22.yaml │ │ │ ├── 4_3_2_34.yaml │ │ │ ├── 4_3_3_23.yaml │ │ │ ├── 4_3_3_35.yaml │ │ │ ├── 4_3_4_24.yaml │ │ │ ├── 4_3_4_36.yaml │ │ │ ├── 4_4_2_25.yaml │ │ │ ├── 4_4_2_37.yaml │ │ │ ├── 4_4_3_26.yaml │ │ │ ├── 4_4_3_38.yaml │ │ │ ├── 4_4_4_27.yaml │ │ │ ├── 4_4_4_39.yaml │ │ │ ├── 5_1_2_40.yaml │ │ │ ├── 5_1_2_60.yaml │ │ │ ├── 5_1_3_41.yaml │ │ │ ├── 5_1_3_61.yaml │ │ │ ├── 5_1_4_42.yaml │ │ │ ├── 5_1_4_62.yaml │ │ │ ├── 5_1_5_43.yaml │ │ │ ├── 5_1_5_63.yaml │ │ │ ├── 5_2_2_44.yaml │ │ │ ├── 5_2_2_64.yaml │ │ │ ├── 5_2_3_45.yaml │ │ │ ├── 5_2_3_65.yaml │ │ │ ├── 5_2_4_46.yaml │ │ │ ├── 5_2_4_66.yaml │ │ │ ├── 5_2_5_47.yaml │ │ │ ├── 5_2_5_67.yaml │ │ │ ├── 5_3_2_48.yaml │ │ │ ├── 5_3_2_68.yaml │ │ │ ├── 5_3_3_49.yaml │ │ │ ├── 5_3_3_69.yaml │ │ │ ├── 5_3_4_50.yaml │ │ │ ├── 5_3_4_70.yaml │ │ │ ├── 5_3_5_51.yaml │ │ │ ├── 5_3_5_71.yaml │ │ │ ├── 5_4_2_52.yaml │ │ │ ├── 5_4_2_72.yaml │ │ │ ├── 5_4_3_53.yaml │ │ │ ├── 5_4_3_73.yaml │ │ │ ├── 5_4_4_54.yaml │ │ │ ├── 5_4_4_74.yaml │ │ │ ├── 5_4_5_55.yaml │ │ │ ├── 5_4_5_75.yaml │ │ │ ├── 5_5_2_56.yaml │ │ │ ├── 5_5_2_76.yaml │ │ │ ├── 5_5_3_57.yaml │ │ │ ├── 5_5_3_77.yaml │ │ │ ├── 5_5_4_58.yaml │ │ │ ├── 5_5_4_78.yaml │ │ │ ├── 5_5_5_59.yaml │ │ │ ├── 5_5_5_79.yaml │ │ │ ├── 6_1_2_110.yaml │ │ │ ├── 6_1_2_80.yaml │ │ │ ├── 6_1_3_111.yaml │ │ │ ├── 6_1_3_81.yaml │ │ │ ├── 6_1_4_112.yaml │ │ │ ├── 6_1_4_82.yaml │ │ │ ├── 6_1_5_113.yaml │ │ │ ├── 6_1_5_83.yaml │ │ │ ├── 6_1_6_114.yaml │ │ │ ├── 6_1_6_84.yaml │ │ │ ├── 6_2_2_115.yaml │ │ │ ├── 6_2_2_85.yaml │ │ │ ├── 6_2_3_116.yaml │ │ │ ├── 6_2_3_86.yaml │ │ │ ├── 6_2_4_117.yaml │ │ │ ├── 6_2_4_87.yaml │ │ │ ├── 6_2_5_118.yaml │ │ │ ├── 6_2_5_88.yaml │ │ │ ├── 6_2_6_119.yaml │ │ │ ├── 6_2_6_89.yaml │ │ │ ├── 6_3_2_120.yaml │ │ │ ├── 6_3_2_90.yaml │ │ │ ├── 6_3_3_121.yaml │ │ │ ├── 6_3_3_91.yaml │ │ │ ├── 6_3_4_122.yaml │ │ │ ├── 6_3_4_92.yaml │ │ │ ├── 6_3_5_123.yaml │ │ │ ├── 6_3_5_93.yaml │ │ │ ├── 6_3_6_124.yaml │ │ │ ├── 6_3_6_94.yaml │ │ │ ├── 6_4_2_125.yaml │ │ │ ├── 6_4_2_95.yaml │ │ │ ├── 6_4_3_126.yaml │ │ │ ├── 6_4_3_96.yaml │ │ │ ├── 6_4_4_127.yaml │ │ │ ├── 6_4_4_97.yaml │ │ │ ├── 6_4_5_128.yaml │ │ │ ├── 6_4_5_98.yaml │ │ │ ├── 6_4_6_129.yaml │ │ │ ├── 6_4_6_99.yaml │ │ │ ├── 6_5_2_100.yaml │ │ │ ├── 6_5_2_130.yaml │ │ │ ├── 6_5_3_101.yaml │ │ │ ├── 6_5_3_131.yaml │ │ │ ├── 6_5_4_102.yaml │ │ │ ├── 6_5_4_132.yaml │ │ │ ├── 6_5_5_103.yaml │ │ │ ├── 6_5_5_133.yaml │ │ │ ├── 6_5_6_104.yaml │ │ │ ├── 6_5_6_134.yaml │ │ │ ├── 6_6_2_105.yaml │ │ │ ├── 6_6_2_135.yaml │ │ │ ├── 6_6_3_106.yaml │ │ │ ├── 6_6_3_136.yaml │ │ │ ├── 6_6_4_107.yaml │ │ │ ├── 6_6_4_137.yaml │ │ │ ├── 6_6_5_108.yaml │ │ │ ├── 6_6_5_138.yaml │ │ │ ├── 6_6_6_109.yaml │ │ │ ├── 6_6_6_139.yaml │ │ │ ├── 7_1_2_140.yaml │ │ │ ├── 7_1_2_170.yaml │ │ │ ├── 7_1_3_141.yaml │ │ │ ├── 7_1_3_171.yaml │ │ │ ├── 7_1_4_142.yaml │ │ │ ├── 7_1_4_172.yaml │ │ │ ├── 7_1_5_143.yaml │ │ │ ├── 7_1_5_173.yaml │ │ │ ├── 7_1_6_144.yaml │ │ │ ├── 7_1_6_174.yaml │ │ │ ├── 7_2_2_145.yaml │ │ │ ├── 7_2_2_175.yaml │ │ │ ├── 7_2_3_146.yaml │ │ │ ├── 7_2_3_176.yaml │ │ │ ├── 7_2_4_147.yaml │ │ │ ├── 7_2_4_177.yaml │ │ │ ├── 7_2_5_148.yaml │ │ │ ├── 7_2_5_178.yaml │ │ │ ├── 7_2_6_149.yaml │ │ │ ├── 7_2_6_179.yaml │ │ │ ├── 7_3_2_150.yaml │ │ │ ├── 7_3_2_180.yaml │ │ │ ├── 7_3_3_151.yaml │ │ │ ├── 7_3_3_181.yaml │ │ │ ├── 7_3_4_152.yaml │ │ │ ├── 7_3_4_182.yaml │ │ │ ├── 7_3_5_153.yaml │ │ │ ├── 7_3_5_183.yaml │ │ │ ├── 7_3_6_154.yaml │ │ │ ├── 7_3_6_184.yaml │ │ │ ├── 7_4_2_155.yaml │ │ │ ├── 7_4_2_185.yaml │ │ │ ├── 7_4_3_156.yaml │ │ │ ├── 7_4_3_186.yaml │ │ │ ├── 7_4_4_157.yaml │ │ │ ├── 7_4_4_187.yaml │ │ │ ├── 7_4_5_158.yaml │ │ │ ├── 7_4_5_188.yaml │ │ │ ├── 7_4_6_159.yaml │ │ │ ├── 7_4_6_189.yaml │ │ │ ├── 7_5_2_160.yaml │ │ │ ├── 7_5_2_190.yaml │ │ │ ├── 7_5_3_161.yaml │ │ │ ├── 7_5_3_191.yaml │ │ │ ├── 7_5_4_162.yaml │ │ │ ├── 7_5_4_192.yaml │ │ │ ├── 7_5_5_163.yaml │ │ │ ├── 7_5_5_193.yaml │ │ │ ├── 7_5_6_164.yaml │ │ │ ├── 7_5_6_194.yaml │ │ │ ├── 7_6_2_165.yaml │ │ │ ├── 7_6_2_195.yaml │ │ │ ├── 7_6_3_166.yaml │ │ │ ├── 7_6_3_196.yaml │ │ │ ├── 7_6_4_167.yaml │ │ │ ├── 7_6_4_197.yaml │ │ │ ├── 7_6_5_168.yaml │ │ │ ├── 7_6_5_198.yaml │ │ │ ├── 7_6_6_169.yaml │ │ │ └── 7_6_6_199.yaml │ │ ├── test_problem.yaml │ │ └── train │ │ │ ├── 2_1_2_0.yaml │ │ │ ├── 2_1_2_2.yaml │ │ │ ├── 2_2_2_1.yaml │ │ │ ├── 2_2_2_3.yaml │ │ │ ├── 3_1_2_10.yaml │ │ │ ├── 3_1_2_4.yaml │ │ │ ├── 3_1_3_11.yaml │ │ │ ├── 3_1_3_5.yaml │ │ │ ├── 3_2_2_12.yaml │ │ │ ├── 3_2_2_6.yaml │ │ │ ├── 3_2_3_13.yaml │ │ │ ├── 3_2_3_7.yaml │ │ │ ├── 3_3_2_14.yaml │ │ │ ├── 3_3_2_8.yaml │ │ │ ├── 3_3_3_15.yaml │ │ │ ├── 3_3_3_9.yaml │ │ │ ├── 4_1_2_16.yaml │ │ │ ├── 4_1_2_28.yaml │ │ │ ├── 4_1_3_17.yaml │ │ │ ├── 4_1_3_29.yaml │ │ │ ├── 4_1_4_18.yaml │ │ │ ├── 4_1_4_30.yaml │ │ │ ├── 4_2_2_19.yaml │ │ │ ├── 4_2_2_31.yaml │ │ │ ├── 4_2_3_20.yaml │ │ │ ├── 4_2_3_32.yaml │ │ │ ├── 4_2_4_21.yaml │ │ │ ├── 4_2_4_33.yaml │ │ │ ├── 4_3_2_22.yaml │ │ │ ├── 4_3_2_34.yaml │ │ │ ├── 4_3_3_23.yaml │ │ │ ├── 4_3_3_35.yaml │ │ │ ├── 4_3_4_24.yaml │ │ │ ├── 4_3_4_36.yaml │ │ │ ├── 4_4_2_25.yaml │ │ │ ├── 4_4_2_37.yaml │ │ │ ├── 4_4_3_26.yaml │ │ │ ├── 4_4_3_38.yaml │ │ │ ├── 4_4_4_27.yaml │ │ │ ├── 4_4_4_39.yaml │ │ │ ├── 5_1_2_40.yaml │ │ │ ├── 5_1_2_60.yaml │ │ │ ├── 5_1_3_41.yaml │ │ │ ├── 5_1_3_61.yaml │ │ │ ├── 5_1_4_42.yaml │ │ │ ├── 5_1_4_62.yaml │ │ │ ├── 5_1_5_43.yaml │ │ │ ├── 5_1_5_63.yaml │ │ │ ├── 5_2_2_44.yaml │ │ │ ├── 5_2_2_64.yaml │ │ │ ├── 5_2_3_45.yaml │ │ │ ├── 5_2_3_65.yaml │ │ │ ├── 5_2_4_46.yaml │ │ │ ├── 5_2_4_66.yaml │ │ │ ├── 5_2_5_47.yaml │ │ │ ├── 5_2_5_67.yaml │ │ │ ├── 5_3_2_48.yaml │ │ │ ├── 5_3_2_68.yaml │ │ │ ├── 5_3_3_49.yaml │ │ │ ├── 5_3_3_69.yaml │ │ │ ├── 5_3_4_50.yaml │ │ │ ├── 5_3_4_70.yaml │ │ │ ├── 5_3_5_51.yaml │ │ │ ├── 5_3_5_71.yaml │ │ │ ├── 5_4_2_52.yaml │ │ │ ├── 5_4_2_72.yaml │ │ │ ├── 5_4_3_53.yaml │ │ │ ├── 5_4_3_73.yaml │ │ │ ├── 5_4_4_54.yaml │ │ │ ├── 5_4_4_74.yaml │ │ │ ├── 5_4_5_55.yaml │ │ │ ├── 5_4_5_75.yaml │ │ │ ├── 5_5_2_56.yaml │ │ │ ├── 5_5_2_76.yaml │ │ │ ├── 5_5_3_57.yaml │ │ │ ├── 5_5_3_77.yaml │ │ │ ├── 5_5_4_58.yaml │ │ │ ├── 5_5_4_78.yaml │ │ │ ├── 5_5_5_59.yaml │ │ │ ├── 5_5_5_79.yaml │ │ │ ├── 6_1_2_110.yaml │ │ │ ├── 6_1_2_80.yaml │ │ │ ├── 6_1_3_111.yaml │ │ │ ├── 6_1_3_81.yaml │ │ │ ├── 6_1_4_112.yaml │ │ │ ├── 6_1_4_82.yaml │ │ │ ├── 6_1_5_113.yaml │ │ │ ├── 6_1_5_83.yaml │ │ │ ├── 6_1_6_114.yaml │ │ │ ├── 6_1_6_84.yaml │ │ │ ├── 6_2_2_115.yaml │ │ │ ├── 6_2_2_85.yaml │ │ │ ├── 6_2_3_116.yaml │ │ │ ├── 6_2_3_86.yaml │ │ │ ├── 6_2_4_117.yaml │ │ │ ├── 6_2_4_87.yaml │ │ │ ├── 6_2_5_118.yaml │ │ │ ├── 6_2_5_88.yaml │ │ │ ├── 6_2_6_119.yaml │ │ │ ├── 6_2_6_89.yaml │ │ │ ├── 6_3_2_120.yaml │ │ │ ├── 6_3_2_90.yaml │ │ │ ├── 6_3_3_121.yaml │ │ │ ├── 6_3_3_91.yaml │ │ │ ├── 6_3_4_122.yaml │ │ │ ├── 6_3_4_92.yaml │ │ │ ├── 6_3_5_123.yaml │ │ │ ├── 6_3_5_93.yaml │ │ │ ├── 6_3_6_124.yaml │ │ │ ├── 6_3_6_94.yaml │ │ │ ├── 6_4_2_125.yaml │ │ │ ├── 6_4_2_95.yaml │ │ │ ├── 6_4_3_126.yaml │ │ │ ├── 6_4_3_96.yaml │ │ │ ├── 6_4_4_127.yaml │ │ │ ├── 6_4_4_97.yaml │ │ │ ├── 6_4_5_128.yaml │ │ │ ├── 6_4_5_98.yaml │ │ │ ├── 6_4_6_129.yaml │ │ │ ├── 6_4_6_99.yaml │ │ │ ├── 6_5_2_100.yaml │ │ │ ├── 6_5_2_130.yaml │ │ │ ├── 6_5_3_101.yaml │ │ │ ├── 6_5_3_131.yaml │ │ │ ├── 6_5_4_102.yaml │ │ │ ├── 6_5_4_132.yaml │ │ │ ├── 6_5_5_103.yaml │ │ │ ├── 6_5_5_133.yaml │ │ │ ├── 6_5_6_104.yaml │ │ │ ├── 6_5_6_134.yaml │ │ │ ├── 6_6_2_105.yaml │ │ │ ├── 6_6_2_135.yaml │ │ │ ├── 6_6_3_106.yaml │ │ │ ├── 6_6_3_136.yaml │ │ │ ├── 6_6_4_107.yaml │ │ │ ├── 6_6_4_137.yaml │ │ │ ├── 6_6_5_108.yaml │ │ │ ├── 6_6_5_138.yaml │ │ │ ├── 6_6_6_109.yaml │ │ │ ├── 6_6_6_139.yaml │ │ │ ├── 7_1_2_140.yaml │ │ │ ├── 7_1_2_170.yaml │ │ │ ├── 7_1_3_141.yaml │ │ │ ├── 7_1_3_171.yaml │ │ │ ├── 7_1_4_142.yaml │ │ │ ├── 7_1_4_172.yaml │ │ │ ├── 7_1_5_143.yaml │ │ │ ├── 7_1_5_173.yaml │ │ │ ├── 7_1_6_144.yaml │ │ │ ├── 7_1_6_174.yaml │ │ │ ├── 7_2_2_145.yaml │ │ │ ├── 7_2_2_175.yaml │ │ │ ├── 7_2_3_146.yaml │ │ │ ├── 7_2_3_176.yaml │ │ │ ├── 7_2_4_147.yaml │ │ │ ├── 7_2_4_177.yaml │ │ │ ├── 7_2_5_148.yaml │ │ │ ├── 7_2_5_178.yaml │ │ │ ├── 7_2_6_149.yaml │ │ │ ├── 7_2_6_179.yaml │ │ │ ├── 7_3_2_150.yaml │ │ │ ├── 7_3_2_180.yaml │ │ │ ├── 7_3_3_151.yaml │ │ │ ├── 7_3_3_181.yaml │ │ │ ├── 7_3_4_152.yaml │ │ │ ├── 7_3_4_182.yaml │ │ │ ├── 7_3_5_153.yaml │ │ │ ├── 7_3_5_183.yaml │ │ │ ├── 7_3_6_154.yaml │ │ │ ├── 7_3_6_184.yaml │ │ │ ├── 7_4_2_155.yaml │ │ │ ├── 7_4_2_185.yaml │ │ │ ├── 7_4_3_156.yaml │ │ │ ├── 7_4_3_186.yaml │ │ │ ├── 7_4_4_157.yaml │ │ │ ├── 7_4_4_187.yaml │ │ │ ├── 7_4_5_158.yaml │ │ │ ├── 7_4_5_188.yaml │ │ │ ├── 7_4_6_159.yaml │ │ │ ├── 7_4_6_189.yaml │ │ │ ├── 7_5_2_160.yaml │ │ │ ├── 7_5_2_190.yaml │ │ │ ├── 7_5_3_161.yaml │ │ │ ├── 7_5_3_191.yaml │ │ │ ├── 7_5_4_162.yaml │ │ │ ├── 7_5_4_192.yaml │ │ │ ├── 7_5_5_163.yaml │ │ │ ├── 7_5_5_193.yaml │ │ │ ├── 7_5_6_164.yaml │ │ │ ├── 7_5_6_194.yaml │ │ │ ├── 7_6_2_165.yaml │ │ │ ├── 7_6_2_195.yaml │ │ │ ├── 7_6_3_166.yaml │ │ │ ├── 7_6_3_196.yaml │ │ │ ├── 7_6_4_167.yaml │ │ │ ├── 7_6_4_197.yaml │ │ │ ├── 7_6_5_168.yaml │ │ │ ├── 7_6_5_198.yaml │ │ │ ├── 7_6_6_169.yaml │ │ │ └── 7_6_6_199.yaml │ ├── domain.pddl │ ├── problems │ │ ├── default_problem.yaml │ │ └── test_problem.yaml │ ├── run.py │ └── stream.pddl ├── blocks_world │ ├── blocks_world_streams │ │ ├── __init__.py │ │ ├── streams.py │ │ └── test_grasping.py │ ├── data_generation │ │ ├── __init__.py │ │ ├── clutter │ │ │ ├── test │ │ │ │ ├── 2_4_1_10.yaml │ │ │ │ ├── 2_4_1_18.yaml │ │ │ │ ├── 2_4_1_21.yaml │ │ │ │ ├── 2_4_1_41.yaml │ │ │ │ ├── 2_4_1_45.yaml │ │ │ │ ├── 2_4_1_47.yaml │ │ │ │ ├── 2_4_1_51.yaml │ │ │ │ ├── 2_4_1_67.yaml │ │ │ │ ├── 2_4_1_68.yaml │ │ │ │ ├── 2_4_1_86.yaml │ │ │ │ ├── 2_4_1_90.yaml │ │ │ │ ├── 2_4_1_93.yaml │ │ │ │ ├── 2_4_2_17.yaml │ │ │ │ ├── 2_4_2_22.yaml │ │ │ │ ├── 2_4_2_46.yaml │ │ │ │ ├── 2_4_2_57.yaml │ │ │ │ ├── 2_4_2_7.yaml │ │ │ │ ├── 2_4_2_70.yaml │ │ │ │ ├── 2_4_2_72.yaml │ │ │ │ ├── 2_4_2_9.yaml │ │ │ │ ├── 2_4_2_95.yaml │ │ │ │ ├── 2_4_2_98.yaml │ │ │ │ ├── 3_6_1_19.yaml │ │ │ │ ├── 3_6_1_48.yaml │ │ │ │ ├── 3_6_1_54.yaml │ │ │ │ ├── 3_6_1_55.yaml │ │ │ │ ├── 3_6_1_61.yaml │ │ │ │ ├── 3_6_1_64.yaml │ │ │ │ ├── 3_6_2_14.yaml │ │ │ │ ├── 3_6_2_6.yaml │ │ │ │ ├── 3_6_2_71.yaml │ │ │ │ ├── 3_6_2_8.yaml │ │ │ │ ├── 3_6_3_40.yaml │ │ │ │ ├── 3_6_3_50.yaml │ │ │ │ ├── 3_6_3_59.yaml │ │ │ │ ├── 3_6_3_85.yaml │ │ │ │ ├── 4_8_1_11.yaml │ │ │ │ ├── 4_8_1_32.yaml │ │ │ │ ├── 4_8_1_4.yaml │ │ │ │ ├── 4_8_1_42.yaml │ │ │ │ ├── 4_8_1_75.yaml │ │ │ │ ├── 4_8_1_89.yaml │ │ │ │ ├── 4_8_2_1.yaml │ │ │ │ ├── 4_8_2_28.yaml │ │ │ │ ├── 4_8_2_33.yaml │ │ │ │ ├── 4_8_2_49.yaml │ │ │ │ ├── 4_8_3_3.yaml │ │ │ │ ├── 4_8_3_31.yaml │ │ │ │ ├── 4_8_3_38.yaml │ │ │ │ ├── 4_8_3_99.yaml │ │ │ │ ├── 4_8_4_2.yaml │ │ │ │ ├── 4_8_4_27.yaml │ │ │ │ ├── 4_8_4_5.yaml │ │ │ │ ├── 4_8_4_58.yaml │ │ │ │ ├── 4_8_4_66.yaml │ │ │ │ ├── 5_10_1_13.yaml │ │ │ │ ├── 5_10_1_20.yaml │ │ │ │ ├── 5_10_1_23.yaml │ │ │ │ ├── 5_10_1_53.yaml │ │ │ │ ├── 5_10_1_63.yaml │ │ │ │ ├── 5_10_1_94.yaml │ │ │ │ ├── 5_10_2_25.yaml │ │ │ │ ├── 5_10_2_26.yaml │ │ │ │ ├── 5_10_2_44.yaml │ │ │ │ ├── 5_10_2_52.yaml │ │ │ │ ├── 5_10_2_60.yaml │ │ │ │ ├── 5_10_2_80.yaml │ │ │ │ ├── 5_10_2_88.yaml │ │ │ │ ├── 5_10_3_12.yaml │ │ │ │ ├── 5_10_3_30.yaml │ │ │ │ ├── 5_10_3_36.yaml │ │ │ │ ├── 5_10_3_73.yaml │ │ │ │ ├── 5_10_4_69.yaml │ │ │ │ ├── 5_10_4_79.yaml │ │ │ │ ├── 5_10_5_84.yaml │ │ │ │ ├── 5_10_5_92.yaml │ │ │ │ ├── 6_12_1_34.yaml │ │ │ │ ├── 6_12_1_62.yaml │ │ │ │ ├── 6_12_1_65.yaml │ │ │ │ ├── 6_12_1_74.yaml │ │ │ │ ├── 6_12_1_78.yaml │ │ │ │ ├── 6_12_2_16.yaml │ │ │ │ ├── 6_12_2_37.yaml │ │ │ │ ├── 6_12_2_39.yaml │ │ │ │ ├── 6_12_2_76.yaml │ │ │ │ ├── 6_12_2_77.yaml │ │ │ │ ├── 6_12_2_87.yaml │ │ │ │ ├── 6_12_3_0.yaml │ │ │ │ ├── 6_12_3_24.yaml │ │ │ │ ├── 6_12_4_35.yaml │ │ │ │ ├── 6_12_4_91.yaml │ │ │ │ ├── 6_12_5_15.yaml │ │ │ │ ├── 6_12_5_29.yaml │ │ │ │ ├── 6_12_5_56.yaml │ │ │ │ ├── 6_12_5_82.yaml │ │ │ │ ├── 6_12_5_83.yaml │ │ │ │ ├── 6_12_5_97.yaml │ │ │ │ ├── 6_12_6_43.yaml │ │ │ │ ├── 6_12_6_81.yaml │ │ │ │ └── 6_12_6_96.yaml │ │ │ └── train │ │ │ │ ├── 2_4_1_15.yaml │ │ │ │ ├── 2_4_1_20.yaml │ │ │ │ ├── 2_4_1_26.yaml │ │ │ │ ├── 2_4_1_27.yaml │ │ │ │ ├── 2_4_1_37.yaml │ │ │ │ ├── 2_4_1_43.yaml │ │ │ │ ├── 2_4_1_45.yaml │ │ │ │ ├── 2_4_1_47.yaml │ │ │ │ ├── 2_4_1_62.yaml │ │ │ │ ├── 2_4_1_75.yaml │ │ │ │ ├── 2_4_1_79.yaml │ │ │ │ ├── 2_4_1_82.yaml │ │ │ │ ├── 2_4_1_86.yaml │ │ │ │ ├── 2_4_1_95.yaml │ │ │ │ ├── 2_4_2_30.yaml │ │ │ │ ├── 2_4_2_34.yaml │ │ │ │ ├── 2_4_2_41.yaml │ │ │ │ ├── 2_4_2_56.yaml │ │ │ │ ├── 2_4_2_58.yaml │ │ │ │ ├── 2_4_2_64.yaml │ │ │ │ ├── 2_4_2_69.yaml │ │ │ │ ├── 2_4_2_7.yaml │ │ │ │ ├── 3_6_1_14.yaml │ │ │ │ ├── 3_6_1_22.yaml │ │ │ │ ├── 3_6_1_99.yaml │ │ │ │ ├── 3_6_2_11.yaml │ │ │ │ ├── 3_6_2_12.yaml │ │ │ │ ├── 3_6_2_23.yaml │ │ │ │ ├── 3_6_2_38.yaml │ │ │ │ ├── 3_6_2_50.yaml │ │ │ │ ├── 3_6_2_53.yaml │ │ │ │ ├── 3_6_2_8.yaml │ │ │ │ ├── 3_6_2_83.yaml │ │ │ │ ├── 3_6_2_89.yaml │ │ │ │ ├── 3_6_3_49.yaml │ │ │ │ ├── 3_6_3_59.yaml │ │ │ │ ├── 3_6_3_6.yaml │ │ │ │ ├── 3_6_3_60.yaml │ │ │ │ ├── 3_6_3_85.yaml │ │ │ │ ├── 3_6_3_91.yaml │ │ │ │ ├── 3_6_3_93.yaml │ │ │ │ ├── 3_6_3_98.yaml │ │ │ │ ├── 4_8_1_25.yaml │ │ │ │ ├── 4_8_1_29.yaml │ │ │ │ ├── 4_8_1_39.yaml │ │ │ │ ├── 4_8_1_52.yaml │ │ │ │ ├── 4_8_1_63.yaml │ │ │ │ ├── 4_8_1_84.yaml │ │ │ │ ├── 4_8_2_28.yaml │ │ │ │ ├── 4_8_2_4.yaml │ │ │ │ ├── 4_8_2_9.yaml │ │ │ │ ├── 4_8_2_92.yaml │ │ │ │ ├── 4_8_2_96.yaml │ │ │ │ ├── 4_8_3_24.yaml │ │ │ │ ├── 4_8_3_42.yaml │ │ │ │ ├── 4_8_3_55.yaml │ │ │ │ ├── 4_8_3_66.yaml │ │ │ │ ├── 4_8_3_72.yaml │ │ │ │ ├── 4_8_3_76.yaml │ │ │ │ ├── 4_8_3_87.yaml │ │ │ │ ├── 4_8_3_88.yaml │ │ │ │ ├── 4_8_3_90.yaml │ │ │ │ ├── 4_8_4_17.yaml │ │ │ │ ├── 4_8_4_36.yaml │ │ │ │ ├── 4_8_4_48.yaml │ │ │ │ ├── 4_8_4_54.yaml │ │ │ │ ├── 4_8_4_70.yaml │ │ │ │ ├── 4_8_4_73.yaml │ │ │ │ ├── 4_8_4_81.yaml │ │ │ │ ├── 5_10_1_19.yaml │ │ │ │ ├── 5_10_1_2.yaml │ │ │ │ ├── 5_10_1_21.yaml │ │ │ │ ├── 5_10_1_35.yaml │ │ │ │ ├── 5_10_1_57.yaml │ │ │ │ ├── 5_10_1_71.yaml │ │ │ │ ├── 5_10_1_74.yaml │ │ │ │ ├── 5_10_2_1.yaml │ │ │ │ ├── 5_10_2_44.yaml │ │ │ │ ├── 5_10_2_77.yaml │ │ │ │ ├── 5_10_2_94.yaml │ │ │ │ ├── 5_10_3_10.yaml │ │ │ │ ├── 5_10_3_13.yaml │ │ │ │ ├── 5_10_3_46.yaml │ │ │ │ ├── 5_10_3_51.yaml │ │ │ │ ├── 5_10_4_0.yaml │ │ │ │ ├── 5_10_4_3.yaml │ │ │ │ ├── 5_10_4_32.yaml │ │ │ │ ├── 5_10_4_40.yaml │ │ │ │ ├── 5_10_4_5.yaml │ │ │ │ ├── 5_10_4_61.yaml │ │ │ │ ├── 5_10_4_65.yaml │ │ │ │ ├── 5_10_4_67.yaml │ │ │ │ ├── 5_10_4_68.yaml │ │ │ │ ├── 5_10_4_80.yaml │ │ │ │ ├── 5_10_4_97.yaml │ │ │ │ ├── 5_10_5_16.yaml │ │ │ │ ├── 5_10_5_18.yaml │ │ │ │ ├── 5_10_5_31.yaml │ │ │ │ ├── 5_10_5_33.yaml │ │ │ │ └── 5_10_5_78.yaml │ │ ├── distractors │ │ │ └── test │ │ │ │ ├── 2_10_1_57.yaml │ │ │ │ ├── 2_10_2_17.yaml │ │ │ │ ├── 2_10_2_20.yaml │ │ │ │ ├── 2_10_2_50.yaml │ │ │ │ ├── 2_11_1_59.yaml │ │ │ │ ├── 2_11_2_39.yaml │ │ │ │ ├── 2_11_2_47.yaml │ │ │ │ ├── 2_12_1_71.yaml │ │ │ │ ├── 2_13_1_99.yaml │ │ │ │ ├── 2_13_2_67.yaml │ │ │ │ ├── 2_13_2_69.yaml │ │ │ │ ├── 2_14_1_52.yaml │ │ │ │ ├── 2_14_1_91.yaml │ │ │ │ ├── 2_15_2_41.yaml │ │ │ │ ├── 2_15_2_8.yaml │ │ │ │ ├── 2_16_1_51.yaml │ │ │ │ ├── 2_16_2_33.yaml │ │ │ │ ├── 2_18_1_42.yaml │ │ │ │ ├── 2_19_1_98.yaml │ │ │ │ ├── 3_10_2_93.yaml │ │ │ │ ├── 3_10_3_5.yaml │ │ │ │ ├── 3_10_3_78.yaml │ │ │ │ ├── 3_11_3_86.yaml │ │ │ │ ├── 3_12_2_30.yaml │ │ │ │ ├── 3_13_1_74.yaml │ │ │ │ ├── 3_14_1_38.yaml │ │ │ │ ├── 3_14_1_89.yaml │ │ │ │ ├── 3_14_2_15.yaml │ │ │ │ ├── 3_15_2_36.yaml │ │ │ │ ├── 3_16_3_11.yaml │ │ │ │ ├── 3_16_3_75.yaml │ │ │ │ ├── 3_17_1_60.yaml │ │ │ │ ├── 3_17_2_26.yaml │ │ │ │ ├── 3_18_2_64.yaml │ │ │ │ ├── 3_20_3_0.yaml │ │ │ │ ├── 4_10_3_6.yaml │ │ │ │ ├── 4_11_2_1.yaml │ │ │ │ ├── 4_12_3_34.yaml │ │ │ │ ├── 4_12_3_68.yaml │ │ │ │ ├── 4_12_4_55.yaml │ │ │ │ ├── 4_13_1_53.yaml │ │ │ │ ├── 4_13_3_54.yaml │ │ │ │ ├── 4_16_2_76.yaml │ │ │ │ ├── 4_16_2_83.yaml │ │ │ │ ├── 4_17_1_12.yaml │ │ │ │ ├── 4_17_1_32.yaml │ │ │ │ ├── 4_18_4_21.yaml │ │ │ │ ├── 4_19_1_44.yaml │ │ │ │ ├── 4_19_3_90.yaml │ │ │ │ ├── 4_20_3_2.yaml │ │ │ │ ├── 5_11_2_29.yaml │ │ │ │ ├── 5_11_4_22.yaml │ │ │ │ ├── 5_12_2_48.yaml │ │ │ │ ├── 5_12_5_92.yaml │ │ │ │ ├── 5_13_4_46.yaml │ │ │ │ ├── 5_15_3_49.yaml │ │ │ │ ├── 5_15_4_31.yaml │ │ │ │ ├── 5_16_1_19.yaml │ │ │ │ ├── 5_17_1_80.yaml │ │ │ │ ├── 5_17_3_27.yaml │ │ │ │ ├── 5_18_1_56.yaml │ │ │ │ ├── 5_19_3_58.yaml │ │ │ │ ├── 5_19_4_81.yaml │ │ │ │ ├── 5_19_5_84.yaml │ │ │ │ ├── 5_19_5_95.yaml │ │ │ │ ├── 5_20_2_37.yaml │ │ │ │ ├── 6_10_5_14.yaml │ │ │ │ ├── 6_10_6_85.yaml │ │ │ │ ├── 6_11_1_25.yaml │ │ │ │ ├── 6_11_1_63.yaml │ │ │ │ ├── 6_11_6_18.yaml │ │ │ │ ├── 6_12_1_94.yaml │ │ │ │ ├── 6_12_2_9.yaml │ │ │ │ ├── 6_13_2_40.yaml │ │ │ │ ├── 6_13_4_82.yaml │ │ │ │ ├── 6_14_5_70.yaml │ │ │ │ ├── 6_15_3_77.yaml │ │ │ │ ├── 6_16_1_23.yaml │ │ │ │ ├── 6_19_2_79.yaml │ │ │ │ ├── 6_20_1_3.yaml │ │ │ │ ├── 6_20_1_43.yaml │ │ │ │ ├── 6_20_2_97.yaml │ │ │ │ ├── 6_20_4_13.yaml │ │ │ │ ├── 7_11_1_35.yaml │ │ │ │ ├── 7_11_3_73.yaml │ │ │ │ ├── 7_12_5_72.yaml │ │ │ │ ├── 7_13_4_65.yaml │ │ │ │ ├── 7_14_4_87.yaml │ │ │ │ ├── 7_15_5_96.yaml │ │ │ │ ├── 7_16_1_28.yaml │ │ │ │ ├── 7_16_2_10.yaml │ │ │ │ ├── 7_17_1_4.yaml │ │ │ │ ├── 7_17_3_16.yaml │ │ │ │ ├── 7_17_4_88.yaml │ │ │ │ ├── 7_18_1_62.yaml │ │ │ │ ├── 7_18_1_7.yaml │ │ │ │ ├── 7_18_2_66.yaml │ │ │ │ ├── 7_19_1_24.yaml │ │ │ │ ├── 7_20_5_45.yaml │ │ │ │ └── 7_20_5_61.yaml │ │ ├── easy_distractors │ │ │ └── test │ │ │ │ ├── 2_10_2_12.yaml │ │ │ │ ├── 2_10_2_67.yaml │ │ │ │ ├── 2_10_2_84.yaml │ │ │ │ ├── 2_13_2_20.yaml │ │ │ │ ├── 2_13_2_64.yaml │ │ │ │ ├── 2_17_2_98.yaml │ │ │ │ ├── 2_18_2_68.yaml │ │ │ │ ├── 2_19_2_66.yaml │ │ │ │ ├── 2_20_2_29.yaml │ │ │ │ ├── 2_20_2_55.yaml │ │ │ │ ├── 2_21_2_2.yaml │ │ │ │ ├── 2_22_2_52.yaml │ │ │ │ ├── 2_23_2_19.yaml │ │ │ │ ├── 2_23_2_40.yaml │ │ │ │ ├── 2_23_2_48.yaml │ │ │ │ ├── 2_24_2_41.yaml │ │ │ │ ├── 2_25_2_27.yaml │ │ │ │ ├── 2_25_2_82.yaml │ │ │ │ ├── 2_26_2_63.yaml │ │ │ │ ├── 2_27_2_44.yaml │ │ │ │ ├── 2_27_2_95.yaml │ │ │ │ ├── 2_28_2_16.yaml │ │ │ │ ├── 2_28_2_43.yaml │ │ │ │ ├── 2_31_2_33.yaml │ │ │ │ ├── 2_32_2_31.yaml │ │ │ │ ├── 2_32_2_8.yaml │ │ │ │ ├── 2_33_2_1.yaml │ │ │ │ ├── 2_33_2_5.yaml │ │ │ │ ├── 2_34_2_11.yaml │ │ │ │ ├── 2_34_2_15.yaml │ │ │ │ ├── 2_34_2_69.yaml │ │ │ │ ├── 2_36_2_80.yaml │ │ │ │ ├── 2_38_2_65.yaml │ │ │ │ ├── 2_38_2_76.yaml │ │ │ │ ├── 2_40_2_39.yaml │ │ │ │ ├── 2_41_2_37.yaml │ │ │ │ ├── 2_42_2_62.yaml │ │ │ │ ├── 2_42_2_93.yaml │ │ │ │ ├── 2_43_2_4.yaml │ │ │ │ ├── 2_44_2_42.yaml │ │ │ │ ├── 2_44_2_7.yaml │ │ │ │ ├── 2_45_2_96.yaml │ │ │ │ ├── 2_46_2_36.yaml │ │ │ │ ├── 2_46_2_99.yaml │ │ │ │ ├── 2_47_2_14.yaml │ │ │ │ ├── 2_47_2_75.yaml │ │ │ │ ├── 2_48_2_60.yaml │ │ │ │ ├── 2_49_2_77.yaml │ │ │ │ ├── 2_50_2_35.yaml │ │ │ │ ├── 2_50_2_83.yaml │ │ │ │ ├── 3_13_2_23.yaml │ │ │ │ ├── 3_14_2_17.yaml │ │ │ │ ├── 3_17_2_0.yaml │ │ │ │ ├── 3_17_2_73.yaml │ │ │ │ ├── 3_18_2_34.yaml │ │ │ │ ├── 3_18_2_79.yaml │ │ │ │ ├── 3_18_2_85.yaml │ │ │ │ ├── 3_21_2_88.yaml │ │ │ │ ├── 3_22_2_51.yaml │ │ │ │ ├── 3_22_2_91.yaml │ │ │ │ ├── 3_23_2_6.yaml │ │ │ │ ├── 3_23_2_72.yaml │ │ │ │ ├── 3_23_2_97.yaml │ │ │ │ ├── 3_24_2_61.yaml │ │ │ │ ├── 3_25_2_9.yaml │ │ │ │ ├── 3_26_2_26.yaml │ │ │ │ ├── 3_26_2_78.yaml │ │ │ │ ├── 3_26_2_81.yaml │ │ │ │ ├── 3_27_2_30.yaml │ │ │ │ ├── 3_28_2_58.yaml │ │ │ │ ├── 3_29_2_70.yaml │ │ │ │ ├── 3_30_2_57.yaml │ │ │ │ ├── 3_30_2_92.yaml │ │ │ │ ├── 3_31_2_53.yaml │ │ │ │ ├── 3_33_2_50.yaml │ │ │ │ ├── 3_33_2_56.yaml │ │ │ │ ├── 3_35_2_22.yaml │ │ │ │ ├── 3_35_2_24.yaml │ │ │ │ ├── 3_37_2_89.yaml │ │ │ │ ├── 3_37_2_94.yaml │ │ │ │ ├── 3_40_2_13.yaml │ │ │ │ ├── 3_40_2_86.yaml │ │ │ │ ├── 3_41_2_28.yaml │ │ │ │ ├── 3_41_2_49.yaml │ │ │ │ ├── 3_42_2_47.yaml │ │ │ │ ├── 3_43_2_21.yaml │ │ │ │ ├── 3_43_2_25.yaml │ │ │ │ ├── 3_43_2_54.yaml │ │ │ │ ├── 3_43_2_71.yaml │ │ │ │ ├── 3_43_2_90.yaml │ │ │ │ ├── 3_44_2_18.yaml │ │ │ │ ├── 3_44_2_38.yaml │ │ │ │ ├── 3_44_2_45.yaml │ │ │ │ ├── 3_46_2_10.yaml │ │ │ │ ├── 3_47_2_46.yaml │ │ │ │ ├── 3_47_2_59.yaml │ │ │ │ ├── 3_48_2_3.yaml │ │ │ │ ├── 3_48_2_32.yaml │ │ │ │ ├── 3_50_2_74.yaml │ │ │ │ └── 3_50_2_87.yaml │ │ ├── generate_problems.py │ │ ├── generate_problems_test.py │ │ ├── make_problem.py │ │ ├── non_monotonic │ │ │ ├── test │ │ │ │ ├── 2_2_1_0.yaml │ │ │ │ ├── 2_2_1_1.yaml │ │ │ │ ├── 2_2_1_10.yaml │ │ │ │ ├── 2_2_1_11.yaml │ │ │ │ ├── 2_2_1_12.yaml │ │ │ │ ├── 2_2_1_13.yaml │ │ │ │ ├── 2_2_1_14.yaml │ │ │ │ ├── 2_2_1_15.yaml │ │ │ │ ├── 2_2_1_16.yaml │ │ │ │ ├── 2_2_1_17.yaml │ │ │ │ ├── 2_2_1_18.yaml │ │ │ │ ├── 2_2_1_19.yaml │ │ │ │ ├── 2_2_1_2.yaml │ │ │ │ ├── 2_2_1_3.yaml │ │ │ │ ├── 2_2_1_4.yaml │ │ │ │ ├── 2_2_1_5.yaml │ │ │ │ ├── 2_2_1_6.yaml │ │ │ │ ├── 2_2_1_7.yaml │ │ │ │ ├── 2_2_1_8.yaml │ │ │ │ ├── 2_2_1_9.yaml │ │ │ │ ├── 3_3_1_20.yaml │ │ │ │ ├── 3_3_1_21.yaml │ │ │ │ ├── 3_3_1_22.yaml │ │ │ │ ├── 3_3_1_23.yaml │ │ │ │ ├── 3_3_1_24.yaml │ │ │ │ ├── 3_3_1_25.yaml │ │ │ │ ├── 3_3_1_26.yaml │ │ │ │ ├── 3_3_1_27.yaml │ │ │ │ ├── 3_3_1_28.yaml │ │ │ │ ├── 3_3_1_29.yaml │ │ │ │ ├── 3_3_1_30.yaml │ │ │ │ ├── 3_3_1_31.yaml │ │ │ │ ├── 3_3_1_32.yaml │ │ │ │ ├── 3_3_1_33.yaml │ │ │ │ ├── 3_3_1_34.yaml │ │ │ │ ├── 3_3_1_35.yaml │ │ │ │ ├── 3_3_1_36.yaml │ │ │ │ ├── 3_3_1_37.yaml │ │ │ │ ├── 3_3_1_38.yaml │ │ │ │ ├── 3_3_1_39.yaml │ │ │ │ ├── 4_4_1_40.yaml │ │ │ │ ├── 4_4_1_41.yaml │ │ │ │ ├── 4_4_1_42.yaml │ │ │ │ ├── 4_4_1_43.yaml │ │ │ │ ├── 4_4_1_44.yaml │ │ │ │ ├── 4_4_1_45.yaml │ │ │ │ ├── 4_4_1_46.yaml │ │ │ │ ├── 4_4_1_47.yaml │ │ │ │ ├── 4_4_1_48.yaml │ │ │ │ ├── 4_4_1_49.yaml │ │ │ │ ├── 4_4_1_50.yaml │ │ │ │ ├── 4_4_1_51.yaml │ │ │ │ ├── 4_4_1_52.yaml │ │ │ │ ├── 4_4_1_53.yaml │ │ │ │ ├── 4_4_1_54.yaml │ │ │ │ ├── 4_4_1_55.yaml │ │ │ │ ├── 4_4_1_56.yaml │ │ │ │ ├── 4_4_1_57.yaml │ │ │ │ ├── 4_4_1_58.yaml │ │ │ │ ├── 4_4_1_59.yaml │ │ │ │ ├── 5_5_1_60.yaml │ │ │ │ ├── 5_5_1_61.yaml │ │ │ │ ├── 5_5_1_62.yaml │ │ │ │ ├── 5_5_1_63.yaml │ │ │ │ ├── 5_5_1_64.yaml │ │ │ │ ├── 5_5_1_65.yaml │ │ │ │ ├── 5_5_1_66.yaml │ │ │ │ ├── 5_5_1_67.yaml │ │ │ │ ├── 5_5_1_68.yaml │ │ │ │ ├── 5_5_1_69.yaml │ │ │ │ ├── 5_5_1_70.yaml │ │ │ │ ├── 5_5_1_71.yaml │ │ │ │ ├── 5_5_1_72.yaml │ │ │ │ ├── 5_5_1_73.yaml │ │ │ │ ├── 5_5_1_74.yaml │ │ │ │ ├── 5_5_1_75.yaml │ │ │ │ ├── 5_5_1_76.yaml │ │ │ │ ├── 5_5_1_77.yaml │ │ │ │ ├── 5_5_1_78.yaml │ │ │ │ ├── 5_5_1_79.yaml │ │ │ │ ├── 6_6_1_80.yaml │ │ │ │ ├── 6_6_1_81.yaml │ │ │ │ ├── 6_6_1_82.yaml │ │ │ │ ├── 6_6_1_83.yaml │ │ │ │ ├── 6_6_1_84.yaml │ │ │ │ ├── 6_6_1_85.yaml │ │ │ │ ├── 6_6_1_86.yaml │ │ │ │ ├── 6_6_1_87.yaml │ │ │ │ ├── 6_6_1_88.yaml │ │ │ │ ├── 6_6_1_89.yaml │ │ │ │ ├── 6_6_1_90.yaml │ │ │ │ ├── 6_6_1_91.yaml │ │ │ │ ├── 6_6_1_92.yaml │ │ │ │ ├── 6_6_1_93.yaml │ │ │ │ ├── 6_6_1_94.yaml │ │ │ │ ├── 6_6_1_95.yaml │ │ │ │ ├── 6_6_1_96.yaml │ │ │ │ ├── 6_6_1_97.yaml │ │ │ │ ├── 6_6_1_98.yaml │ │ │ │ └── 6_6_1_99.yaml │ │ │ └── train │ │ │ │ ├── 1_1_1_0.yaml │ │ │ │ ├── 1_1_1_1.yaml │ │ │ │ ├── 1_1_1_10.yaml │ │ │ │ ├── 1_1_1_11.yaml │ │ │ │ ├── 1_1_1_12.yaml │ │ │ │ ├── 1_1_1_13.yaml │ │ │ │ ├── 1_1_1_14.yaml │ │ │ │ ├── 1_1_1_15.yaml │ │ │ │ ├── 1_1_1_16.yaml │ │ │ │ ├── 1_1_1_17.yaml │ │ │ │ ├── 1_1_1_18.yaml │ │ │ │ ├── 1_1_1_19.yaml │ │ │ │ ├── 1_1_1_2.yaml │ │ │ │ ├── 1_1_1_20.yaml │ │ │ │ ├── 1_1_1_21.yaml │ │ │ │ ├── 1_1_1_22.yaml │ │ │ │ ├── 1_1_1_23.yaml │ │ │ │ ├── 1_1_1_24.yaml │ │ │ │ ├── 1_1_1_25.yaml │ │ │ │ ├── 1_1_1_26.yaml │ │ │ │ ├── 1_1_1_27.yaml │ │ │ │ ├── 1_1_1_28.yaml │ │ │ │ ├── 1_1_1_29.yaml │ │ │ │ ├── 1_1_1_3.yaml │ │ │ │ ├── 1_1_1_30.yaml │ │ │ │ ├── 1_1_1_31.yaml │ │ │ │ ├── 1_1_1_32.yaml │ │ │ │ ├── 1_1_1_4.yaml │ │ │ │ ├── 1_1_1_5.yaml │ │ │ │ ├── 1_1_1_6.yaml │ │ │ │ ├── 1_1_1_7.yaml │ │ │ │ ├── 1_1_1_8.yaml │ │ │ │ ├── 1_1_1_9.yaml │ │ │ │ ├── 2_2_1_33.yaml │ │ │ │ ├── 2_2_1_34.yaml │ │ │ │ ├── 2_2_1_35.yaml │ │ │ │ ├── 2_2_1_36.yaml │ │ │ │ ├── 2_2_1_37.yaml │ │ │ │ ├── 2_2_1_38.yaml │ │ │ │ ├── 2_2_1_39.yaml │ │ │ │ ├── 2_2_1_40.yaml │ │ │ │ ├── 2_2_1_41.yaml │ │ │ │ ├── 2_2_1_42.yaml │ │ │ │ ├── 2_2_1_43.yaml │ │ │ │ ├── 2_2_1_44.yaml │ │ │ │ ├── 2_2_1_45.yaml │ │ │ │ ├── 2_2_1_46.yaml │ │ │ │ ├── 2_2_1_47.yaml │ │ │ │ ├── 2_2_1_48.yaml │ │ │ │ ├── 2_2_1_49.yaml │ │ │ │ ├── 2_2_1_50.yaml │ │ │ │ ├── 2_2_1_51.yaml │ │ │ │ ├── 2_2_1_52.yaml │ │ │ │ ├── 2_2_1_53.yaml │ │ │ │ ├── 2_2_1_54.yaml │ │ │ │ ├── 2_2_1_55.yaml │ │ │ │ ├── 2_2_1_56.yaml │ │ │ │ ├── 2_2_1_57.yaml │ │ │ │ ├── 2_2_1_58.yaml │ │ │ │ ├── 2_2_1_59.yaml │ │ │ │ ├── 2_2_1_60.yaml │ │ │ │ ├── 2_2_1_61.yaml │ │ │ │ ├── 2_2_1_62.yaml │ │ │ │ ├── 2_2_1_63.yaml │ │ │ │ ├── 2_2_1_64.yaml │ │ │ │ ├── 2_2_1_65.yaml │ │ │ │ ├── 3_3_1_66.yaml │ │ │ │ ├── 3_3_1_67.yaml │ │ │ │ ├── 3_3_1_68.yaml │ │ │ │ ├── 3_3_1_69.yaml │ │ │ │ ├── 3_3_1_70.yaml │ │ │ │ ├── 3_3_1_71.yaml │ │ │ │ ├── 3_3_1_72.yaml │ │ │ │ ├── 3_3_1_73.yaml │ │ │ │ ├── 3_3_1_74.yaml │ │ │ │ ├── 3_3_1_75.yaml │ │ │ │ ├── 3_3_1_76.yaml │ │ │ │ ├── 3_3_1_77.yaml │ │ │ │ ├── 3_3_1_78.yaml │ │ │ │ ├── 3_3_1_79.yaml │ │ │ │ ├── 3_3_1_80.yaml │ │ │ │ ├── 3_3_1_81.yaml │ │ │ │ ├── 3_3_1_82.yaml │ │ │ │ ├── 3_3_1_83.yaml │ │ │ │ ├── 3_3_1_84.yaml │ │ │ │ ├── 3_3_1_85.yaml │ │ │ │ ├── 3_3_1_86.yaml │ │ │ │ ├── 3_3_1_87.yaml │ │ │ │ ├── 3_3_1_88.yaml │ │ │ │ ├── 3_3_1_89.yaml │ │ │ │ ├── 3_3_1_90.yaml │ │ │ │ ├── 3_3_1_91.yaml │ │ │ │ ├── 3_3_1_92.yaml │ │ │ │ ├── 3_3_1_93.yaml │ │ │ │ ├── 3_3_1_94.yaml │ │ │ │ ├── 3_3_1_95.yaml │ │ │ │ ├── 3_3_1_96.yaml │ │ │ │ ├── 3_3_1_97.yaml │ │ │ │ └── 3_3_1_98.yaml │ │ ├── random │ │ │ ├── test │ │ │ │ ├── 2_0_1_39.yaml │ │ │ │ ├── 2_0_1_98.yaml │ │ │ │ ├── 2_0_2_63.yaml │ │ │ │ ├── 2_1_1_10.yaml │ │ │ │ ├── 2_1_1_92.yaml │ │ │ │ ├── 2_2_2_65.yaml │ │ │ │ ├── 2_2_2_78.yaml │ │ │ │ ├── 2_3_1_26.yaml │ │ │ │ ├── 2_4_1_90.yaml │ │ │ │ ├── 2_4_1_96.yaml │ │ │ │ ├── 2_4_2_16.yaml │ │ │ │ ├── 2_4_2_54.yaml │ │ │ │ ├── 2_4_2_80.yaml │ │ │ │ ├── 2_5_1_85.yaml │ │ │ │ ├── 2_5_2_49.yaml │ │ │ │ ├── 2_5_2_86.yaml │ │ │ │ ├── 2_6_2_41.yaml │ │ │ │ ├── 2_6_2_42.yaml │ │ │ │ ├── 3_0_1_62.yaml │ │ │ │ ├── 3_0_3_11.yaml │ │ │ │ ├── 3_1_1_18.yaml │ │ │ │ ├── 3_1_1_47.yaml │ │ │ │ ├── 3_2_3_4.yaml │ │ │ │ ├── 3_2_3_83.yaml │ │ │ │ ├── 3_4_3_13.yaml │ │ │ │ ├── 3_4_3_28.yaml │ │ │ │ ├── 3_5_1_33.yaml │ │ │ │ ├── 3_5_1_48.yaml │ │ │ │ ├── 3_5_1_64.yaml │ │ │ │ ├── 3_5_3_38.yaml │ │ │ │ ├── 3_6_2_24.yaml │ │ │ │ ├── 3_6_2_66.yaml │ │ │ │ ├── 3_6_3_0.yaml │ │ │ │ ├── 3_6_3_36.yaml │ │ │ │ ├── 3_6_3_5.yaml │ │ │ │ ├── 3_6_3_69.yaml │ │ │ │ ├── 3_6_3_95.yaml │ │ │ │ ├── 4_0_2_23.yaml │ │ │ │ ├── 4_0_4_77.yaml │ │ │ │ ├── 4_1_1_50.yaml │ │ │ │ ├── 4_2_1_2.yaml │ │ │ │ ├── 4_3_1_75.yaml │ │ │ │ ├── 4_3_2_61.yaml │ │ │ │ ├── 4_3_3_93.yaml │ │ │ │ ├── 4_5_2_27.yaml │ │ │ │ ├── 4_5_3_43.yaml │ │ │ │ ├── 4_5_3_88.yaml │ │ │ │ ├── 4_6_1_34.yaml │ │ │ │ ├── 4_6_1_56.yaml │ │ │ │ ├── 4_6_2_15.yaml │ │ │ │ ├── 4_6_3_40.yaml │ │ │ │ ├── 5_0_1_82.yaml │ │ │ │ ├── 5_1_2_3.yaml │ │ │ │ ├── 5_1_2_67.yaml │ │ │ │ ├── 5_1_5_59.yaml │ │ │ │ ├── 5_1_5_74.yaml │ │ │ │ ├── 5_2_1_21.yaml │ │ │ │ ├── 5_2_2_94.yaml │ │ │ │ ├── 5_2_3_52.yaml │ │ │ │ ├── 5_3_3_99.yaml │ │ │ │ ├── 5_3_4_97.yaml │ │ │ │ ├── 5_3_5_87.yaml │ │ │ │ ├── 5_4_1_84.yaml │ │ │ │ ├── 5_4_5_46.yaml │ │ │ │ ├── 5_5_2_22.yaml │ │ │ │ ├── 6_1_2_14.yaml │ │ │ │ ├── 6_1_4_81.yaml │ │ │ │ ├── 6_2_1_29.yaml │ │ │ │ ├── 6_2_2_44.yaml │ │ │ │ ├── 6_2_4_60.yaml │ │ │ │ ├── 6_2_4_89.yaml │ │ │ │ ├── 6_2_6_57.yaml │ │ │ │ ├── 6_4_2_53.yaml │ │ │ │ ├── 6_4_6_9.yaml │ │ │ │ ├── 6_5_5_32.yaml │ │ │ │ ├── 6_5_5_51.yaml │ │ │ │ ├── 6_5_6_71.yaml │ │ │ │ ├── 6_6_4_19.yaml │ │ │ │ ├── 7_0_3_68.yaml │ │ │ │ ├── 7_1_5_76.yaml │ │ │ │ ├── 7_2_1_8.yaml │ │ │ │ ├── 7_2_3_20.yaml │ │ │ │ ├── 7_2_3_91.yaml │ │ │ │ ├── 7_2_6_12.yaml │ │ │ │ ├── 7_3_6_55.yaml │ │ │ │ ├── 7_4_1_1.yaml │ │ │ │ ├── 7_4_5_30.yaml │ │ │ │ ├── 7_4_5_37.yaml │ │ │ │ ├── 7_5_1_25.yaml │ │ │ │ ├── 7_5_1_35.yaml │ │ │ │ ├── 7_5_2_79.yaml │ │ │ │ ├── 7_5_3_31.yaml │ │ │ │ ├── 7_5_3_58.yaml │ │ │ │ ├── 7_5_4_70.yaml │ │ │ │ ├── 7_5_6_7.yaml │ │ │ │ ├── 7_5_6_73.yaml │ │ │ │ ├── 7_6_2_45.yaml │ │ │ │ ├── 7_6_3_6.yaml │ │ │ │ ├── 7_6_5_72.yaml │ │ │ │ └── 7_6_6_17.yaml │ │ │ └── train │ │ │ │ ├── 1_0_1_40.yaml │ │ │ │ ├── 1_0_1_84.yaml │ │ │ │ ├── 1_1_1_52.yaml │ │ │ │ ├── 1_2_1_29.yaml │ │ │ │ ├── 1_2_1_41.yaml │ │ │ │ ├── 1_2_1_75.yaml │ │ │ │ ├── 1_3_1_11.yaml │ │ │ │ ├── 1_3_1_22.yaml │ │ │ │ ├── 1_3_1_42.yaml │ │ │ │ ├── 1_4_1_10.yaml │ │ │ │ ├── 1_4_1_94.yaml │ │ │ │ ├── 1_6_1_26.yaml │ │ │ │ ├── 1_6_1_3.yaml │ │ │ │ ├── 2_0_2_69.yaml │ │ │ │ ├── 2_1_1_37.yaml │ │ │ │ ├── 2_1_1_83.yaml │ │ │ │ ├── 2_1_2_2.yaml │ │ │ │ ├── 2_1_2_39.yaml │ │ │ │ ├── 2_1_2_55.yaml │ │ │ │ ├── 2_2_1_68.yaml │ │ │ │ ├── 2_2_1_71.yaml │ │ │ │ ├── 2_2_2_18.yaml │ │ │ │ ├── 2_2_2_60.yaml │ │ │ │ ├── 2_2_2_81.yaml │ │ │ │ ├── 2_3_1_27.yaml │ │ │ │ ├── 2_3_2_90.yaml │ │ │ │ ├── 2_4_1_99.yaml │ │ │ │ ├── 2_5_1_30.yaml │ │ │ │ ├── 2_5_2_14.yaml │ │ │ │ ├── 2_5_2_31.yaml │ │ │ │ ├── 2_5_2_44.yaml │ │ │ │ ├── 2_5_2_61.yaml │ │ │ │ ├── 2_5_2_95.yaml │ │ │ │ ├── 2_5_2_96.yaml │ │ │ │ ├── 2_6_1_51.yaml │ │ │ │ ├── 2_6_1_88.yaml │ │ │ │ ├── 3_0_1_20.yaml │ │ │ │ ├── 3_0_3_48.yaml │ │ │ │ ├── 3_1_2_70.yaml │ │ │ │ ├── 3_2_3_43.yaml │ │ │ │ ├── 3_3_2_53.yaml │ │ │ │ ├── 3_3_3_32.yaml │ │ │ │ ├── 3_5_3_19.yaml │ │ │ │ ├── 3_5_3_50.yaml │ │ │ │ ├── 3_6_1_92.yaml │ │ │ │ ├── 3_6_3_1.yaml │ │ │ │ ├── 4_0_2_28.yaml │ │ │ │ ├── 4_0_2_85.yaml │ │ │ │ ├── 4_1_1_24.yaml │ │ │ │ ├── 4_1_2_12.yaml │ │ │ │ ├── 4_1_2_4.yaml │ │ │ │ ├── 4_2_1_23.yaml │ │ │ │ ├── 4_2_1_57.yaml │ │ │ │ ├── 4_2_2_54.yaml │ │ │ │ ├── 4_2_2_93.yaml │ │ │ │ ├── 4_4_3_82.yaml │ │ │ │ ├── 4_4_4_76.yaml │ │ │ │ ├── 4_5_2_59.yaml │ │ │ │ ├── 4_6_3_46.yaml │ │ │ │ ├── 5_0_1_58.yaml │ │ │ │ ├── 5_0_2_38.yaml │ │ │ │ ├── 5_0_3_21.yaml │ │ │ │ ├── 5_0_3_25.yaml │ │ │ │ ├── 5_0_3_66.yaml │ │ │ │ ├── 5_0_5_8.yaml │ │ │ │ ├── 5_1_1_78.yaml │ │ │ │ ├── 5_1_2_86.yaml │ │ │ │ ├── 5_1_3_89.yaml │ │ │ │ ├── 5_1_4_34.yaml │ │ │ │ ├── 5_1_5_33.yaml │ │ │ │ ├── 5_2_2_91.yaml │ │ │ │ ├── 5_2_3_0.yaml │ │ │ │ ├── 5_2_4_16.yaml │ │ │ │ ├── 5_3_1_65.yaml │ │ │ │ ├── 5_3_2_67.yaml │ │ │ │ ├── 5_3_3_73.yaml │ │ │ │ ├── 5_3_4_97.yaml │ │ │ │ ├── 5_3_4_98.yaml │ │ │ │ ├── 5_6_1_74.yaml │ │ │ │ ├── 5_6_3_80.yaml │ │ │ │ ├── 5_6_5_49.yaml │ │ │ │ ├── 5_6_5_63.yaml │ │ │ │ ├── 6_1_3_64.yaml │ │ │ │ ├── 6_1_6_79.yaml │ │ │ │ ├── 6_2_1_56.yaml │ │ │ │ ├── 6_2_2_35.yaml │ │ │ │ ├── 6_2_6_9.yaml │ │ │ │ ├── 6_3_3_36.yaml │ │ │ │ ├── 6_3_3_87.yaml │ │ │ │ ├── 6_3_6_72.yaml │ │ │ │ ├── 6_4_3_45.yaml │ │ │ │ ├── 6_5_1_47.yaml │ │ │ │ ├── 6_5_2_13.yaml │ │ │ │ ├── 6_5_6_15.yaml │ │ │ │ ├── 6_5_6_62.yaml │ │ │ │ ├── 6_6_1_6.yaml │ │ │ │ ├── 6_6_1_7.yaml │ │ │ │ ├── 6_6_2_17.yaml │ │ │ │ ├── 6_6_3_5.yaml │ │ │ │ └── 6_6_6_77.yaml │ │ ├── small_test_set │ │ │ ├── 1_0_1_40.yaml │ │ │ ├── 1_0_1_84.yaml │ │ │ ├── 2_0_2_69.yaml │ │ │ ├── 2_1_2_2.yaml │ │ │ ├── 2_1_2_39.yaml │ │ │ └── 2_1_2_55.yaml │ │ ├── sorting │ │ │ ├── test │ │ │ │ ├── 10_0_1_100.yaml │ │ │ │ ├── 10_0_1_101.yaml │ │ │ │ ├── 10_0_1_102.yaml │ │ │ │ ├── 10_0_1_103.yaml │ │ │ │ ├── 10_0_1_104.yaml │ │ │ │ ├── 10_0_1_105.yaml │ │ │ │ ├── 10_0_1_106.yaml │ │ │ │ ├── 10_0_1_107.yaml │ │ │ │ ├── 10_0_1_96.yaml │ │ │ │ ├── 10_0_1_97.yaml │ │ │ │ ├── 10_0_1_98.yaml │ │ │ │ ├── 10_0_1_99.yaml │ │ │ │ ├── 2_0_1_0.yaml │ │ │ │ ├── 2_0_1_1.yaml │ │ │ │ ├── 2_0_1_10.yaml │ │ │ │ ├── 2_0_1_11.yaml │ │ │ │ ├── 2_0_1_2.yaml │ │ │ │ ├── 2_0_1_3.yaml │ │ │ │ ├── 2_0_1_4.yaml │ │ │ │ ├── 2_0_1_5.yaml │ │ │ │ ├── 2_0_1_6.yaml │ │ │ │ ├── 2_0_1_7.yaml │ │ │ │ ├── 2_0_1_8.yaml │ │ │ │ ├── 2_0_1_9.yaml │ │ │ │ ├── 3_0_1_12.yaml │ │ │ │ ├── 3_0_1_13.yaml │ │ │ │ ├── 3_0_1_14.yaml │ │ │ │ ├── 3_0_1_15.yaml │ │ │ │ ├── 3_0_1_16.yaml │ │ │ │ ├── 3_0_1_17.yaml │ │ │ │ ├── 3_0_1_18.yaml │ │ │ │ ├── 3_0_1_19.yaml │ │ │ │ ├── 3_0_1_20.yaml │ │ │ │ ├── 3_0_1_21.yaml │ │ │ │ ├── 3_0_1_22.yaml │ │ │ │ ├── 3_0_1_23.yaml │ │ │ │ ├── 4_0_1_24.yaml │ │ │ │ ├── 4_0_1_25.yaml │ │ │ │ ├── 4_0_1_26.yaml │ │ │ │ ├── 4_0_1_27.yaml │ │ │ │ ├── 4_0_1_28.yaml │ │ │ │ ├── 4_0_1_29.yaml │ │ │ │ ├── 4_0_1_30.yaml │ │ │ │ ├── 4_0_1_31.yaml │ │ │ │ ├── 4_0_1_32.yaml │ │ │ │ ├── 4_0_1_33.yaml │ │ │ │ ├── 4_0_1_34.yaml │ │ │ │ ├── 4_0_1_35.yaml │ │ │ │ ├── 5_0_1_36.yaml │ │ │ │ ├── 5_0_1_37.yaml │ │ │ │ ├── 5_0_1_38.yaml │ │ │ │ ├── 5_0_1_39.yaml │ │ │ │ ├── 5_0_1_40.yaml │ │ │ │ ├── 5_0_1_41.yaml │ │ │ │ ├── 5_0_1_42.yaml │ │ │ │ ├── 5_0_1_43.yaml │ │ │ │ ├── 5_0_1_44.yaml │ │ │ │ ├── 5_0_1_45.yaml │ │ │ │ ├── 5_0_1_46.yaml │ │ │ │ ├── 5_0_1_47.yaml │ │ │ │ ├── 6_0_1_48.yaml │ │ │ │ ├── 6_0_1_49.yaml │ │ │ │ ├── 6_0_1_50.yaml │ │ │ │ ├── 6_0_1_51.yaml │ │ │ │ ├── 6_0_1_52.yaml │ │ │ │ ├── 6_0_1_53.yaml │ │ │ │ ├── 6_0_1_54.yaml │ │ │ │ ├── 6_0_1_55.yaml │ │ │ │ ├── 6_0_1_56.yaml │ │ │ │ ├── 6_0_1_57.yaml │ │ │ │ ├── 6_0_1_58.yaml │ │ │ │ ├── 6_0_1_59.yaml │ │ │ │ ├── 7_0_1_60.yaml │ │ │ │ ├── 7_0_1_61.yaml │ │ │ │ ├── 7_0_1_62.yaml │ │ │ │ ├── 7_0_1_63.yaml │ │ │ │ ├── 7_0_1_64.yaml │ │ │ │ ├── 7_0_1_65.yaml │ │ │ │ ├── 7_0_1_66.yaml │ │ │ │ ├── 7_0_1_67.yaml │ │ │ │ ├── 7_0_1_68.yaml │ │ │ │ ├── 7_0_1_69.yaml │ │ │ │ ├── 7_0_1_70.yaml │ │ │ │ ├── 7_0_1_71.yaml │ │ │ │ ├── 8_0_1_72.yaml │ │ │ │ ├── 8_0_1_73.yaml │ │ │ │ ├── 8_0_1_74.yaml │ │ │ │ ├── 8_0_1_75.yaml │ │ │ │ ├── 8_0_1_76.yaml │ │ │ │ ├── 8_0_1_77.yaml │ │ │ │ ├── 8_0_1_78.yaml │ │ │ │ ├── 8_0_1_79.yaml │ │ │ │ ├── 8_0_1_80.yaml │ │ │ │ ├── 8_0_1_81.yaml │ │ │ │ ├── 8_0_1_82.yaml │ │ │ │ ├── 8_0_1_83.yaml │ │ │ │ ├── 9_0_1_84.yaml │ │ │ │ ├── 9_0_1_85.yaml │ │ │ │ ├── 9_0_1_86.yaml │ │ │ │ ├── 9_0_1_87.yaml │ │ │ │ ├── 9_0_1_88.yaml │ │ │ │ ├── 9_0_1_89.yaml │ │ │ │ ├── 9_0_1_90.yaml │ │ │ │ ├── 9_0_1_91.yaml │ │ │ │ ├── 9_0_1_92.yaml │ │ │ │ ├── 9_0_1_93.yaml │ │ │ │ ├── 9_0_1_94.yaml │ │ │ │ └── 9_0_1_95.yaml │ │ │ ├── train-smaller │ │ │ │ ├── 10_0_1_100.yaml │ │ │ │ ├── 10_0_1_101.yaml │ │ │ │ ├── 10_0_1_102.yaml │ │ │ │ ├── 10_0_1_103.yaml │ │ │ │ ├── 10_0_1_104.yaml │ │ │ │ ├── 10_0_1_105.yaml │ │ │ │ ├── 10_0_1_106.yaml │ │ │ │ ├── 10_0_1_107.yaml │ │ │ │ ├── 10_0_1_96.yaml │ │ │ │ ├── 10_0_1_97.yaml │ │ │ │ ├── 10_0_1_98.yaml │ │ │ │ ├── 10_0_1_99.yaml │ │ │ │ ├── 2_0_1_0.yaml │ │ │ │ ├── 2_0_1_1.yaml │ │ │ │ ├── 2_0_1_10.yaml │ │ │ │ ├── 2_0_1_11.yaml │ │ │ │ ├── 2_0_1_2.yaml │ │ │ │ ├── 2_0_1_3.yaml │ │ │ │ ├── 2_0_1_4.yaml │ │ │ │ ├── 2_0_1_5.yaml │ │ │ │ ├── 2_0_1_6.yaml │ │ │ │ ├── 2_0_1_7.yaml │ │ │ │ ├── 2_0_1_8.yaml │ │ │ │ ├── 2_0_1_9.yaml │ │ │ │ ├── 3_0_1_12.yaml │ │ │ │ ├── 3_0_1_13.yaml │ │ │ │ ├── 3_0_1_14.yaml │ │ │ │ ├── 3_0_1_15.yaml │ │ │ │ ├── 3_0_1_16.yaml │ │ │ │ ├── 3_0_1_17.yaml │ │ │ │ ├── 3_0_1_18.yaml │ │ │ │ ├── 3_0_1_19.yaml │ │ │ │ ├── 3_0_1_20.yaml │ │ │ │ ├── 3_0_1_21.yaml │ │ │ │ ├── 3_0_1_22.yaml │ │ │ │ ├── 3_0_1_23.yaml │ │ │ │ ├── 4_0_1_24.yaml │ │ │ │ ├── 4_0_1_25.yaml │ │ │ │ ├── 4_0_1_26.yaml │ │ │ │ ├── 4_0_1_27.yaml │ │ │ │ ├── 4_0_1_28.yaml │ │ │ │ ├── 4_0_1_29.yaml │ │ │ │ ├── 4_0_1_30.yaml │ │ │ │ ├── 4_0_1_31.yaml │ │ │ │ ├── 4_0_1_32.yaml │ │ │ │ ├── 4_0_1_33.yaml │ │ │ │ ├── 4_0_1_34.yaml │ │ │ │ ├── 4_0_1_35.yaml │ │ │ │ ├── 5_0_1_36.yaml │ │ │ │ ├── 5_0_1_37.yaml │ │ │ │ ├── 5_0_1_38.yaml │ │ │ │ ├── 5_0_1_39.yaml │ │ │ │ ├── 5_0_1_40.yaml │ │ │ │ ├── 5_0_1_41.yaml │ │ │ │ ├── 5_0_1_42.yaml │ │ │ │ ├── 5_0_1_43.yaml │ │ │ │ ├── 5_0_1_44.yaml │ │ │ │ ├── 5_0_1_45.yaml │ │ │ │ ├── 5_0_1_46.yaml │ │ │ │ ├── 5_0_1_47.yaml │ │ │ │ ├── 6_0_1_48.yaml │ │ │ │ ├── 6_0_1_49.yaml │ │ │ │ ├── 6_0_1_50.yaml │ │ │ │ ├── 6_0_1_51.yaml │ │ │ │ ├── 6_0_1_52.yaml │ │ │ │ ├── 6_0_1_53.yaml │ │ │ │ ├── 6_0_1_54.yaml │ │ │ │ ├── 6_0_1_55.yaml │ │ │ │ ├── 6_0_1_56.yaml │ │ │ │ ├── 6_0_1_57.yaml │ │ │ │ ├── 6_0_1_58.yaml │ │ │ │ ├── 6_0_1_59.yaml │ │ │ │ ├── 7_0_1_60.yaml │ │ │ │ ├── 7_0_1_61.yaml │ │ │ │ ├── 7_0_1_62.yaml │ │ │ │ ├── 7_0_1_63.yaml │ │ │ │ ├── 7_0_1_64.yaml │ │ │ │ ├── 7_0_1_65.yaml │ │ │ │ ├── 7_0_1_66.yaml │ │ │ │ ├── 7_0_1_67.yaml │ │ │ │ ├── 7_0_1_68.yaml │ │ │ │ ├── 7_0_1_69.yaml │ │ │ │ ├── 7_0_1_70.yaml │ │ │ │ ├── 7_0_1_71.yaml │ │ │ │ ├── 8_0_1_72.yaml │ │ │ │ ├── 8_0_1_73.yaml │ │ │ │ ├── 8_0_1_74.yaml │ │ │ │ ├── 8_0_1_75.yaml │ │ │ │ ├── 8_0_1_76.yaml │ │ │ │ ├── 8_0_1_77.yaml │ │ │ │ ├── 8_0_1_78.yaml │ │ │ │ ├── 8_0_1_79.yaml │ │ │ │ ├── 8_0_1_80.yaml │ │ │ │ ├── 8_0_1_81.yaml │ │ │ │ ├── 8_0_1_82.yaml │ │ │ │ ├── 8_0_1_83.yaml │ │ │ │ ├── 9_0_1_84.yaml │ │ │ │ ├── 9_0_1_85.yaml │ │ │ │ ├── 9_0_1_86.yaml │ │ │ │ ├── 9_0_1_87.yaml │ │ │ │ ├── 9_0_1_88.yaml │ │ │ │ ├── 9_0_1_89.yaml │ │ │ │ ├── 9_0_1_90.yaml │ │ │ │ ├── 9_0_1_91.yaml │ │ │ │ ├── 9_0_1_92.yaml │ │ │ │ ├── 9_0_1_93.yaml │ │ │ │ ├── 9_0_1_94.yaml │ │ │ │ └── 9_0_1_95.yaml │ │ │ └── train │ │ │ │ ├── 2_0_1_0.yaml │ │ │ │ ├── 2_0_1_1.yaml │ │ │ │ ├── 2_0_1_10.yaml │ │ │ │ ├── 2_0_1_11.yaml │ │ │ │ ├── 2_0_1_12.yaml │ │ │ │ ├── 2_0_1_13.yaml │ │ │ │ ├── 2_0_1_14.yaml │ │ │ │ ├── 2_0_1_15.yaml │ │ │ │ ├── 2_0_1_16.yaml │ │ │ │ ├── 2_0_1_2.yaml │ │ │ │ ├── 2_0_1_3.yaml │ │ │ │ ├── 2_0_1_4.yaml │ │ │ │ ├── 2_0_1_5.yaml │ │ │ │ ├── 2_0_1_6.yaml │ │ │ │ ├── 2_0_1_7.yaml │ │ │ │ ├── 2_0_1_8.yaml │ │ │ │ ├── 2_0_1_9.yaml │ │ │ │ ├── 3_0_1_17.yaml │ │ │ │ ├── 3_0_1_18.yaml │ │ │ │ ├── 3_0_1_19.yaml │ │ │ │ ├── 3_0_1_20.yaml │ │ │ │ ├── 3_0_1_21.yaml │ │ │ │ ├── 3_0_1_22.yaml │ │ │ │ ├── 3_0_1_23.yaml │ │ │ │ ├── 3_0_1_24.yaml │ │ │ │ ├── 3_0_1_25.yaml │ │ │ │ ├── 3_0_1_26.yaml │ │ │ │ ├── 3_0_1_27.yaml │ │ │ │ ├── 3_0_1_28.yaml │ │ │ │ ├── 3_0_1_29.yaml │ │ │ │ ├── 3_0_1_30.yaml │ │ │ │ ├── 3_0_1_31.yaml │ │ │ │ ├── 3_0_1_32.yaml │ │ │ │ ├── 3_0_1_33.yaml │ │ │ │ ├── 4_0_1_34.yaml │ │ │ │ ├── 4_0_1_35.yaml │ │ │ │ ├── 4_0_1_36.yaml │ │ │ │ ├── 4_0_1_37.yaml │ │ │ │ ├── 4_0_1_38.yaml │ │ │ │ ├── 4_0_1_39.yaml │ │ │ │ ├── 4_0_1_40.yaml │ │ │ │ ├── 4_0_1_41.yaml │ │ │ │ ├── 4_0_1_42.yaml │ │ │ │ ├── 4_0_1_43.yaml │ │ │ │ ├── 4_0_1_44.yaml │ │ │ │ ├── 4_0_1_45.yaml │ │ │ │ ├── 4_0_1_46.yaml │ │ │ │ ├── 4_0_1_47.yaml │ │ │ │ ├── 4_0_1_48.yaml │ │ │ │ ├── 4_0_1_49.yaml │ │ │ │ ├── 4_0_1_50.yaml │ │ │ │ ├── 5_0_1_51.yaml │ │ │ │ ├── 5_0_1_52.yaml │ │ │ │ ├── 5_0_1_53.yaml │ │ │ │ ├── 5_0_1_54.yaml │ │ │ │ ├── 5_0_1_55.yaml │ │ │ │ ├── 5_0_1_56.yaml │ │ │ │ ├── 5_0_1_57.yaml │ │ │ │ ├── 5_0_1_58.yaml │ │ │ │ ├── 5_0_1_59.yaml │ │ │ │ ├── 5_0_1_60.yaml │ │ │ │ ├── 5_0_1_61.yaml │ │ │ │ ├── 5_0_1_62.yaml │ │ │ │ ├── 5_0_1_63.yaml │ │ │ │ ├── 5_0_1_64.yaml │ │ │ │ ├── 5_0_1_65.yaml │ │ │ │ ├── 5_0_1_66.yaml │ │ │ │ ├── 5_0_1_67.yaml │ │ │ │ ├── 6_0_1_68.yaml │ │ │ │ ├── 6_0_1_69.yaml │ │ │ │ ├── 6_0_1_70.yaml │ │ │ │ ├── 6_0_1_71.yaml │ │ │ │ ├── 6_0_1_72.yaml │ │ │ │ ├── 6_0_1_73.yaml │ │ │ │ ├── 6_0_1_74.yaml │ │ │ │ ├── 6_0_1_75.yaml │ │ │ │ ├── 6_0_1_76.yaml │ │ │ │ ├── 6_0_1_77.yaml │ │ │ │ ├── 6_0_1_78.yaml │ │ │ │ ├── 6_0_1_79.yaml │ │ │ │ ├── 6_0_1_80.yaml │ │ │ │ ├── 6_0_1_81.yaml │ │ │ │ ├── 6_0_1_82.yaml │ │ │ │ ├── 6_0_1_83.yaml │ │ │ │ ├── 6_0_1_84.yaml │ │ │ │ ├── 7_0_1_100.yaml │ │ │ │ ├── 7_0_1_101.yaml │ │ │ │ ├── 7_0_1_85.yaml │ │ │ │ ├── 7_0_1_86.yaml │ │ │ │ ├── 7_0_1_87.yaml │ │ │ │ ├── 7_0_1_88.yaml │ │ │ │ ├── 7_0_1_89.yaml │ │ │ │ ├── 7_0_1_90.yaml │ │ │ │ ├── 7_0_1_91.yaml │ │ │ │ ├── 7_0_1_92.yaml │ │ │ │ ├── 7_0_1_93.yaml │ │ │ │ ├── 7_0_1_94.yaml │ │ │ │ ├── 7_0_1_95.yaml │ │ │ │ ├── 7_0_1_96.yaml │ │ │ │ ├── 7_0_1_97.yaml │ │ │ │ ├── 7_0_1_98.yaml │ │ │ │ └── 7_0_1_99.yaml │ │ ├── stacking │ │ │ ├── test │ │ │ │ ├── 2_0_1_56.yaml │ │ │ │ ├── 2_0_1_57.yaml │ │ │ │ ├── 2_0_1_59.yaml │ │ │ │ ├── 2_0_1_65.yaml │ │ │ │ ├── 2_0_1_78.yaml │ │ │ │ ├── 2_0_1_80.yaml │ │ │ │ ├── 2_0_1_84.yaml │ │ │ │ ├── 2_0_1_88.yaml │ │ │ │ ├── 2_0_2_1.yaml │ │ │ │ ├── 2_0_2_24.yaml │ │ │ │ ├── 2_0_2_27.yaml │ │ │ │ ├── 2_0_2_30.yaml │ │ │ │ ├── 2_0_2_31.yaml │ │ │ │ ├── 2_0_2_44.yaml │ │ │ │ ├── 2_0_2_48.yaml │ │ │ │ ├── 2_0_2_49.yaml │ │ │ │ ├── 3_0_1_53.yaml │ │ │ │ ├── 3_0_1_54.yaml │ │ │ │ ├── 3_0_1_55.yaml │ │ │ │ ├── 3_0_1_58.yaml │ │ │ │ ├── 3_0_1_63.yaml │ │ │ │ ├── 3_0_1_70.yaml │ │ │ │ ├── 3_0_1_81.yaml │ │ │ │ ├── 3_0_1_91.yaml │ │ │ │ ├── 3_0_3_12.yaml │ │ │ │ ├── 3_0_3_17.yaml │ │ │ │ ├── 3_0_3_18.yaml │ │ │ │ ├── 3_0_3_23.yaml │ │ │ │ ├── 3_0_3_29.yaml │ │ │ │ ├── 3_0_3_3.yaml │ │ │ │ ├── 3_0_3_32.yaml │ │ │ │ ├── 3_0_3_35.yaml │ │ │ │ ├── 4_0_1_67.yaml │ │ │ │ ├── 4_0_1_74.yaml │ │ │ │ ├── 4_0_1_77.yaml │ │ │ │ ├── 4_0_1_90.yaml │ │ │ │ ├── 4_0_1_92.yaml │ │ │ │ ├── 4_0_1_95.yaml │ │ │ │ ├── 4_0_1_99.yaml │ │ │ │ ├── 4_0_4_10.yaml │ │ │ │ ├── 4_0_4_11.yaml │ │ │ │ ├── 4_0_4_13.yaml │ │ │ │ ├── 4_0_4_16.yaml │ │ │ │ ├── 4_0_4_40.yaml │ │ │ │ ├── 4_0_4_5.yaml │ │ │ │ ├── 4_0_4_6.yaml │ │ │ │ ├── 4_0_4_7.yaml │ │ │ │ ├── 5_0_1_50.yaml │ │ │ │ ├── 5_0_1_51.yaml │ │ │ │ ├── 5_0_1_62.yaml │ │ │ │ ├── 5_0_1_64.yaml │ │ │ │ ├── 5_0_1_66.yaml │ │ │ │ ├── 5_0_1_68.yaml │ │ │ │ ├── 5_0_1_71.yaml │ │ │ │ ├── 5_0_1_82.yaml │ │ │ │ ├── 5_0_1_86.yaml │ │ │ │ ├── 5_0_5_14.yaml │ │ │ │ ├── 5_0_5_25.yaml │ │ │ │ ├── 5_0_5_33.yaml │ │ │ │ ├── 5_0_5_34.yaml │ │ │ │ ├── 5_0_5_4.yaml │ │ │ │ ├── 5_0_5_42.yaml │ │ │ │ ├── 5_0_5_43.yaml │ │ │ │ ├── 5_0_5_8.yaml │ │ │ │ ├── 5_0_5_9.yaml │ │ │ │ ├── 6_0_1_52.yaml │ │ │ │ ├── 6_0_1_61.yaml │ │ │ │ ├── 6_0_1_73.yaml │ │ │ │ ├── 6_0_1_76.yaml │ │ │ │ ├── 6_0_1_83.yaml │ │ │ │ ├── 6_0_1_87.yaml │ │ │ │ ├── 6_0_1_94.yaml │ │ │ │ ├── 6_0_1_97.yaml │ │ │ │ ├── 6_0_6_19.yaml │ │ │ │ ├── 6_0_6_22.yaml │ │ │ │ ├── 6_0_6_26.yaml │ │ │ │ ├── 7_0_1_60.yaml │ │ │ │ ├── 7_0_1_69.yaml │ │ │ │ ├── 7_0_1_72.yaml │ │ │ │ ├── 7_0_1_75.yaml │ │ │ │ ├── 7_0_1_79.yaml │ │ │ │ ├── 7_0_1_85.yaml │ │ │ │ ├── 7_0_1_89.yaml │ │ │ │ ├── 7_0_1_93.yaml │ │ │ │ ├── 7_0_1_96.yaml │ │ │ │ ├── 7_0_1_98.yaml │ │ │ │ ├── 7_0_6_0.yaml │ │ │ │ ├── 7_0_6_15.yaml │ │ │ │ ├── 7_0_6_2.yaml │ │ │ │ ├── 7_0_6_20.yaml │ │ │ │ ├── 7_0_6_21.yaml │ │ │ │ ├── 7_0_6_28.yaml │ │ │ │ ├── 7_0_6_36.yaml │ │ │ │ ├── 7_0_6_37.yaml │ │ │ │ ├── 7_0_6_38.yaml │ │ │ │ ├── 7_0_6_39.yaml │ │ │ │ ├── 7_0_6_41.yaml │ │ │ │ ├── 7_0_6_45.yaml │ │ │ │ ├── 7_0_6_46.yaml │ │ │ │ └── 7_0_6_47.yaml │ │ │ └── train │ │ │ │ ├── 2_0_1_51.yaml │ │ │ │ ├── 2_0_1_52.yaml │ │ │ │ ├── 2_0_1_53.yaml │ │ │ │ ├── 2_0_1_57.yaml │ │ │ │ ├── 2_0_1_60.yaml │ │ │ │ ├── 2_0_1_67.yaml │ │ │ │ ├── 2_0_1_68.yaml │ │ │ │ ├── 2_0_1_72.yaml │ │ │ │ ├── 2_0_1_74.yaml │ │ │ │ ├── 2_0_1_75.yaml │ │ │ │ ├── 2_0_1_76.yaml │ │ │ │ ├── 2_0_1_78.yaml │ │ │ │ ├── 2_0_1_82.yaml │ │ │ │ ├── 2_0_1_83.yaml │ │ │ │ ├── 2_0_1_91.yaml │ │ │ │ ├── 2_0_1_94.yaml │ │ │ │ ├── 2_0_1_96.yaml │ │ │ │ ├── 2_0_2_14.yaml │ │ │ │ ├── 2_0_2_15.yaml │ │ │ │ ├── 2_0_2_18.yaml │ │ │ │ ├── 2_0_2_20.yaml │ │ │ │ ├── 2_0_2_28.yaml │ │ │ │ ├── 2_0_2_30.yaml │ │ │ │ ├── 2_0_2_32.yaml │ │ │ │ ├── 2_0_2_33.yaml │ │ │ │ ├── 2_0_2_35.yaml │ │ │ │ ├── 2_0_2_37.yaml │ │ │ │ ├── 2_0_2_40.yaml │ │ │ │ ├── 2_0_2_42.yaml │ │ │ │ ├── 2_0_2_43.yaml │ │ │ │ ├── 2_0_2_44.yaml │ │ │ │ ├── 2_0_2_47.yaml │ │ │ │ ├── 2_0_2_48.yaml │ │ │ │ ├── 2_0_2_49.yaml │ │ │ │ ├── 2_0_2_8.yaml │ │ │ │ ├── 3_0_1_55.yaml │ │ │ │ ├── 3_0_1_61.yaml │ │ │ │ ├── 3_0_1_65.yaml │ │ │ │ ├── 3_0_1_66.yaml │ │ │ │ ├── 3_0_1_79.yaml │ │ │ │ ├── 3_0_1_81.yaml │ │ │ │ ├── 3_0_1_84.yaml │ │ │ │ ├── 3_0_1_85.yaml │ │ │ │ ├── 3_0_1_86.yaml │ │ │ │ ├── 3_0_1_87.yaml │ │ │ │ ├── 3_0_1_89.yaml │ │ │ │ ├── 3_0_1_92.yaml │ │ │ │ ├── 3_0_1_95.yaml │ │ │ │ ├── 3_0_1_98.yaml │ │ │ │ ├── 3_0_1_99.yaml │ │ │ │ ├── 3_0_3_0.yaml │ │ │ │ ├── 3_0_3_10.yaml │ │ │ │ ├── 3_0_3_11.yaml │ │ │ │ ├── 3_0_3_16.yaml │ │ │ │ ├── 3_0_3_17.yaml │ │ │ │ ├── 3_0_3_19.yaml │ │ │ │ ├── 3_0_3_23.yaml │ │ │ │ ├── 3_0_3_24.yaml │ │ │ │ ├── 3_0_3_25.yaml │ │ │ │ ├── 3_0_3_26.yaml │ │ │ │ ├── 3_0_3_27.yaml │ │ │ │ ├── 3_0_3_34.yaml │ │ │ │ ├── 3_0_3_39.yaml │ │ │ │ ├── 3_0_3_4.yaml │ │ │ │ ├── 3_0_3_41.yaml │ │ │ │ ├── 3_0_3_5.yaml │ │ │ │ ├── 4_0_1_50.yaml │ │ │ │ ├── 4_0_1_54.yaml │ │ │ │ ├── 4_0_1_56.yaml │ │ │ │ ├── 4_0_1_58.yaml │ │ │ │ ├── 4_0_1_59.yaml │ │ │ │ ├── 4_0_1_62.yaml │ │ │ │ ├── 4_0_1_63.yaml │ │ │ │ ├── 4_0_1_64.yaml │ │ │ │ ├── 4_0_1_69.yaml │ │ │ │ ├── 4_0_1_70.yaml │ │ │ │ ├── 4_0_1_71.yaml │ │ │ │ ├── 4_0_1_73.yaml │ │ │ │ ├── 4_0_1_77.yaml │ │ │ │ ├── 4_0_1_80.yaml │ │ │ │ ├── 4_0_1_88.yaml │ │ │ │ ├── 4_0_1_90.yaml │ │ │ │ ├── 4_0_1_93.yaml │ │ │ │ ├── 4_0_1_97.yaml │ │ │ │ ├── 4_0_4_1.yaml │ │ │ │ ├── 4_0_4_12.yaml │ │ │ │ ├── 4_0_4_13.yaml │ │ │ │ ├── 4_0_4_2.yaml │ │ │ │ ├── 4_0_4_21.yaml │ │ │ │ ├── 4_0_4_22.yaml │ │ │ │ ├── 4_0_4_29.yaml │ │ │ │ ├── 4_0_4_3.yaml │ │ │ │ ├── 4_0_4_31.yaml │ │ │ │ ├── 4_0_4_36.yaml │ │ │ │ ├── 4_0_4_38.yaml │ │ │ │ ├── 4_0_4_45.yaml │ │ │ │ ├── 4_0_4_46.yaml │ │ │ │ ├── 4_0_4_6.yaml │ │ │ │ ├── 4_0_4_7.yaml │ │ │ │ └── 4_0_4_9.yaml │ │ └── test_problem.yaml │ ├── domain.pddl │ ├── problems │ │ ├── default_problem.yaml │ │ └── test_problem.yaml │ ├── run.py │ ├── stream.pddl │ └── temp │ │ └── domain.pddl ├── collect-labels.sh ├── hanoi │ ├── data_generation │ │ ├── generate_problems.py │ │ ├── make_hanoi.py │ │ ├── template_problem.yaml │ │ ├── test │ │ │ ├── blue_peg_green_peg_2.yaml │ │ │ ├── blue_peg_green_peg_3.yaml │ │ │ ├── blue_peg_green_peg_4.yaml │ │ │ ├── blue_peg_green_peg_5.yaml │ │ │ ├── blue_peg_green_peg_6.yaml │ │ │ ├── blue_peg_green_peg_7.yaml │ │ │ ├── blue_peg_green_peg_8.yaml │ │ │ ├── blue_peg_green_peg_9.yaml │ │ │ ├── blue_peg_red_peg_2.yaml │ │ │ ├── blue_peg_red_peg_3.yaml │ │ │ ├── blue_peg_red_peg_4.yaml │ │ │ ├── blue_peg_red_peg_5.yaml │ │ │ ├── blue_peg_red_peg_6.yaml │ │ │ ├── blue_peg_red_peg_7.yaml │ │ │ ├── blue_peg_red_peg_8.yaml │ │ │ ├── blue_peg_red_peg_9.yaml │ │ │ ├── green_peg_blue_peg_2.yaml │ │ │ ├── green_peg_blue_peg_3.yaml │ │ │ ├── green_peg_blue_peg_4.yaml │ │ │ ├── green_peg_blue_peg_5.yaml │ │ │ ├── green_peg_blue_peg_6.yaml │ │ │ ├── green_peg_blue_peg_7.yaml │ │ │ ├── green_peg_blue_peg_8.yaml │ │ │ ├── green_peg_blue_peg_9.yaml │ │ │ ├── green_peg_red_peg_2.yaml │ │ │ ├── green_peg_red_peg_3.yaml │ │ │ ├── green_peg_red_peg_4.yaml │ │ │ ├── green_peg_red_peg_5.yaml │ │ │ ├── green_peg_red_peg_6.yaml │ │ │ ├── green_peg_red_peg_7.yaml │ │ │ ├── green_peg_red_peg_8.yaml │ │ │ ├── green_peg_red_peg_9.yaml │ │ │ ├── red_peg_blue_peg_2.yaml │ │ │ ├── red_peg_blue_peg_3.yaml │ │ │ ├── red_peg_blue_peg_4.yaml │ │ │ ├── red_peg_blue_peg_5.yaml │ │ │ ├── red_peg_blue_peg_6.yaml │ │ │ ├── red_peg_blue_peg_7.yaml │ │ │ ├── red_peg_blue_peg_8.yaml │ │ │ ├── red_peg_blue_peg_9.yaml │ │ │ ├── red_peg_green_peg_2.yaml │ │ │ ├── red_peg_green_peg_3.yaml │ │ │ ├── red_peg_green_peg_4.yaml │ │ │ ├── red_peg_green_peg_5.yaml │ │ │ ├── red_peg_green_peg_6.yaml │ │ │ ├── red_peg_green_peg_7.yaml │ │ │ ├── red_peg_green_peg_8.yaml │ │ │ └── red_peg_green_peg_9.yaml │ │ ├── test_problem.yaml │ │ └── train │ │ │ ├── blue_peg_green_peg_2.yaml │ │ │ ├── blue_peg_green_peg_3.yaml │ │ │ ├── blue_peg_green_peg_4.yaml │ │ │ ├── blue_peg_green_peg_5.yaml │ │ │ ├── blue_peg_green_peg_6.yaml │ │ │ ├── blue_peg_red_peg_2.yaml │ │ │ ├── blue_peg_red_peg_3.yaml │ │ │ ├── blue_peg_red_peg_4.yaml │ │ │ ├── blue_peg_red_peg_5.yaml │ │ │ ├── blue_peg_red_peg_6.yaml │ │ │ ├── green_peg_blue_peg_2.yaml │ │ │ ├── green_peg_blue_peg_3.yaml │ │ │ ├── green_peg_blue_peg_4.yaml │ │ │ ├── green_peg_blue_peg_5.yaml │ │ │ ├── green_peg_blue_peg_6.yaml │ │ │ ├── green_peg_red_peg_2.yaml │ │ │ ├── green_peg_red_peg_3.yaml │ │ │ ├── green_peg_red_peg_4.yaml │ │ │ ├── green_peg_red_peg_5.yaml │ │ │ ├── green_peg_red_peg_6.yaml │ │ │ ├── red_peg_blue_peg_2.yaml │ │ │ ├── red_peg_blue_peg_3.yaml │ │ │ ├── red_peg_blue_peg_4.yaml │ │ │ ├── red_peg_blue_peg_5.yaml │ │ │ ├── red_peg_blue_peg_6.yaml │ │ │ ├── red_peg_green_peg_2.yaml │ │ │ ├── red_peg_green_peg_3.yaml │ │ │ ├── red_peg_green_peg_4.yaml │ │ │ ├── red_peg_green_peg_5.yaml │ │ │ └── red_peg_green_peg_6.yaml │ ├── domain.pddl │ ├── hanoi_streams │ │ ├── __init__.py │ │ └── streams.py │ ├── problems │ │ └── default_problem.yaml │ ├── run.py │ └── stream.pddl ├── kitchen │ ├── domain.pddl │ ├── generate_problems.py │ ├── kitchen_data_generation │ │ ├── __init__.py │ │ ├── make_problem.py │ │ ├── make_problemset.py │ │ ├── test │ │ │ ├── 1_0_0_1_0.yaml │ │ │ ├── 1_0_1_1_1.yaml │ │ │ ├── 1_0_1_2_2.yaml │ │ │ ├── 1_0_2_1_3.yaml │ │ │ ├── 1_0_2_2_4.yaml │ │ │ ├── 1_0_2_3_5.yaml │ │ │ ├── 1_1_0_1_6.yaml │ │ │ ├── 1_1_0_2_7.yaml │ │ │ ├── 1_1_1_1_8.yaml │ │ │ ├── 1_1_1_2_9.yaml │ │ │ ├── 1_1_1_3_10.yaml │ │ │ ├── 1_1_2_1_11.yaml │ │ │ ├── 1_1_2_2_12.yaml │ │ │ ├── 1_1_2_3_13.yaml │ │ │ ├── 1_1_2_4_14.yaml │ │ │ ├── 1_2_0_1_15.yaml │ │ │ ├── 1_2_0_2_16.yaml │ │ │ ├── 1_2_0_3_17.yaml │ │ │ ├── 1_2_1_1_18.yaml │ │ │ ├── 1_2_1_2_19.yaml │ │ │ ├── 1_2_1_3_20.yaml │ │ │ ├── 1_2_1_4_21.yaml │ │ │ ├── 1_2_2_2_22.yaml │ │ │ ├── 1_2_2_3_23.yaml │ │ │ ├── 1_2_2_4_24.yaml │ │ │ ├── 1_2_2_5_25.yaml │ │ │ ├── 1_3_0_1_26.yaml │ │ │ ├── 1_3_0_2_27.yaml │ │ │ ├── 1_3_0_3_28.yaml │ │ │ ├── 1_3_0_4_29.yaml │ │ │ ├── 1_3_1_2_30.yaml │ │ │ ├── 1_3_1_3_31.yaml │ │ │ ├── 1_3_1_4_32.yaml │ │ │ ├── 1_3_1_5_33.yaml │ │ │ ├── 1_3_2_3_34.yaml │ │ │ ├── 1_3_2_4_35.yaml │ │ │ ├── 1_3_2_5_36.yaml │ │ │ ├── 1_3_2_6_37.yaml │ │ │ ├── 2_0_0_1_38.yaml │ │ │ ├── 2_0_0_2_39.yaml │ │ │ ├── 2_0_1_1_40.yaml │ │ │ ├── 2_0_1_2_41.yaml │ │ │ ├── 2_0_1_3_42.yaml │ │ │ ├── 2_0_2_1_43.yaml │ │ │ ├── 2_0_2_2_44.yaml │ │ │ ├── 2_0_2_3_45.yaml │ │ │ ├── 2_0_2_4_46.yaml │ │ │ ├── 2_1_0_1_47.yaml │ │ │ ├── 2_1_0_2_48.yaml │ │ │ ├── 2_1_0_3_49.yaml │ │ │ ├── 2_1_1_1_50.yaml │ │ │ ├── 2_1_1_2_51.yaml │ │ │ ├── 2_1_1_3_52.yaml │ │ │ ├── 2_1_1_4_53.yaml │ │ │ ├── 2_1_2_2_54.yaml │ │ │ ├── 2_1_2_3_55.yaml │ │ │ ├── 2_1_2_4_56.yaml │ │ │ ├── 2_1_2_5_57.yaml │ │ │ ├── 2_2_0_1_58.yaml │ │ │ ├── 2_2_0_2_59.yaml │ │ │ ├── 2_2_0_3_60.yaml │ │ │ ├── 2_2_0_4_61.yaml │ │ │ ├── 2_2_1_2_62.yaml │ │ │ ├── 2_2_1_3_63.yaml │ │ │ ├── 2_2_1_4_64.yaml │ │ │ ├── 2_2_1_5_65.yaml │ │ │ ├── 2_2_2_3_66.yaml │ │ │ ├── 2_2_2_4_67.yaml │ │ │ ├── 2_2_2_5_68.yaml │ │ │ ├── 2_2_2_6_69.yaml │ │ │ ├── 2_3_0_2_70.yaml │ │ │ ├── 2_3_0_3_71.yaml │ │ │ ├── 2_3_0_4_72.yaml │ │ │ ├── 2_3_0_5_73.yaml │ │ │ ├── 2_3_1_3_74.yaml │ │ │ ├── 2_3_1_4_75.yaml │ │ │ ├── 2_3_1_5_76.yaml │ │ │ ├── 2_3_1_6_77.yaml │ │ │ ├── 2_3_2_4_78.yaml │ │ │ ├── 2_3_2_5_79.yaml │ │ │ ├── 2_3_2_6_80.yaml │ │ │ ├── 2_3_2_7_81.yaml │ │ │ ├── 3_0_0_1_82.yaml │ │ │ ├── 3_0_0_2_83.yaml │ │ │ ├── 3_0_0_3_84.yaml │ │ │ ├── 3_0_1_1_85.yaml │ │ │ ├── 3_0_1_2_86.yaml │ │ │ ├── 3_0_1_3_87.yaml │ │ │ ├── 3_0_1_4_88.yaml │ │ │ ├── 3_0_2_2_89.yaml │ │ │ ├── 3_0_2_3_90.yaml │ │ │ ├── 3_0_2_4_91.yaml │ │ │ ├── 3_0_2_5_92.yaml │ │ │ ├── 3_1_0_1_93.yaml │ │ │ ├── 3_1_0_2_94.yaml │ │ │ ├── 3_1_0_3_95.yaml │ │ │ ├── 3_1_0_4_96.yaml │ │ │ ├── 3_1_1_2_97.yaml │ │ │ ├── 3_1_1_3_98.yaml │ │ │ ├── 3_1_1_4_99.yaml │ │ │ ├── 3_1_1_5_100.yaml │ │ │ ├── 3_1_2_3_101.yaml │ │ │ ├── 3_1_2_4_102.yaml │ │ │ ├── 3_1_2_5_103.yaml │ │ │ ├── 3_1_2_6_104.yaml │ │ │ ├── 3_2_0_2_105.yaml │ │ │ ├── 3_2_0_3_106.yaml │ │ │ ├── 3_2_0_4_107.yaml │ │ │ ├── 3_2_0_5_108.yaml │ │ │ ├── 3_2_1_3_109.yaml │ │ │ ├── 3_2_1_4_110.yaml │ │ │ ├── 3_2_1_5_111.yaml │ │ │ ├── 3_2_1_6_112.yaml │ │ │ ├── 3_2_2_4_113.yaml │ │ │ ├── 3_2_2_5_114.yaml │ │ │ ├── 3_2_2_6_115.yaml │ │ │ ├── 3_2_2_7_116.yaml │ │ │ ├── 3_3_0_3_117.yaml │ │ │ ├── 3_3_0_4_118.yaml │ │ │ ├── 3_3_0_5_119.yaml │ │ │ ├── 3_3_0_6_120.yaml │ │ │ ├── 3_3_1_4_121.yaml │ │ │ ├── 3_3_1_5_122.yaml │ │ │ ├── 3_3_1_6_123.yaml │ │ │ ├── 3_3_1_7_124.yaml │ │ │ ├── 3_3_2_5_125.yaml │ │ │ ├── 3_3_2_6_126.yaml │ │ │ ├── 3_3_2_7_127.yaml │ │ │ ├── 3_3_2_8_128.yaml │ │ │ ├── 4_0_0_1_129.yaml │ │ │ ├── 4_0_0_2_130.yaml │ │ │ ├── 4_0_0_3_131.yaml │ │ │ ├── 4_0_0_4_132.yaml │ │ │ ├── 4_0_1_2_133.yaml │ │ │ ├── 4_0_1_3_134.yaml │ │ │ ├── 4_0_1_4_135.yaml │ │ │ ├── 4_0_1_5_136.yaml │ │ │ ├── 4_0_2_3_137.yaml │ │ │ ├── 4_0_2_4_138.yaml │ │ │ ├── 4_0_2_5_139.yaml │ │ │ ├── 4_0_2_6_140.yaml │ │ │ ├── 4_1_0_2_141.yaml │ │ │ ├── 4_1_0_3_142.yaml │ │ │ ├── 4_1_0_4_143.yaml │ │ │ ├── 4_1_0_5_144.yaml │ │ │ ├── 4_1_1_3_145.yaml │ │ │ ├── 4_1_1_4_146.yaml │ │ │ ├── 4_1_1_5_147.yaml │ │ │ ├── 4_1_1_6_148.yaml │ │ │ ├── 4_1_2_4_149.yaml │ │ │ ├── 4_1_2_5_150.yaml │ │ │ ├── 4_1_2_6_151.yaml │ │ │ ├── 4_1_2_7_152.yaml │ │ │ ├── 4_2_0_3_153.yaml │ │ │ ├── 4_2_0_4_154.yaml │ │ │ ├── 4_2_0_5_155.yaml │ │ │ ├── 4_2_0_6_156.yaml │ │ │ ├── 4_2_1_4_157.yaml │ │ │ ├── 4_2_1_5_158.yaml │ │ │ ├── 4_2_1_6_159.yaml │ │ │ ├── 4_2_1_7_160.yaml │ │ │ ├── 4_2_2_5_161.yaml │ │ │ ├── 4_2_2_6_162.yaml │ │ │ ├── 4_2_2_7_163.yaml │ │ │ ├── 4_2_2_8_164.yaml │ │ │ ├── 4_3_0_4_165.yaml │ │ │ ├── 4_3_0_5_166.yaml │ │ │ ├── 4_3_0_6_167.yaml │ │ │ ├── 4_3_0_7_168.yaml │ │ │ ├── 4_3_1_5_169.yaml │ │ │ ├── 4_3_1_6_170.yaml │ │ │ ├── 4_3_1_7_171.yaml │ │ │ ├── 4_3_1_8_172.yaml │ │ │ ├── 4_3_2_6_173.yaml │ │ │ ├── 4_3_2_7_174.yaml │ │ │ ├── 4_3_2_8_175.yaml │ │ │ └── 4_3_2_9_176.yaml │ │ ├── test_problem.yaml │ │ └── train │ │ │ ├── 1_0_0_1_0.yaml │ │ │ ├── 1_0_1_1_1.yaml │ │ │ ├── 1_0_1_2_2.yaml │ │ │ ├── 1_0_2_1_3.yaml │ │ │ ├── 1_0_2_2_4.yaml │ │ │ ├── 1_0_2_3_5.yaml │ │ │ ├── 1_1_0_1_6.yaml │ │ │ ├── 1_1_0_2_7.yaml │ │ │ ├── 1_1_1_1_8.yaml │ │ │ ├── 1_1_1_2_9.yaml │ │ │ ├── 1_1_1_3_10.yaml │ │ │ ├── 1_1_2_1_11.yaml │ │ │ ├── 1_1_2_2_12.yaml │ │ │ ├── 1_1_2_3_13.yaml │ │ │ ├── 1_1_2_4_14.yaml │ │ │ ├── 1_2_0_1_15.yaml │ │ │ ├── 1_2_0_2_16.yaml │ │ │ ├── 1_2_0_3_17.yaml │ │ │ ├── 1_2_1_1_18.yaml │ │ │ ├── 1_2_1_2_19.yaml │ │ │ ├── 1_2_1_3_20.yaml │ │ │ ├── 1_2_1_4_21.yaml │ │ │ ├── 1_2_2_2_22.yaml │ │ │ ├── 1_2_2_3_23.yaml │ │ │ ├── 1_2_2_4_24.yaml │ │ │ ├── 1_2_2_5_25.yaml │ │ │ ├── 1_3_0_1_26.yaml │ │ │ ├── 1_3_0_2_27.yaml │ │ │ ├── 1_3_0_3_28.yaml │ │ │ ├── 1_3_0_4_29.yaml │ │ │ ├── 1_3_1_2_30.yaml │ │ │ ├── 1_3_1_3_31.yaml │ │ │ ├── 1_3_1_4_32.yaml │ │ │ ├── 1_3_1_5_33.yaml │ │ │ ├── 1_3_2_3_34.yaml │ │ │ ├── 1_3_2_4_35.yaml │ │ │ ├── 1_3_2_5_36.yaml │ │ │ ├── 1_3_2_6_37.yaml │ │ │ ├── 2_0_0_1_38.yaml │ │ │ ├── 2_0_0_2_39.yaml │ │ │ ├── 2_0_1_1_40.yaml │ │ │ ├── 2_0_1_2_41.yaml │ │ │ ├── 2_0_1_3_42.yaml │ │ │ ├── 2_0_2_1_43.yaml │ │ │ ├── 2_0_2_2_44.yaml │ │ │ ├── 2_0_2_3_45.yaml │ │ │ ├── 2_0_2_4_46.yaml │ │ │ ├── 2_1_0_1_47.yaml │ │ │ ├── 2_1_0_2_48.yaml │ │ │ ├── 2_1_0_3_49.yaml │ │ │ ├── 2_1_1_1_50.yaml │ │ │ ├── 2_1_1_2_51.yaml │ │ │ ├── 2_1_1_3_52.yaml │ │ │ ├── 2_1_1_4_53.yaml │ │ │ ├── 2_1_2_2_54.yaml │ │ │ ├── 2_1_2_3_55.yaml │ │ │ ├── 2_1_2_4_56.yaml │ │ │ ├── 2_1_2_5_57.yaml │ │ │ ├── 2_2_0_1_58.yaml │ │ │ ├── 2_2_0_2_59.yaml │ │ │ ├── 2_2_0_3_60.yaml │ │ │ ├── 2_2_0_4_61.yaml │ │ │ ├── 2_2_1_2_62.yaml │ │ │ ├── 2_2_1_3_63.yaml │ │ │ ├── 2_2_1_4_64.yaml │ │ │ ├── 2_2_1_5_65.yaml │ │ │ ├── 2_2_2_3_66.yaml │ │ │ ├── 2_2_2_4_67.yaml │ │ │ ├── 2_2_2_5_68.yaml │ │ │ ├── 2_2_2_6_69.yaml │ │ │ ├── 2_3_0_2_70.yaml │ │ │ ├── 2_3_0_3_71.yaml │ │ │ ├── 2_3_0_4_72.yaml │ │ │ ├── 2_3_0_5_73.yaml │ │ │ ├── 2_3_1_3_74.yaml │ │ │ ├── 2_3_1_4_75.yaml │ │ │ ├── 2_3_1_5_76.yaml │ │ │ ├── 2_3_1_6_77.yaml │ │ │ ├── 2_3_2_4_78.yaml │ │ │ ├── 2_3_2_5_79.yaml │ │ │ ├── 2_3_2_6_80.yaml │ │ │ ├── 2_3_2_7_81.yaml │ │ │ ├── 3_0_0_1_82.yaml │ │ │ ├── 3_0_0_2_83.yaml │ │ │ ├── 3_0_0_3_84.yaml │ │ │ ├── 3_0_1_1_85.yaml │ │ │ ├── 3_0_1_2_86.yaml │ │ │ ├── 3_0_1_3_87.yaml │ │ │ ├── 3_0_1_4_88.yaml │ │ │ ├── 3_0_2_2_89.yaml │ │ │ ├── 3_0_2_3_90.yaml │ │ │ ├── 3_0_2_4_91.yaml │ │ │ ├── 3_0_2_5_92.yaml │ │ │ ├── 3_1_0_1_93.yaml │ │ │ ├── 3_1_0_2_94.yaml │ │ │ ├── 3_1_0_3_95.yaml │ │ │ ├── 3_1_0_4_96.yaml │ │ │ ├── 3_1_1_2_97.yaml │ │ │ ├── 3_1_1_3_98.yaml │ │ │ ├── 3_1_1_4_99.yaml │ │ │ ├── 3_1_1_5_100.yaml │ │ │ ├── 3_1_2_3_101.yaml │ │ │ ├── 3_1_2_4_102.yaml │ │ │ ├── 3_1_2_5_103.yaml │ │ │ ├── 3_1_2_6_104.yaml │ │ │ ├── 3_2_0_2_105.yaml │ │ │ ├── 3_2_0_3_106.yaml │ │ │ ├── 3_2_0_4_107.yaml │ │ │ ├── 3_2_0_5_108.yaml │ │ │ ├── 3_2_1_3_109.yaml │ │ │ ├── 3_2_1_4_110.yaml │ │ │ ├── 3_2_1_5_111.yaml │ │ │ ├── 3_2_1_6_112.yaml │ │ │ ├── 3_2_2_4_113.yaml │ │ │ ├── 3_2_2_5_114.yaml │ │ │ ├── 3_2_2_6_115.yaml │ │ │ ├── 3_2_2_7_116.yaml │ │ │ ├── 3_3_0_3_117.yaml │ │ │ ├── 3_3_0_4_118.yaml │ │ │ ├── 3_3_0_5_119.yaml │ │ │ ├── 3_3_0_6_120.yaml │ │ │ ├── 3_3_1_4_121.yaml │ │ │ ├── 3_3_1_5_122.yaml │ │ │ ├── 3_3_1_6_123.yaml │ │ │ ├── 3_3_1_7_124.yaml │ │ │ ├── 3_3_2_5_125.yaml │ │ │ ├── 3_3_2_6_126.yaml │ │ │ ├── 3_3_2_7_127.yaml │ │ │ └── 3_3_2_8_128.yaml │ ├── kitchen_streamsv2 │ │ ├── __init__.py │ │ └── streams.py │ ├── problems │ │ ├── custom_problem.yaml │ │ └── kitchen_problem.yaml │ ├── run.py │ └── stream.pddl ├── kitchen_less_axioms │ ├── domain.pddl │ ├── generate_problems.py │ ├── kitchen_data_generation │ │ ├── __init__.py │ │ ├── make_problem.py │ │ ├── make_problemset.py │ │ ├── test │ │ │ ├── 1_0_0_1_0.yaml │ │ │ ├── 1_0_1_1_1.yaml │ │ │ ├── 1_0_1_2_2.yaml │ │ │ ├── 1_0_2_1_3.yaml │ │ │ ├── 1_0_2_2_4.yaml │ │ │ ├── 1_0_2_3_5.yaml │ │ │ ├── 1_1_0_1_6.yaml │ │ │ ├── 1_1_0_2_7.yaml │ │ │ ├── 1_1_1_1_8.yaml │ │ │ ├── 1_1_1_2_9.yaml │ │ │ ├── 1_1_1_3_10.yaml │ │ │ ├── 1_1_2_1_11.yaml │ │ │ ├── 1_1_2_2_12.yaml │ │ │ ├── 1_1_2_3_13.yaml │ │ │ ├── 1_1_2_4_14.yaml │ │ │ ├── 1_2_0_1_15.yaml │ │ │ ├── 1_2_0_2_16.yaml │ │ │ ├── 1_2_0_3_17.yaml │ │ │ ├── 1_2_1_1_18.yaml │ │ │ ├── 1_2_1_2_19.yaml │ │ │ ├── 1_2_1_3_20.yaml │ │ │ ├── 1_2_1_4_21.yaml │ │ │ ├── 1_2_2_2_22.yaml │ │ │ ├── 1_2_2_3_23.yaml │ │ │ ├── 1_2_2_4_24.yaml │ │ │ ├── 1_2_2_5_25.yaml │ │ │ ├── 1_3_0_1_26.yaml │ │ │ ├── 1_3_0_2_27.yaml │ │ │ ├── 1_3_0_3_28.yaml │ │ │ ├── 1_3_0_4_29.yaml │ │ │ ├── 1_3_1_2_30.yaml │ │ │ ├── 1_3_1_3_31.yaml │ │ │ ├── 1_3_1_4_32.yaml │ │ │ ├── 1_3_1_5_33.yaml │ │ │ ├── 1_3_2_3_34.yaml │ │ │ ├── 1_3_2_4_35.yaml │ │ │ ├── 1_3_2_5_36.yaml │ │ │ ├── 1_3_2_6_37.yaml │ │ │ ├── 2_0_0_1_38.yaml │ │ │ ├── 2_0_0_2_39.yaml │ │ │ ├── 2_0_1_1_40.yaml │ │ │ ├── 2_0_1_2_41.yaml │ │ │ ├── 2_0_1_3_42.yaml │ │ │ ├── 2_0_2_1_43.yaml │ │ │ ├── 2_0_2_2_44.yaml │ │ │ ├── 2_0_2_3_45.yaml │ │ │ ├── 2_0_2_4_46.yaml │ │ │ ├── 2_1_0_1_47.yaml │ │ │ ├── 2_1_0_2_48.yaml │ │ │ ├── 2_1_0_3_49.yaml │ │ │ ├── 2_1_1_1_50.yaml │ │ │ ├── 2_1_1_2_51.yaml │ │ │ ├── 2_1_1_3_52.yaml │ │ │ ├── 2_1_1_4_53.yaml │ │ │ ├── 2_1_2_2_54.yaml │ │ │ ├── 2_1_2_3_55.yaml │ │ │ ├── 2_1_2_4_56.yaml │ │ │ ├── 2_1_2_5_57.yaml │ │ │ ├── 2_2_0_1_58.yaml │ │ │ ├── 2_2_0_2_59.yaml │ │ │ ├── 2_2_0_3_60.yaml │ │ │ ├── 2_2_0_4_61.yaml │ │ │ ├── 2_2_1_2_62.yaml │ │ │ ├── 2_2_1_3_63.yaml │ │ │ ├── 2_2_1_4_64.yaml │ │ │ ├── 2_2_1_5_65.yaml │ │ │ ├── 2_2_2_3_66.yaml │ │ │ ├── 2_2_2_4_67.yaml │ │ │ ├── 2_2_2_5_68.yaml │ │ │ ├── 2_2_2_6_69.yaml │ │ │ ├── 2_3_0_2_70.yaml │ │ │ ├── 2_3_0_3_71.yaml │ │ │ ├── 2_3_0_4_72.yaml │ │ │ ├── 2_3_0_5_73.yaml │ │ │ ├── 2_3_1_3_74.yaml │ │ │ ├── 2_3_1_4_75.yaml │ │ │ ├── 2_3_1_5_76.yaml │ │ │ ├── 2_3_1_6_77.yaml │ │ │ ├── 2_3_2_4_78.yaml │ │ │ ├── 2_3_2_5_79.yaml │ │ │ ├── 2_3_2_6_80.yaml │ │ │ ├── 2_3_2_7_81.yaml │ │ │ ├── 3_0_0_1_82.yaml │ │ │ ├── 3_0_0_2_83.yaml │ │ │ ├── 3_0_0_3_84.yaml │ │ │ ├── 3_0_1_1_85.yaml │ │ │ ├── 3_0_1_2_86.yaml │ │ │ ├── 3_0_1_3_87.yaml │ │ │ ├── 3_0_1_4_88.yaml │ │ │ ├── 3_0_2_2_89.yaml │ │ │ ├── 3_0_2_3_90.yaml │ │ │ ├── 3_0_2_4_91.yaml │ │ │ ├── 3_0_2_5_92.yaml │ │ │ ├── 3_1_0_1_93.yaml │ │ │ ├── 3_1_0_2_94.yaml │ │ │ ├── 3_1_0_3_95.yaml │ │ │ ├── 3_1_0_4_96.yaml │ │ │ ├── 3_1_1_2_97.yaml │ │ │ ├── 3_1_1_3_98.yaml │ │ │ ├── 3_1_1_4_99.yaml │ │ │ ├── 3_1_1_5_100.yaml │ │ │ ├── 3_1_2_3_101.yaml │ │ │ ├── 3_1_2_4_102.yaml │ │ │ ├── 3_1_2_5_103.yaml │ │ │ ├── 3_1_2_6_104.yaml │ │ │ ├── 3_2_0_2_105.yaml │ │ │ ├── 3_2_0_3_106.yaml │ │ │ ├── 3_2_0_4_107.yaml │ │ │ ├── 3_2_0_5_108.yaml │ │ │ ├── 3_2_1_3_109.yaml │ │ │ ├── 3_2_1_4_110.yaml │ │ │ ├── 3_2_1_5_111.yaml │ │ │ ├── 3_2_1_6_112.yaml │ │ │ ├── 3_2_2_4_113.yaml │ │ │ ├── 3_2_2_5_114.yaml │ │ │ ├── 3_2_2_6_115.yaml │ │ │ ├── 3_2_2_7_116.yaml │ │ │ ├── 3_3_0_3_117.yaml │ │ │ ├── 3_3_0_4_118.yaml │ │ │ ├── 3_3_0_5_119.yaml │ │ │ ├── 3_3_0_6_120.yaml │ │ │ ├── 3_3_1_4_121.yaml │ │ │ ├── 3_3_1_5_122.yaml │ │ │ ├── 3_3_1_6_123.yaml │ │ │ ├── 3_3_1_7_124.yaml │ │ │ ├── 3_3_2_5_125.yaml │ │ │ ├── 3_3_2_6_126.yaml │ │ │ ├── 3_3_2_7_127.yaml │ │ │ └── 3_3_2_8_128.yaml │ │ ├── test_problem.yaml │ │ └── train │ │ │ ├── 1_0_0_1_0.yaml │ │ │ ├── 1_0_1_1_1.yaml │ │ │ ├── 1_0_1_2_2.yaml │ │ │ ├── 1_0_2_1_3.yaml │ │ │ ├── 1_0_2_2_4.yaml │ │ │ ├── 1_0_2_3_5.yaml │ │ │ ├── 1_1_0_1_6.yaml │ │ │ ├── 1_1_0_2_7.yaml │ │ │ ├── 1_1_1_1_8.yaml │ │ │ ├── 1_1_1_2_9.yaml │ │ │ ├── 1_1_1_3_10.yaml │ │ │ ├── 1_1_2_1_11.yaml │ │ │ ├── 1_1_2_2_12.yaml │ │ │ ├── 1_1_2_3_13.yaml │ │ │ ├── 1_1_2_4_14.yaml │ │ │ ├── 1_2_0_1_15.yaml │ │ │ ├── 1_2_0_2_16.yaml │ │ │ ├── 1_2_0_3_17.yaml │ │ │ ├── 1_2_1_1_18.yaml │ │ │ ├── 1_2_1_2_19.yaml │ │ │ ├── 1_2_1_3_20.yaml │ │ │ ├── 1_2_1_4_21.yaml │ │ │ ├── 1_2_2_2_22.yaml │ │ │ ├── 1_2_2_3_23.yaml │ │ │ ├── 1_2_2_4_24.yaml │ │ │ ├── 1_2_2_5_25.yaml │ │ │ ├── 1_3_0_1_26.yaml │ │ │ ├── 1_3_0_2_27.yaml │ │ │ ├── 1_3_0_3_28.yaml │ │ │ ├── 1_3_0_4_29.yaml │ │ │ ├── 1_3_1_2_30.yaml │ │ │ ├── 1_3_1_3_31.yaml │ │ │ ├── 1_3_1_4_32.yaml │ │ │ ├── 1_3_1_5_33.yaml │ │ │ ├── 1_3_2_3_34.yaml │ │ │ ├── 1_3_2_4_35.yaml │ │ │ ├── 1_3_2_5_36.yaml │ │ │ ├── 1_3_2_6_37.yaml │ │ │ ├── 2_0_0_1_38.yaml │ │ │ ├── 2_0_0_2_39.yaml │ │ │ ├── 2_0_1_1_40.yaml │ │ │ ├── 2_0_1_2_41.yaml │ │ │ ├── 2_0_1_3_42.yaml │ │ │ ├── 2_0_2_1_43.yaml │ │ │ ├── 2_0_2_2_44.yaml │ │ │ ├── 2_0_2_3_45.yaml │ │ │ ├── 2_0_2_4_46.yaml │ │ │ ├── 2_1_0_1_47.yaml │ │ │ ├── 2_1_0_2_48.yaml │ │ │ ├── 2_1_0_3_49.yaml │ │ │ ├── 2_1_1_1_50.yaml │ │ │ ├── 2_1_1_2_51.yaml │ │ │ ├── 2_1_1_3_52.yaml │ │ │ ├── 2_1_1_4_53.yaml │ │ │ ├── 2_1_2_2_54.yaml │ │ │ ├── 2_1_2_3_55.yaml │ │ │ ├── 2_1_2_4_56.yaml │ │ │ ├── 2_1_2_5_57.yaml │ │ │ ├── 2_2_0_1_58.yaml │ │ │ ├── 2_2_0_2_59.yaml │ │ │ ├── 2_2_0_3_60.yaml │ │ │ ├── 2_2_0_4_61.yaml │ │ │ ├── 2_2_1_2_62.yaml │ │ │ ├── 2_2_1_3_63.yaml │ │ │ ├── 2_2_1_4_64.yaml │ │ │ ├── 2_2_1_5_65.yaml │ │ │ ├── 2_2_2_3_66.yaml │ │ │ ├── 2_2_2_4_67.yaml │ │ │ ├── 2_2_2_5_68.yaml │ │ │ ├── 2_2_2_6_69.yaml │ │ │ ├── 2_3_0_2_70.yaml │ │ │ ├── 2_3_0_3_71.yaml │ │ │ ├── 2_3_0_4_72.yaml │ │ │ ├── 2_3_0_5_73.yaml │ │ │ ├── 2_3_1_3_74.yaml │ │ │ ├── 2_3_1_4_75.yaml │ │ │ ├── 2_3_1_5_76.yaml │ │ │ ├── 2_3_1_6_77.yaml │ │ │ ├── 2_3_2_4_78.yaml │ │ │ ├── 2_3_2_5_79.yaml │ │ │ ├── 2_3_2_6_80.yaml │ │ │ ├── 2_3_2_7_81.yaml │ │ │ ├── 3_0_0_1_82.yaml │ │ │ ├── 3_0_0_2_83.yaml │ │ │ ├── 3_0_0_3_84.yaml │ │ │ ├── 3_0_1_1_85.yaml │ │ │ ├── 3_0_1_2_86.yaml │ │ │ ├── 3_0_1_3_87.yaml │ │ │ ├── 3_0_1_4_88.yaml │ │ │ ├── 3_0_2_2_89.yaml │ │ │ ├── 3_0_2_3_90.yaml │ │ │ ├── 3_0_2_4_91.yaml │ │ │ ├── 3_0_2_5_92.yaml │ │ │ ├── 3_1_0_1_93.yaml │ │ │ ├── 3_1_0_2_94.yaml │ │ │ ├── 3_1_0_3_95.yaml │ │ │ ├── 3_1_0_4_96.yaml │ │ │ ├── 3_1_1_2_97.yaml │ │ │ ├── 3_1_1_3_98.yaml │ │ │ ├── 3_1_1_4_99.yaml │ │ │ ├── 3_1_1_5_100.yaml │ │ │ ├── 3_1_2_3_101.yaml │ │ │ ├── 3_1_2_4_102.yaml │ │ │ ├── 3_1_2_5_103.yaml │ │ │ ├── 3_1_2_6_104.yaml │ │ │ ├── 3_2_0_2_105.yaml │ │ │ ├── 3_2_0_3_106.yaml │ │ │ ├── 3_2_0_4_107.yaml │ │ │ ├── 3_2_0_5_108.yaml │ │ │ ├── 3_2_1_3_109.yaml │ │ │ ├── 3_2_1_4_110.yaml │ │ │ ├── 3_2_1_5_111.yaml │ │ │ ├── 3_2_1_6_112.yaml │ │ │ ├── 3_2_2_4_113.yaml │ │ │ ├── 3_2_2_5_114.yaml │ │ │ ├── 3_2_2_6_115.yaml │ │ │ ├── 3_2_2_7_116.yaml │ │ │ ├── 3_3_0_3_117.yaml │ │ │ ├── 3_3_0_4_118.yaml │ │ │ ├── 3_3_0_5_119.yaml │ │ │ ├── 3_3_0_6_120.yaml │ │ │ ├── 3_3_1_4_121.yaml │ │ │ ├── 3_3_1_5_122.yaml │ │ │ ├── 3_3_1_6_123.yaml │ │ │ ├── 3_3_1_7_124.yaml │ │ │ ├── 3_3_2_5_125.yaml │ │ │ ├── 3_3_2_6_126.yaml │ │ │ ├── 3_3_2_7_127.yaml │ │ │ └── 3_3_2_8_128.yaml │ ├── kitchen_streamsv2 │ │ ├── __init__.py │ │ └── streams.py │ ├── problems │ │ ├── custom_problem.yaml │ │ └── kitchen_problem.yaml │ ├── run.py │ └── stream.pddl ├── kitchen_no_fluents │ ├── domain.pddl │ ├── kitchen_data_generation │ │ ├── __init__.py │ │ └── make_problem.py │ ├── kitchen_streamsv2 │ │ ├── __init__.py │ │ └── streams.py │ ├── problems │ │ ├── custom_problem.yaml │ │ └── kitchen_problem.yaml │ ├── run.py │ ├── stream.pddl │ └── temp │ │ └── domain.pddl ├── logparse.py ├── main.py ├── mega_domain │ ├── domain.pddl │ ├── mega_streams │ │ ├── __init__.py │ │ └── streams.py │ ├── problems │ │ ├── default_blocks_world.yaml │ │ ├── default_hanoi.yaml │ │ └── default_kitchen.yaml │ ├── run.py │ └── stream.pddl ├── preview_problem.py ├── retired │ ├── blocks_world │ │ ├── blocks_world_streams │ │ │ ├── __init__.py │ │ │ └── streams.py │ │ ├── five_action │ │ │ ├── domain.pddl │ │ │ └── stream.pddl │ │ ├── problems │ │ │ ├── blocks_world_problem.yaml │ │ │ └── one_arm_problem.yaml │ │ ├── run.py │ │ ├── temp │ │ │ └── domain.pddl │ │ └── three_action │ │ │ ├── domain.pddl │ │ │ └── stream.pddl │ ├── blocks_world_table_spec │ │ ├── blocks_world_streams │ │ │ ├── __init__.py │ │ │ └── streams.py │ │ ├── pddl_spec │ │ │ ├── domain.pddl │ │ │ └── stream.pddl │ │ ├── problems │ │ │ └── blocks_world_problem.yaml │ │ ├── run.py │ │ └── temp │ │ │ └── domain.pddl │ ├── kitchen │ │ ├── domain.pddl │ │ ├── kitchen_streams │ │ │ ├── __init__.py │ │ │ └── streams.py │ │ ├── problems │ │ │ └── kitchen_problem.yaml │ │ ├── run.py │ │ ├── stream.pddl │ │ └── temp │ │ │ └── domain.pddl │ └── pick-place-regions │ │ ├── problems │ │ └── test_problem.yaml │ │ ├── run.py │ │ └── temp │ │ └── domain.pddl ├── run.sh ├── shared.py ├── shared_ploi.py ├── start_meschat_server.py ├── test_problem.yaml └── two_arm_blocks_world │ ├── blocks_world_streams │ ├── __init__.py │ └── streams.py │ ├── domain.pddl │ ├── generate_problems.py │ ├── problems │ └── two_arm.yaml │ ├── run.py │ ├── stream.pddl │ ├── temp │ └── domain.pddl │ └── two_arm_data_generation │ ├── __init__.py │ ├── make_problem.py │ └── test_problem.yaml ├── learning ├── __init__.py ├── data │ ├── experiments │ │ ├── blocksworld_V2_adaptive.json │ │ ├── blocksworld_complexitycollector.json │ │ ├── blocksworld_complexitycollector_lazy.json │ │ └── kitchen_diffclasses.json │ └── index.json ├── data_models.py ├── gnn │ ├── data.py │ ├── main.py │ ├── metrics.py │ ├── models.py │ ├── ploi.py │ ├── test │ │ ├── hanoi_solver.py │ │ ├── notes.md │ │ ├── test_batching.py │ │ └── test_streamclassv2.py │ └── train.py ├── oracle.py ├── pddlstream_utils.py ├── poisson_disc_sampling.py ├── scripts │ ├── blocksworld.py │ ├── consensus.py │ ├── hanoi.py │ ├── kitchen.py │ ├── kitchen_diffclasses.py │ └── test_graph_vis.py ├── test │ └── test_preimages.py └── visualization.py ├── panda_station ├── README.md ├── __init__.py ├── construction_utils.py ├── directives │ ├── basement.yaml │ ├── blocks_world.yaml │ ├── hanoi.yaml │ ├── inspect_directive.py │ ├── kitchen.yaml │ ├── kitchen_planning.yaml │ ├── one_arm_blocks_world.yaml │ ├── three_tables.yaml │ └── video.yaml ├── grasping_and_placing.py ├── models │ ├── README.md │ ├── basement │ │ ├── images │ │ │ ├── setup1.jpg │ │ │ ├── setup2.jpg │ │ │ └── wooden_table.jpg │ │ ├── measurements.md │ │ ├── package.xml │ │ └── sdf │ │ │ ├── PFM52503.sdf │ │ │ ├── bracket.sdf │ │ │ ├── ground_plane.sdf │ │ │ ├── indigo_block.sdf │ │ │ ├── make_blocks.py │ │ │ ├── pink_block.sdf │ │ │ ├── red_block.sdf │ │ │ ├── simplified_replica.sdf │ │ │ ├── template_block.sdf │ │ │ ├── wood_block.sdf │ │ │ ├── wooden_table.sdf │ │ │ └── yellow_block.sdf │ ├── blocks_world │ │ ├── package.xml │ │ └── sdf │ │ │ ├── block0.sdf │ │ │ ├── block1.sdf │ │ │ ├── block10.sdf │ │ │ ├── block11.sdf │ │ │ ├── block12.sdf │ │ │ ├── block13.sdf │ │ │ ├── block14.sdf │ │ │ ├── block15.sdf │ │ │ ├── block16.sdf │ │ │ ├── block17.sdf │ │ │ ├── block18.sdf │ │ │ ├── block19.sdf │ │ │ ├── block2.sdf │ │ │ ├── block3.sdf │ │ │ ├── block4.sdf │ │ │ ├── block5.sdf │ │ │ ├── block6.sdf │ │ │ ├── block7.sdf │ │ │ ├── block8.sdf │ │ │ ├── block9.sdf │ │ │ ├── blocker_block.sdf │ │ │ ├── blue_block.sdf │ │ │ ├── blue_table.sdf │ │ │ ├── green_block.sdf │ │ │ ├── green_table.sdf │ │ │ ├── ground_plane.sdf │ │ │ ├── indigo_block.sdf │ │ │ ├── indigo_table.sdf │ │ │ ├── make_blocks.py │ │ │ ├── make_tables.sdf │ │ │ ├── orange_block.sdf │ │ │ ├── orange_table.sdf │ │ │ ├── red_block.sdf │ │ │ ├── red_table.sdf │ │ │ ├── square_table.sdf │ │ │ ├── template_block.sdf │ │ │ ├── template_table.sdf │ │ │ ├── yellow_block.sdf │ │ │ └── yellow_table.sdf │ ├── hanoi │ │ ├── package.xml │ │ └── sdf │ │ │ ├── disc_10.sdf │ │ │ ├── disc_12.sdf │ │ │ ├── disc_14.sdf │ │ │ ├── disc_16.sdf │ │ │ ├── disc_18.sdf │ │ │ ├── disc_20.sdf │ │ │ ├── disc_22.sdf │ │ │ ├── disc_24.sdf │ │ │ ├── disc_26.sdf │ │ │ ├── disc_27.sdf │ │ │ ├── disc_28.sdf │ │ │ ├── disc_29.sdf │ │ │ ├── disc_30.sdf │ │ │ ├── disc_32.sdf │ │ │ ├── disc_34.sdf │ │ │ ├── disc_36.sdf │ │ │ ├── make_discs.py │ │ │ ├── template_disc.sdf │ │ │ └── wooden_table.sdf │ ├── inspect_model.py │ ├── kitchen │ │ ├── meshes │ │ │ └── Shoshan_Serving_Tray.obj │ │ ├── package.xml │ │ └── sdf │ │ │ ├── buffer_sink.sdf │ │ │ ├── cabbage.sdf │ │ │ ├── glass.sdf │ │ │ ├── glass_table.sdf │ │ │ ├── green_placemat.sdf │ │ │ ├── ground_plane.sdf │ │ │ ├── low_table_square_white.sdf │ │ │ ├── low_table_white.sdf │ │ │ ├── placemat.sdf │ │ │ ├── plate.sdf │ │ │ ├── raddish.sdf │ │ │ ├── serving_table.sdf │ │ │ ├── sink.sdf │ │ │ ├── stove.sdf │ │ │ └── tray.sdf │ ├── manipulands │ │ ├── meshes │ │ │ ├── 003_cracker_box_textured.mtl │ │ │ ├── 003_cracker_box_textured.obj │ │ │ ├── 003_cracker_box_textured.png │ │ │ ├── 004_sugar_box_textured.mtl │ │ │ ├── 004_sugar_box_textured.obj │ │ │ ├── 004_sugar_box_textured.png │ │ │ ├── 005_tomato_soup_can_textured.mtl │ │ │ ├── 005_tomato_soup_can_textured.obj │ │ │ ├── 005_tomato_soup_can_textured.png │ │ │ ├── 006_mustard_bottle_textured.mtl │ │ │ ├── 006_mustard_bottle_textured.obj │ │ │ ├── 006_mustard_bottle_textured.png │ │ │ ├── 009_gelatin_box_textured.mtl │ │ │ ├── 009_gelatin_box_textured.obj │ │ │ ├── 009_gelatin_box_textured.png │ │ │ ├── 010_potted_meat_can_textured.mtl │ │ │ ├── 010_potted_meat_can_textured.obj │ │ │ ├── 010_potted_meat_can_textured.png │ │ │ └── LICENSE.txt │ │ ├── package.xml │ │ └── sdf │ │ │ ├── cracker_box.sdf │ │ │ ├── dumbbell.sdf │ │ │ ├── foam_brick.sdf │ │ │ ├── gelatin_box.sdf │ │ │ ├── meat_can.sdf │ │ │ ├── mustard.sdf │ │ │ ├── soup_can.sdf │ │ │ └── sugar_box.sdf │ ├── model_utils.py │ ├── modified_panda_hand │ │ ├── LICENSE │ │ ├── LICENSE.TXT │ │ ├── meshes │ │ │ ├── finger.mtl │ │ │ ├── finger.obj │ │ │ ├── hand.mtl │ │ │ └── hand.obj │ │ ├── package.xml │ │ └── sdf │ │ │ ├── blocked_panda_hand.sdf │ │ │ ├── panda_hand.sdf │ │ │ └── welded_panda_hand.sdf │ ├── tables │ │ ├── package.xml │ │ └── sdf │ │ │ ├── big_white_table.sdf │ │ │ ├── round_target.sdf │ │ │ └── square_target.sdf │ └── video │ │ ├── meshes │ │ ├── finger.mtl │ │ ├── finger.obj │ │ ├── hand.mtl │ │ └── hand.obj │ │ ├── package.xml │ │ └── sdf │ │ ├── hand_and_block_0.sdf │ │ ├── hand_and_block_1.sdf │ │ ├── hand_and_block_2.sdf │ │ ├── hand_and_block_3.sdf │ │ ├── hand_and_block_4.sdf │ │ ├── hand_and_block_5.sdf │ │ ├── hand_and_block_6.sdf │ │ ├── hand_and_block_7.sdf │ │ ├── hand_and_block_8.sdf │ │ ├── hand_and_block_9.sdf │ │ ├── make_hand_and_blocks.py │ │ ├── template_hand_and_block.sdf │ │ └── test_hand_and_block.sdf ├── panda_hand_position_controller.py ├── panda_station.py ├── plan_to_trajectory.py ├── planning_utils.py ├── stream_utils.py ├── test │ ├── construction_utils_test.py │ ├── panda_hand_position_controller_test.py │ ├── panda_station_test.py │ ├── planning_utils_test.py │ └── test_files │ │ ├── README.md │ │ └── three_tables.yaml ├── trajectory_director.py ├── trajectory_generation.py └── utils.py ├── retired └── test │ ├── README.md │ ├── grasping_testing.py │ ├── meshcat_server.ipynb │ ├── model_introspection.ipynb │ ├── motion_planning_testing.py │ ├── multistation_testing.py │ ├── placement_testing.py │ ├── pyvis_test.py │ ├── stable_place_testing.py │ ├── start_meschat_server.py │ └── view_directive.py └── tamp_statistics ├── __init__.py ├── plotting.py ├── retired └── process_stats.py └── test ├── stats.json └── test_plotting.py /.env: -------------------------------------------------------------------------------- 1 | PYTHONPATH=pddlstream:. -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/.gitmodules -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/README.md -------------------------------------------------------------------------------- /docker_scripts/.tmux.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/docker_scripts/.tmux.conf -------------------------------------------------------------------------------- /docker_scripts/.vimrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/docker_scripts/.vimrc -------------------------------------------------------------------------------- /docker_scripts/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/docker_scripts/Dockerfile -------------------------------------------------------------------------------- /docker_scripts/docker_build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/docker_scripts/docker_build.sh -------------------------------------------------------------------------------- /docker_scripts/docker_run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/docker_scripts/docker_run.sh -------------------------------------------------------------------------------- /docker_scripts/entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/docker_scripts/entrypoint.sh -------------------------------------------------------------------------------- /docker_scripts/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/docker_scripts/requirements.txt -------------------------------------------------------------------------------- /experiments/basement_blocks_world/basement_blocks_world_streams/__init__.py: -------------------------------------------------------------------------------- 1 | from .streams import * 2 | -------------------------------------------------------------------------------- /experiments/basement_blocks_world/calibrate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/experiments/basement_blocks_world/calibrate.py -------------------------------------------------------------------------------- /experiments/basement_blocks_world/calibration_confs.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/experiments/basement_blocks_world/calibration_confs.txt -------------------------------------------------------------------------------- /experiments/basement_blocks_world/data_generation/__init__.py: -------------------------------------------------------------------------------- 1 | from . import make_problem -------------------------------------------------------------------------------- /experiments/basement_blocks_world/data_generation/make_problem.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/experiments/basement_blocks_world/data_generation/make_problem.py -------------------------------------------------------------------------------- /experiments/basement_blocks_world/data_generation/test/2_1_2_0.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/experiments/basement_blocks_world/data_generation/test/2_1_2_0.yaml -------------------------------------------------------------------------------- /experiments/basement_blocks_world/data_generation/test/2_1_2_2.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/experiments/basement_blocks_world/data_generation/test/2_1_2_2.yaml -------------------------------------------------------------------------------- /experiments/basement_blocks_world/data_generation/test/2_2_2_1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/experiments/basement_blocks_world/data_generation/test/2_2_2_1.yaml -------------------------------------------------------------------------------- /experiments/basement_blocks_world/data_generation/test/2_2_2_3.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/experiments/basement_blocks_world/data_generation/test/2_2_2_3.yaml -------------------------------------------------------------------------------- /experiments/basement_blocks_world/data_generation/test/3_1_2_4.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/experiments/basement_blocks_world/data_generation/test/3_1_2_4.yaml -------------------------------------------------------------------------------- /experiments/basement_blocks_world/data_generation/test/3_1_3_5.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/experiments/basement_blocks_world/data_generation/test/3_1_3_5.yaml -------------------------------------------------------------------------------- /experiments/basement_blocks_world/data_generation/test/3_2_2_6.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/experiments/basement_blocks_world/data_generation/test/3_2_2_6.yaml -------------------------------------------------------------------------------- /experiments/basement_blocks_world/data_generation/test/3_2_3_7.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/experiments/basement_blocks_world/data_generation/test/3_2_3_7.yaml -------------------------------------------------------------------------------- /experiments/basement_blocks_world/data_generation/test/3_3_2_8.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/experiments/basement_blocks_world/data_generation/test/3_3_2_8.yaml -------------------------------------------------------------------------------- /experiments/basement_blocks_world/data_generation/test/3_3_3_9.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/experiments/basement_blocks_world/data_generation/test/3_3_3_9.yaml -------------------------------------------------------------------------------- /experiments/basement_blocks_world/data_generation/test_problem.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/experiments/basement_blocks_world/data_generation/test_problem.yaml -------------------------------------------------------------------------------- /experiments/basement_blocks_world/domain.pddl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/experiments/basement_blocks_world/domain.pddl -------------------------------------------------------------------------------- /experiments/basement_blocks_world/problems/default_problem.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/experiments/basement_blocks_world/problems/default_problem.yaml -------------------------------------------------------------------------------- /experiments/basement_blocks_world/problems/test_problem.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/experiments/basement_blocks_world/problems/test_problem.yaml -------------------------------------------------------------------------------- /experiments/basement_blocks_world/run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/experiments/basement_blocks_world/run.py -------------------------------------------------------------------------------- /experiments/basement_blocks_world/stream.pddl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/experiments/basement_blocks_world/stream.pddl -------------------------------------------------------------------------------- /experiments/blocks_world/blocks_world_streams/__init__.py: -------------------------------------------------------------------------------- 1 | from .streams import * 2 | -------------------------------------------------------------------------------- /experiments/blocks_world/blocks_world_streams/streams.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/experiments/blocks_world/blocks_world_streams/streams.py -------------------------------------------------------------------------------- /experiments/blocks_world/blocks_world_streams/test_grasping.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/experiments/blocks_world/blocks_world_streams/test_grasping.py -------------------------------------------------------------------------------- /experiments/blocks_world/data_generation/__init__.py: -------------------------------------------------------------------------------- 1 | from . import make_problem -------------------------------------------------------------------------------- /experiments/blocks_world/data_generation/clutter/test/2_4_1_10.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/experiments/blocks_world/data_generation/clutter/test/2_4_1_10.yaml -------------------------------------------------------------------------------- /experiments/blocks_world/data_generation/clutter/test/2_4_1_18.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/experiments/blocks_world/data_generation/clutter/test/2_4_1_18.yaml -------------------------------------------------------------------------------- /experiments/blocks_world/data_generation/clutter/test/2_4_1_21.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/experiments/blocks_world/data_generation/clutter/test/2_4_1_21.yaml -------------------------------------------------------------------------------- /experiments/blocks_world/data_generation/clutter/test/2_4_1_41.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/experiments/blocks_world/data_generation/clutter/test/2_4_1_41.yaml -------------------------------------------------------------------------------- /experiments/blocks_world/data_generation/clutter/test/2_4_1_45.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/experiments/blocks_world/data_generation/clutter/test/2_4_1_45.yaml -------------------------------------------------------------------------------- /experiments/blocks_world/data_generation/clutter/test/2_4_1_47.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/experiments/blocks_world/data_generation/clutter/test/2_4_1_47.yaml -------------------------------------------------------------------------------- /experiments/blocks_world/data_generation/clutter/test/2_4_1_51.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/experiments/blocks_world/data_generation/clutter/test/2_4_1_51.yaml -------------------------------------------------------------------------------- /experiments/blocks_world/data_generation/clutter/test/2_4_1_67.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/experiments/blocks_world/data_generation/clutter/test/2_4_1_67.yaml -------------------------------------------------------------------------------- /experiments/blocks_world/data_generation/clutter/test/2_4_1_68.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/experiments/blocks_world/data_generation/clutter/test/2_4_1_68.yaml -------------------------------------------------------------------------------- /experiments/blocks_world/data_generation/clutter/test/2_4_1_86.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/experiments/blocks_world/data_generation/clutter/test/2_4_1_86.yaml -------------------------------------------------------------------------------- /experiments/blocks_world/data_generation/clutter/test/2_4_1_90.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/experiments/blocks_world/data_generation/clutter/test/2_4_1_90.yaml -------------------------------------------------------------------------------- /experiments/blocks_world/data_generation/clutter/test/2_4_1_93.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/experiments/blocks_world/data_generation/clutter/test/2_4_1_93.yaml -------------------------------------------------------------------------------- /experiments/blocks_world/data_generation/clutter/test/2_4_2_17.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/experiments/blocks_world/data_generation/clutter/test/2_4_2_17.yaml -------------------------------------------------------------------------------- /experiments/blocks_world/data_generation/clutter/test/2_4_2_22.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/experiments/blocks_world/data_generation/clutter/test/2_4_2_22.yaml -------------------------------------------------------------------------------- /experiments/blocks_world/data_generation/clutter/test/2_4_2_46.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/experiments/blocks_world/data_generation/clutter/test/2_4_2_46.yaml -------------------------------------------------------------------------------- /experiments/blocks_world/data_generation/clutter/test/2_4_2_57.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/experiments/blocks_world/data_generation/clutter/test/2_4_2_57.yaml -------------------------------------------------------------------------------- /experiments/blocks_world/data_generation/generate_problems.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/experiments/blocks_world/data_generation/generate_problems.py -------------------------------------------------------------------------------- /experiments/blocks_world/data_generation/make_problem.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/experiments/blocks_world/data_generation/make_problem.py -------------------------------------------------------------------------------- /experiments/blocks_world/data_generation/random/test/3_2_3_4.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/experiments/blocks_world/data_generation/random/test/3_2_3_4.yaml -------------------------------------------------------------------------------- /experiments/blocks_world/data_generation/random/test/3_6_3_0.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/experiments/blocks_world/data_generation/random/test/3_6_3_0.yaml -------------------------------------------------------------------------------- /experiments/blocks_world/data_generation/random/test/3_6_3_5.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/experiments/blocks_world/data_generation/random/test/3_6_3_5.yaml -------------------------------------------------------------------------------- /experiments/blocks_world/data_generation/random/test/4_2_1_2.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/experiments/blocks_world/data_generation/random/test/4_2_1_2.yaml -------------------------------------------------------------------------------- /experiments/blocks_world/data_generation/random/test/5_1_2_3.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/experiments/blocks_world/data_generation/random/test/5_1_2_3.yaml -------------------------------------------------------------------------------- /experiments/blocks_world/data_generation/random/test/6_4_6_9.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/experiments/blocks_world/data_generation/random/test/6_4_6_9.yaml -------------------------------------------------------------------------------- /experiments/blocks_world/data_generation/random/test/7_2_1_8.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/experiments/blocks_world/data_generation/random/test/7_2_1_8.yaml -------------------------------------------------------------------------------- /experiments/blocks_world/data_generation/random/test/7_4_1_1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/experiments/blocks_world/data_generation/random/test/7_4_1_1.yaml -------------------------------------------------------------------------------- /experiments/blocks_world/data_generation/random/test/7_5_6_7.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/experiments/blocks_world/data_generation/random/test/7_5_6_7.yaml -------------------------------------------------------------------------------- /experiments/blocks_world/data_generation/random/test/7_6_3_6.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/experiments/blocks_world/data_generation/random/test/7_6_3_6.yaml -------------------------------------------------------------------------------- /experiments/blocks_world/data_generation/test_problem.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/experiments/blocks_world/data_generation/test_problem.yaml -------------------------------------------------------------------------------- /experiments/blocks_world/domain.pddl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/experiments/blocks_world/domain.pddl -------------------------------------------------------------------------------- /experiments/blocks_world/problems/default_problem.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/experiments/blocks_world/problems/default_problem.yaml -------------------------------------------------------------------------------- /experiments/blocks_world/problems/test_problem.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/experiments/blocks_world/problems/test_problem.yaml -------------------------------------------------------------------------------- /experiments/blocks_world/run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/experiments/blocks_world/run.py -------------------------------------------------------------------------------- /experiments/blocks_world/stream.pddl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/experiments/blocks_world/stream.pddl -------------------------------------------------------------------------------- /experiments/blocks_world/temp/domain.pddl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/experiments/blocks_world/temp/domain.pddl -------------------------------------------------------------------------------- /experiments/collect-labels.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/experiments/collect-labels.sh -------------------------------------------------------------------------------- /experiments/hanoi/data_generation/generate_problems.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/experiments/hanoi/data_generation/generate_problems.py -------------------------------------------------------------------------------- /experiments/hanoi/data_generation/make_hanoi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/experiments/hanoi/data_generation/make_hanoi.py -------------------------------------------------------------------------------- /experiments/hanoi/data_generation/template_problem.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/experiments/hanoi/data_generation/template_problem.yaml -------------------------------------------------------------------------------- /experiments/hanoi/data_generation/test/blue_peg_green_peg_2.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/experiments/hanoi/data_generation/test/blue_peg_green_peg_2.yaml -------------------------------------------------------------------------------- /experiments/hanoi/data_generation/test/blue_peg_green_peg_3.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/experiments/hanoi/data_generation/test/blue_peg_green_peg_3.yaml -------------------------------------------------------------------------------- /experiments/hanoi/data_generation/test/blue_peg_green_peg_4.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/experiments/hanoi/data_generation/test/blue_peg_green_peg_4.yaml -------------------------------------------------------------------------------- /experiments/hanoi/data_generation/test/blue_peg_green_peg_5.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/experiments/hanoi/data_generation/test/blue_peg_green_peg_5.yaml -------------------------------------------------------------------------------- /experiments/hanoi/data_generation/test/blue_peg_green_peg_6.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/experiments/hanoi/data_generation/test/blue_peg_green_peg_6.yaml -------------------------------------------------------------------------------- /experiments/hanoi/data_generation/test/blue_peg_green_peg_7.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/experiments/hanoi/data_generation/test/blue_peg_green_peg_7.yaml -------------------------------------------------------------------------------- /experiments/hanoi/data_generation/test/blue_peg_green_peg_8.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/experiments/hanoi/data_generation/test/blue_peg_green_peg_8.yaml -------------------------------------------------------------------------------- /experiments/hanoi/data_generation/test/blue_peg_green_peg_9.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/experiments/hanoi/data_generation/test/blue_peg_green_peg_9.yaml -------------------------------------------------------------------------------- /experiments/hanoi/data_generation/test/blue_peg_red_peg_2.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/experiments/hanoi/data_generation/test/blue_peg_red_peg_2.yaml -------------------------------------------------------------------------------- /experiments/hanoi/data_generation/test/blue_peg_red_peg_3.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/experiments/hanoi/data_generation/test/blue_peg_red_peg_3.yaml -------------------------------------------------------------------------------- /experiments/hanoi/data_generation/test/blue_peg_red_peg_4.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/experiments/hanoi/data_generation/test/blue_peg_red_peg_4.yaml -------------------------------------------------------------------------------- /experiments/hanoi/data_generation/test/blue_peg_red_peg_5.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/experiments/hanoi/data_generation/test/blue_peg_red_peg_5.yaml -------------------------------------------------------------------------------- /experiments/hanoi/data_generation/test/blue_peg_red_peg_6.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/experiments/hanoi/data_generation/test/blue_peg_red_peg_6.yaml -------------------------------------------------------------------------------- /experiments/hanoi/data_generation/test/blue_peg_red_peg_7.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/experiments/hanoi/data_generation/test/blue_peg_red_peg_7.yaml -------------------------------------------------------------------------------- /experiments/hanoi/data_generation/test/blue_peg_red_peg_8.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/experiments/hanoi/data_generation/test/blue_peg_red_peg_8.yaml -------------------------------------------------------------------------------- /experiments/hanoi/data_generation/test/blue_peg_red_peg_9.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/experiments/hanoi/data_generation/test/blue_peg_red_peg_9.yaml -------------------------------------------------------------------------------- /experiments/hanoi/data_generation/test/green_peg_blue_peg_2.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/experiments/hanoi/data_generation/test/green_peg_blue_peg_2.yaml -------------------------------------------------------------------------------- /experiments/hanoi/data_generation/test/green_peg_blue_peg_3.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/experiments/hanoi/data_generation/test/green_peg_blue_peg_3.yaml -------------------------------------------------------------------------------- /experiments/hanoi/data_generation/test/green_peg_blue_peg_4.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/experiments/hanoi/data_generation/test/green_peg_blue_peg_4.yaml -------------------------------------------------------------------------------- /experiments/hanoi/data_generation/test/green_peg_blue_peg_5.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/experiments/hanoi/data_generation/test/green_peg_blue_peg_5.yaml -------------------------------------------------------------------------------- /experiments/hanoi/data_generation/test/green_peg_blue_peg_6.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/experiments/hanoi/data_generation/test/green_peg_blue_peg_6.yaml -------------------------------------------------------------------------------- /experiments/hanoi/data_generation/test/green_peg_blue_peg_7.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/experiments/hanoi/data_generation/test/green_peg_blue_peg_7.yaml -------------------------------------------------------------------------------- /experiments/hanoi/data_generation/test/green_peg_blue_peg_8.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/experiments/hanoi/data_generation/test/green_peg_blue_peg_8.yaml -------------------------------------------------------------------------------- /experiments/hanoi/data_generation/test/green_peg_blue_peg_9.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/experiments/hanoi/data_generation/test/green_peg_blue_peg_9.yaml -------------------------------------------------------------------------------- /experiments/hanoi/data_generation/test/green_peg_red_peg_2.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/experiments/hanoi/data_generation/test/green_peg_red_peg_2.yaml -------------------------------------------------------------------------------- /experiments/hanoi/data_generation/test/green_peg_red_peg_3.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/experiments/hanoi/data_generation/test/green_peg_red_peg_3.yaml -------------------------------------------------------------------------------- /experiments/hanoi/data_generation/test/green_peg_red_peg_4.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/experiments/hanoi/data_generation/test/green_peg_red_peg_4.yaml -------------------------------------------------------------------------------- /experiments/hanoi/data_generation/test/green_peg_red_peg_5.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/experiments/hanoi/data_generation/test/green_peg_red_peg_5.yaml -------------------------------------------------------------------------------- /experiments/hanoi/data_generation/test/green_peg_red_peg_6.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/experiments/hanoi/data_generation/test/green_peg_red_peg_6.yaml -------------------------------------------------------------------------------- /experiments/hanoi/data_generation/test/green_peg_red_peg_7.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/experiments/hanoi/data_generation/test/green_peg_red_peg_7.yaml -------------------------------------------------------------------------------- /experiments/hanoi/data_generation/test/green_peg_red_peg_8.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/experiments/hanoi/data_generation/test/green_peg_red_peg_8.yaml -------------------------------------------------------------------------------- /experiments/hanoi/data_generation/test/green_peg_red_peg_9.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/experiments/hanoi/data_generation/test/green_peg_red_peg_9.yaml -------------------------------------------------------------------------------- /experiments/hanoi/data_generation/test/red_peg_blue_peg_2.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/experiments/hanoi/data_generation/test/red_peg_blue_peg_2.yaml -------------------------------------------------------------------------------- /experiments/hanoi/data_generation/test/red_peg_blue_peg_3.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/experiments/hanoi/data_generation/test/red_peg_blue_peg_3.yaml -------------------------------------------------------------------------------- /experiments/hanoi/data_generation/test/red_peg_blue_peg_4.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/experiments/hanoi/data_generation/test/red_peg_blue_peg_4.yaml -------------------------------------------------------------------------------- /experiments/hanoi/data_generation/test/red_peg_blue_peg_5.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/experiments/hanoi/data_generation/test/red_peg_blue_peg_5.yaml -------------------------------------------------------------------------------- /experiments/hanoi/data_generation/test/red_peg_blue_peg_6.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/experiments/hanoi/data_generation/test/red_peg_blue_peg_6.yaml -------------------------------------------------------------------------------- /experiments/hanoi/data_generation/test/red_peg_blue_peg_7.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/experiments/hanoi/data_generation/test/red_peg_blue_peg_7.yaml -------------------------------------------------------------------------------- /experiments/hanoi/data_generation/test/red_peg_blue_peg_8.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/experiments/hanoi/data_generation/test/red_peg_blue_peg_8.yaml -------------------------------------------------------------------------------- /experiments/hanoi/data_generation/test/red_peg_blue_peg_9.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/experiments/hanoi/data_generation/test/red_peg_blue_peg_9.yaml -------------------------------------------------------------------------------- /experiments/hanoi/data_generation/test/red_peg_green_peg_2.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/experiments/hanoi/data_generation/test/red_peg_green_peg_2.yaml -------------------------------------------------------------------------------- /experiments/hanoi/data_generation/test/red_peg_green_peg_3.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/experiments/hanoi/data_generation/test/red_peg_green_peg_3.yaml -------------------------------------------------------------------------------- /experiments/hanoi/data_generation/test/red_peg_green_peg_4.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/experiments/hanoi/data_generation/test/red_peg_green_peg_4.yaml -------------------------------------------------------------------------------- /experiments/hanoi/data_generation/test/red_peg_green_peg_5.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/experiments/hanoi/data_generation/test/red_peg_green_peg_5.yaml -------------------------------------------------------------------------------- /experiments/hanoi/data_generation/test/red_peg_green_peg_6.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/experiments/hanoi/data_generation/test/red_peg_green_peg_6.yaml -------------------------------------------------------------------------------- /experiments/hanoi/data_generation/test/red_peg_green_peg_7.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/experiments/hanoi/data_generation/test/red_peg_green_peg_7.yaml -------------------------------------------------------------------------------- /experiments/hanoi/data_generation/test/red_peg_green_peg_8.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/experiments/hanoi/data_generation/test/red_peg_green_peg_8.yaml -------------------------------------------------------------------------------- /experiments/hanoi/data_generation/test/red_peg_green_peg_9.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/experiments/hanoi/data_generation/test/red_peg_green_peg_9.yaml -------------------------------------------------------------------------------- /experiments/hanoi/data_generation/test_problem.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/experiments/hanoi/data_generation/test_problem.yaml -------------------------------------------------------------------------------- /experiments/hanoi/data_generation/train/blue_peg_green_peg_2.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/experiments/hanoi/data_generation/train/blue_peg_green_peg_2.yaml -------------------------------------------------------------------------------- /experiments/hanoi/data_generation/train/blue_peg_green_peg_3.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/experiments/hanoi/data_generation/train/blue_peg_green_peg_3.yaml -------------------------------------------------------------------------------- /experiments/hanoi/data_generation/train/blue_peg_green_peg_4.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/experiments/hanoi/data_generation/train/blue_peg_green_peg_4.yaml -------------------------------------------------------------------------------- /experiments/hanoi/data_generation/train/blue_peg_green_peg_5.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/experiments/hanoi/data_generation/train/blue_peg_green_peg_5.yaml -------------------------------------------------------------------------------- /experiments/hanoi/data_generation/train/blue_peg_green_peg_6.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/experiments/hanoi/data_generation/train/blue_peg_green_peg_6.yaml -------------------------------------------------------------------------------- /experiments/hanoi/data_generation/train/blue_peg_red_peg_2.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/experiments/hanoi/data_generation/train/blue_peg_red_peg_2.yaml -------------------------------------------------------------------------------- /experiments/hanoi/data_generation/train/blue_peg_red_peg_3.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/experiments/hanoi/data_generation/train/blue_peg_red_peg_3.yaml -------------------------------------------------------------------------------- /experiments/hanoi/data_generation/train/blue_peg_red_peg_4.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/experiments/hanoi/data_generation/train/blue_peg_red_peg_4.yaml -------------------------------------------------------------------------------- /experiments/hanoi/data_generation/train/blue_peg_red_peg_5.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/experiments/hanoi/data_generation/train/blue_peg_red_peg_5.yaml -------------------------------------------------------------------------------- /experiments/hanoi/data_generation/train/blue_peg_red_peg_6.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/experiments/hanoi/data_generation/train/blue_peg_red_peg_6.yaml -------------------------------------------------------------------------------- /experiments/hanoi/data_generation/train/green_peg_blue_peg_2.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/experiments/hanoi/data_generation/train/green_peg_blue_peg_2.yaml -------------------------------------------------------------------------------- /experiments/hanoi/data_generation/train/green_peg_blue_peg_3.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/experiments/hanoi/data_generation/train/green_peg_blue_peg_3.yaml -------------------------------------------------------------------------------- /experiments/hanoi/data_generation/train/green_peg_blue_peg_4.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/experiments/hanoi/data_generation/train/green_peg_blue_peg_4.yaml -------------------------------------------------------------------------------- /experiments/hanoi/data_generation/train/green_peg_blue_peg_5.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/experiments/hanoi/data_generation/train/green_peg_blue_peg_5.yaml -------------------------------------------------------------------------------- /experiments/hanoi/data_generation/train/green_peg_blue_peg_6.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/experiments/hanoi/data_generation/train/green_peg_blue_peg_6.yaml -------------------------------------------------------------------------------- /experiments/hanoi/data_generation/train/green_peg_red_peg_2.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/experiments/hanoi/data_generation/train/green_peg_red_peg_2.yaml -------------------------------------------------------------------------------- /experiments/hanoi/data_generation/train/green_peg_red_peg_3.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/experiments/hanoi/data_generation/train/green_peg_red_peg_3.yaml -------------------------------------------------------------------------------- /experiments/hanoi/data_generation/train/green_peg_red_peg_4.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/experiments/hanoi/data_generation/train/green_peg_red_peg_4.yaml -------------------------------------------------------------------------------- /experiments/hanoi/data_generation/train/green_peg_red_peg_5.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/experiments/hanoi/data_generation/train/green_peg_red_peg_5.yaml -------------------------------------------------------------------------------- /experiments/hanoi/data_generation/train/green_peg_red_peg_6.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/experiments/hanoi/data_generation/train/green_peg_red_peg_6.yaml -------------------------------------------------------------------------------- /experiments/hanoi/data_generation/train/red_peg_blue_peg_2.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/experiments/hanoi/data_generation/train/red_peg_blue_peg_2.yaml -------------------------------------------------------------------------------- /experiments/hanoi/data_generation/train/red_peg_blue_peg_3.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/experiments/hanoi/data_generation/train/red_peg_blue_peg_3.yaml -------------------------------------------------------------------------------- /experiments/hanoi/data_generation/train/red_peg_blue_peg_4.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/experiments/hanoi/data_generation/train/red_peg_blue_peg_4.yaml -------------------------------------------------------------------------------- /experiments/hanoi/data_generation/train/red_peg_blue_peg_5.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/experiments/hanoi/data_generation/train/red_peg_blue_peg_5.yaml -------------------------------------------------------------------------------- /experiments/hanoi/data_generation/train/red_peg_blue_peg_6.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/experiments/hanoi/data_generation/train/red_peg_blue_peg_6.yaml -------------------------------------------------------------------------------- /experiments/hanoi/data_generation/train/red_peg_green_peg_2.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/experiments/hanoi/data_generation/train/red_peg_green_peg_2.yaml -------------------------------------------------------------------------------- /experiments/hanoi/data_generation/train/red_peg_green_peg_3.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/experiments/hanoi/data_generation/train/red_peg_green_peg_3.yaml -------------------------------------------------------------------------------- /experiments/hanoi/data_generation/train/red_peg_green_peg_4.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/experiments/hanoi/data_generation/train/red_peg_green_peg_4.yaml -------------------------------------------------------------------------------- /experiments/hanoi/data_generation/train/red_peg_green_peg_5.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/experiments/hanoi/data_generation/train/red_peg_green_peg_5.yaml -------------------------------------------------------------------------------- /experiments/hanoi/data_generation/train/red_peg_green_peg_6.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/experiments/hanoi/data_generation/train/red_peg_green_peg_6.yaml -------------------------------------------------------------------------------- /experiments/hanoi/domain.pddl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/experiments/hanoi/domain.pddl -------------------------------------------------------------------------------- /experiments/hanoi/hanoi_streams/__init__.py: -------------------------------------------------------------------------------- 1 | from .streams import * 2 | -------------------------------------------------------------------------------- /experiments/hanoi/hanoi_streams/streams.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/experiments/hanoi/hanoi_streams/streams.py -------------------------------------------------------------------------------- /experiments/hanoi/problems/default_problem.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/experiments/hanoi/problems/default_problem.yaml -------------------------------------------------------------------------------- /experiments/hanoi/run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/experiments/hanoi/run.py -------------------------------------------------------------------------------- /experiments/hanoi/stream.pddl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/experiments/hanoi/stream.pddl -------------------------------------------------------------------------------- /experiments/kitchen/domain.pddl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/experiments/kitchen/domain.pddl -------------------------------------------------------------------------------- /experiments/kitchen/generate_problems.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/experiments/kitchen/generate_problems.py -------------------------------------------------------------------------------- /experiments/kitchen/kitchen_data_generation/__init__.py: -------------------------------------------------------------------------------- 1 | from . import make_problem 2 | -------------------------------------------------------------------------------- /experiments/kitchen/kitchen_data_generation/make_problem.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/experiments/kitchen/kitchen_data_generation/make_problem.py -------------------------------------------------------------------------------- /experiments/kitchen/kitchen_data_generation/make_problemset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/experiments/kitchen/kitchen_data_generation/make_problemset.py -------------------------------------------------------------------------------- /experiments/kitchen/kitchen_data_generation/test/1_0_0_1_0.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/experiments/kitchen/kitchen_data_generation/test/1_0_0_1_0.yaml -------------------------------------------------------------------------------- /experiments/kitchen/kitchen_data_generation/test/1_0_1_1_1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/experiments/kitchen/kitchen_data_generation/test/1_0_1_1_1.yaml -------------------------------------------------------------------------------- /experiments/kitchen/kitchen_data_generation/test/1_0_1_2_2.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/experiments/kitchen/kitchen_data_generation/test/1_0_1_2_2.yaml -------------------------------------------------------------------------------- /experiments/kitchen/kitchen_data_generation/test/1_0_2_1_3.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/experiments/kitchen/kitchen_data_generation/test/1_0_2_1_3.yaml -------------------------------------------------------------------------------- /experiments/kitchen/kitchen_data_generation/test/1_0_2_2_4.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/experiments/kitchen/kitchen_data_generation/test/1_0_2_2_4.yaml -------------------------------------------------------------------------------- /experiments/kitchen/kitchen_data_generation/test/1_0_2_3_5.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/experiments/kitchen/kitchen_data_generation/test/1_0_2_3_5.yaml -------------------------------------------------------------------------------- /experiments/kitchen/kitchen_data_generation/test/1_1_0_1_6.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/experiments/kitchen/kitchen_data_generation/test/1_1_0_1_6.yaml -------------------------------------------------------------------------------- /experiments/kitchen/kitchen_data_generation/test/1_1_0_2_7.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/experiments/kitchen/kitchen_data_generation/test/1_1_0_2_7.yaml -------------------------------------------------------------------------------- /experiments/kitchen/kitchen_data_generation/test/1_1_1_1_8.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/experiments/kitchen/kitchen_data_generation/test/1_1_1_1_8.yaml -------------------------------------------------------------------------------- /experiments/kitchen/kitchen_data_generation/test/1_1_1_2_9.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/experiments/kitchen/kitchen_data_generation/test/1_1_1_2_9.yaml -------------------------------------------------------------------------------- /experiments/kitchen/kitchen_data_generation/test/1_1_1_3_10.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/experiments/kitchen/kitchen_data_generation/test/1_1_1_3_10.yaml -------------------------------------------------------------------------------- /experiments/kitchen/kitchen_data_generation/test/1_1_2_1_11.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/experiments/kitchen/kitchen_data_generation/test/1_1_2_1_11.yaml -------------------------------------------------------------------------------- /experiments/kitchen/kitchen_data_generation/test/1_1_2_2_12.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/experiments/kitchen/kitchen_data_generation/test/1_1_2_2_12.yaml -------------------------------------------------------------------------------- /experiments/kitchen/kitchen_data_generation/test/1_1_2_3_13.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/experiments/kitchen/kitchen_data_generation/test/1_1_2_3_13.yaml -------------------------------------------------------------------------------- /experiments/kitchen/kitchen_data_generation/test/1_1_2_4_14.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/experiments/kitchen/kitchen_data_generation/test/1_1_2_4_14.yaml -------------------------------------------------------------------------------- /experiments/kitchen/kitchen_data_generation/test/1_2_0_1_15.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/experiments/kitchen/kitchen_data_generation/test/1_2_0_1_15.yaml -------------------------------------------------------------------------------- /experiments/kitchen/kitchen_data_generation/test/1_2_0_2_16.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/experiments/kitchen/kitchen_data_generation/test/1_2_0_2_16.yaml -------------------------------------------------------------------------------- /experiments/kitchen/kitchen_data_generation/test/1_2_0_3_17.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/experiments/kitchen/kitchen_data_generation/test/1_2_0_3_17.yaml -------------------------------------------------------------------------------- /experiments/kitchen/kitchen_data_generation/test/1_2_1_1_18.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/experiments/kitchen/kitchen_data_generation/test/1_2_1_1_18.yaml -------------------------------------------------------------------------------- /experiments/kitchen/kitchen_data_generation/test/1_2_1_2_19.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/experiments/kitchen/kitchen_data_generation/test/1_2_1_2_19.yaml -------------------------------------------------------------------------------- /experiments/kitchen/kitchen_data_generation/test/1_2_1_3_20.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/experiments/kitchen/kitchen_data_generation/test/1_2_1_3_20.yaml -------------------------------------------------------------------------------- /experiments/kitchen/kitchen_data_generation/test/1_2_1_4_21.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/experiments/kitchen/kitchen_data_generation/test/1_2_1_4_21.yaml -------------------------------------------------------------------------------- /experiments/kitchen/kitchen_data_generation/test/1_2_2_2_22.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/experiments/kitchen/kitchen_data_generation/test/1_2_2_2_22.yaml -------------------------------------------------------------------------------- /experiments/kitchen/kitchen_data_generation/test/1_2_2_3_23.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/experiments/kitchen/kitchen_data_generation/test/1_2_2_3_23.yaml -------------------------------------------------------------------------------- /experiments/kitchen/kitchen_data_generation/test/1_2_2_4_24.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/experiments/kitchen/kitchen_data_generation/test/1_2_2_4_24.yaml -------------------------------------------------------------------------------- /experiments/kitchen/kitchen_data_generation/test/1_2_2_5_25.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/experiments/kitchen/kitchen_data_generation/test/1_2_2_5_25.yaml -------------------------------------------------------------------------------- /experiments/kitchen/kitchen_data_generation/test/1_3_0_1_26.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/experiments/kitchen/kitchen_data_generation/test/1_3_0_1_26.yaml -------------------------------------------------------------------------------- /experiments/kitchen/kitchen_data_generation/test/1_3_0_2_27.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/experiments/kitchen/kitchen_data_generation/test/1_3_0_2_27.yaml -------------------------------------------------------------------------------- /experiments/kitchen/kitchen_data_generation/test/1_3_0_3_28.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/experiments/kitchen/kitchen_data_generation/test/1_3_0_3_28.yaml -------------------------------------------------------------------------------- /experiments/kitchen/kitchen_data_generation/test/1_3_0_4_29.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/experiments/kitchen/kitchen_data_generation/test/1_3_0_4_29.yaml -------------------------------------------------------------------------------- /experiments/kitchen/kitchen_data_generation/test/1_3_1_2_30.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/experiments/kitchen/kitchen_data_generation/test/1_3_1_2_30.yaml -------------------------------------------------------------------------------- /experiments/kitchen/kitchen_data_generation/test/1_3_1_3_31.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/experiments/kitchen/kitchen_data_generation/test/1_3_1_3_31.yaml -------------------------------------------------------------------------------- /experiments/kitchen/kitchen_data_generation/test/1_3_1_4_32.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/experiments/kitchen/kitchen_data_generation/test/1_3_1_4_32.yaml -------------------------------------------------------------------------------- /experiments/kitchen/kitchen_data_generation/test/1_3_1_5_33.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/experiments/kitchen/kitchen_data_generation/test/1_3_1_5_33.yaml -------------------------------------------------------------------------------- /experiments/kitchen/kitchen_data_generation/test/1_3_2_3_34.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/experiments/kitchen/kitchen_data_generation/test/1_3_2_3_34.yaml -------------------------------------------------------------------------------- /experiments/kitchen/kitchen_data_generation/test/1_3_2_4_35.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/experiments/kitchen/kitchen_data_generation/test/1_3_2_4_35.yaml -------------------------------------------------------------------------------- /experiments/kitchen/kitchen_data_generation/test/1_3_2_5_36.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/experiments/kitchen/kitchen_data_generation/test/1_3_2_5_36.yaml -------------------------------------------------------------------------------- /experiments/kitchen/kitchen_data_generation/test/1_3_2_6_37.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/experiments/kitchen/kitchen_data_generation/test/1_3_2_6_37.yaml -------------------------------------------------------------------------------- /experiments/kitchen/kitchen_data_generation/test/2_0_0_1_38.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/experiments/kitchen/kitchen_data_generation/test/2_0_0_1_38.yaml -------------------------------------------------------------------------------- /experiments/kitchen/kitchen_data_generation/test/2_0_0_2_39.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/experiments/kitchen/kitchen_data_generation/test/2_0_0_2_39.yaml -------------------------------------------------------------------------------- /experiments/kitchen/kitchen_data_generation/test/2_0_1_1_40.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/experiments/kitchen/kitchen_data_generation/test/2_0_1_1_40.yaml -------------------------------------------------------------------------------- /experiments/kitchen/kitchen_data_generation/test/2_0_1_2_41.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/experiments/kitchen/kitchen_data_generation/test/2_0_1_2_41.yaml -------------------------------------------------------------------------------- /experiments/kitchen/kitchen_data_generation/test/2_0_1_3_42.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/experiments/kitchen/kitchen_data_generation/test/2_0_1_3_42.yaml -------------------------------------------------------------------------------- /experiments/kitchen/kitchen_data_generation/test/2_0_2_1_43.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/experiments/kitchen/kitchen_data_generation/test/2_0_2_1_43.yaml -------------------------------------------------------------------------------- /experiments/kitchen/kitchen_data_generation/test/2_0_2_2_44.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/experiments/kitchen/kitchen_data_generation/test/2_0_2_2_44.yaml -------------------------------------------------------------------------------- /experiments/kitchen/kitchen_data_generation/test/2_0_2_3_45.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/experiments/kitchen/kitchen_data_generation/test/2_0_2_3_45.yaml -------------------------------------------------------------------------------- /experiments/kitchen/kitchen_data_generation/test/2_0_2_4_46.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/experiments/kitchen/kitchen_data_generation/test/2_0_2_4_46.yaml -------------------------------------------------------------------------------- /experiments/kitchen/kitchen_data_generation/test/2_1_0_1_47.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/experiments/kitchen/kitchen_data_generation/test/2_1_0_1_47.yaml -------------------------------------------------------------------------------- /experiments/kitchen/kitchen_data_generation/test/2_1_0_2_48.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/experiments/kitchen/kitchen_data_generation/test/2_1_0_2_48.yaml -------------------------------------------------------------------------------- /experiments/kitchen/kitchen_data_generation/test/2_1_0_3_49.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/experiments/kitchen/kitchen_data_generation/test/2_1_0_3_49.yaml -------------------------------------------------------------------------------- /experiments/kitchen/kitchen_data_generation/test/2_1_1_1_50.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/experiments/kitchen/kitchen_data_generation/test/2_1_1_1_50.yaml -------------------------------------------------------------------------------- /experiments/kitchen/kitchen_data_generation/test/2_1_1_2_51.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/experiments/kitchen/kitchen_data_generation/test/2_1_1_2_51.yaml -------------------------------------------------------------------------------- /experiments/kitchen/kitchen_data_generation/test/2_1_1_3_52.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/experiments/kitchen/kitchen_data_generation/test/2_1_1_3_52.yaml -------------------------------------------------------------------------------- /experiments/kitchen/kitchen_data_generation/test/2_1_1_4_53.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/experiments/kitchen/kitchen_data_generation/test/2_1_1_4_53.yaml -------------------------------------------------------------------------------- /experiments/kitchen/kitchen_data_generation/test/2_1_2_2_54.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/experiments/kitchen/kitchen_data_generation/test/2_1_2_2_54.yaml -------------------------------------------------------------------------------- /experiments/kitchen/kitchen_data_generation/test/2_1_2_3_55.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/experiments/kitchen/kitchen_data_generation/test/2_1_2_3_55.yaml -------------------------------------------------------------------------------- /experiments/kitchen/kitchen_data_generation/test/2_1_2_4_56.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/experiments/kitchen/kitchen_data_generation/test/2_1_2_4_56.yaml -------------------------------------------------------------------------------- /experiments/kitchen/kitchen_data_generation/test/2_1_2_5_57.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/experiments/kitchen/kitchen_data_generation/test/2_1_2_5_57.yaml -------------------------------------------------------------------------------- /experiments/kitchen/kitchen_data_generation/test/2_2_0_1_58.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/experiments/kitchen/kitchen_data_generation/test/2_2_0_1_58.yaml -------------------------------------------------------------------------------- /experiments/kitchen/kitchen_data_generation/test/2_2_0_2_59.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/experiments/kitchen/kitchen_data_generation/test/2_2_0_2_59.yaml -------------------------------------------------------------------------------- /experiments/kitchen/kitchen_data_generation/test/2_2_0_3_60.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/experiments/kitchen/kitchen_data_generation/test/2_2_0_3_60.yaml -------------------------------------------------------------------------------- /experiments/kitchen/kitchen_data_generation/test/2_2_0_4_61.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/experiments/kitchen/kitchen_data_generation/test/2_2_0_4_61.yaml -------------------------------------------------------------------------------- /experiments/kitchen/kitchen_data_generation/test/2_2_1_2_62.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/experiments/kitchen/kitchen_data_generation/test/2_2_1_2_62.yaml -------------------------------------------------------------------------------- /experiments/kitchen/kitchen_data_generation/test/2_2_1_3_63.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/experiments/kitchen/kitchen_data_generation/test/2_2_1_3_63.yaml -------------------------------------------------------------------------------- /experiments/kitchen/kitchen_data_generation/test/2_2_1_4_64.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/experiments/kitchen/kitchen_data_generation/test/2_2_1_4_64.yaml -------------------------------------------------------------------------------- /experiments/kitchen/kitchen_data_generation/test/2_2_1_5_65.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/experiments/kitchen/kitchen_data_generation/test/2_2_1_5_65.yaml -------------------------------------------------------------------------------- /experiments/kitchen/kitchen_data_generation/test/2_2_2_3_66.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/experiments/kitchen/kitchen_data_generation/test/2_2_2_3_66.yaml -------------------------------------------------------------------------------- /experiments/kitchen/kitchen_data_generation/test/2_2_2_4_67.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/experiments/kitchen/kitchen_data_generation/test/2_2_2_4_67.yaml -------------------------------------------------------------------------------- /experiments/kitchen/kitchen_data_generation/test/2_2_2_5_68.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/experiments/kitchen/kitchen_data_generation/test/2_2_2_5_68.yaml -------------------------------------------------------------------------------- /experiments/kitchen/kitchen_data_generation/test/2_2_2_6_69.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/experiments/kitchen/kitchen_data_generation/test/2_2_2_6_69.yaml -------------------------------------------------------------------------------- /experiments/kitchen/kitchen_data_generation/test/2_3_0_2_70.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/experiments/kitchen/kitchen_data_generation/test/2_3_0_2_70.yaml -------------------------------------------------------------------------------- /experiments/kitchen/kitchen_data_generation/test/2_3_0_3_71.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/experiments/kitchen/kitchen_data_generation/test/2_3_0_3_71.yaml -------------------------------------------------------------------------------- /experiments/kitchen/kitchen_data_generation/test/2_3_0_4_72.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/experiments/kitchen/kitchen_data_generation/test/2_3_0_4_72.yaml -------------------------------------------------------------------------------- /experiments/kitchen/kitchen_data_generation/test/2_3_0_5_73.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/experiments/kitchen/kitchen_data_generation/test/2_3_0_5_73.yaml -------------------------------------------------------------------------------- /experiments/kitchen/kitchen_data_generation/test/2_3_1_3_74.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/experiments/kitchen/kitchen_data_generation/test/2_3_1_3_74.yaml -------------------------------------------------------------------------------- /experiments/kitchen/kitchen_data_generation/test/2_3_1_4_75.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/experiments/kitchen/kitchen_data_generation/test/2_3_1_4_75.yaml -------------------------------------------------------------------------------- /experiments/kitchen/kitchen_data_generation/test/2_3_1_5_76.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/experiments/kitchen/kitchen_data_generation/test/2_3_1_5_76.yaml -------------------------------------------------------------------------------- /experiments/kitchen/kitchen_data_generation/test/2_3_1_6_77.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/experiments/kitchen/kitchen_data_generation/test/2_3_1_6_77.yaml -------------------------------------------------------------------------------- /experiments/kitchen/kitchen_data_generation/test/2_3_2_4_78.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/experiments/kitchen/kitchen_data_generation/test/2_3_2_4_78.yaml -------------------------------------------------------------------------------- /experiments/kitchen/kitchen_data_generation/test/2_3_2_5_79.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/experiments/kitchen/kitchen_data_generation/test/2_3_2_5_79.yaml -------------------------------------------------------------------------------- /experiments/kitchen/kitchen_data_generation/test/2_3_2_6_80.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/experiments/kitchen/kitchen_data_generation/test/2_3_2_6_80.yaml -------------------------------------------------------------------------------- /experiments/kitchen/kitchen_data_generation/test/2_3_2_7_81.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/experiments/kitchen/kitchen_data_generation/test/2_3_2_7_81.yaml -------------------------------------------------------------------------------- /experiments/kitchen/kitchen_data_generation/test/3_0_0_1_82.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/experiments/kitchen/kitchen_data_generation/test/3_0_0_1_82.yaml -------------------------------------------------------------------------------- /experiments/kitchen/kitchen_data_generation/test/3_0_0_2_83.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/experiments/kitchen/kitchen_data_generation/test/3_0_0_2_83.yaml -------------------------------------------------------------------------------- /experiments/kitchen/kitchen_data_generation/test/3_0_0_3_84.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/experiments/kitchen/kitchen_data_generation/test/3_0_0_3_84.yaml -------------------------------------------------------------------------------- /experiments/kitchen/kitchen_data_generation/test/3_0_1_1_85.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/experiments/kitchen/kitchen_data_generation/test/3_0_1_1_85.yaml -------------------------------------------------------------------------------- /experiments/kitchen/kitchen_data_generation/test/3_0_1_2_86.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/experiments/kitchen/kitchen_data_generation/test/3_0_1_2_86.yaml -------------------------------------------------------------------------------- /experiments/kitchen/kitchen_data_generation/test/3_0_1_3_87.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/experiments/kitchen/kitchen_data_generation/test/3_0_1_3_87.yaml -------------------------------------------------------------------------------- /experiments/kitchen/kitchen_data_generation/test/3_0_1_4_88.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/experiments/kitchen/kitchen_data_generation/test/3_0_1_4_88.yaml -------------------------------------------------------------------------------- /experiments/kitchen/kitchen_data_generation/test/3_0_2_2_89.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/experiments/kitchen/kitchen_data_generation/test/3_0_2_2_89.yaml -------------------------------------------------------------------------------- /experiments/kitchen/kitchen_data_generation/test/3_0_2_3_90.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/experiments/kitchen/kitchen_data_generation/test/3_0_2_3_90.yaml -------------------------------------------------------------------------------- /experiments/kitchen/kitchen_data_generation/test/3_0_2_4_91.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/experiments/kitchen/kitchen_data_generation/test/3_0_2_4_91.yaml -------------------------------------------------------------------------------- /experiments/kitchen/kitchen_data_generation/test/3_0_2_5_92.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/experiments/kitchen/kitchen_data_generation/test/3_0_2_5_92.yaml -------------------------------------------------------------------------------- /experiments/kitchen/kitchen_data_generation/test/3_1_0_1_93.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/experiments/kitchen/kitchen_data_generation/test/3_1_0_1_93.yaml -------------------------------------------------------------------------------- /experiments/kitchen/kitchen_data_generation/test/3_1_0_2_94.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/experiments/kitchen/kitchen_data_generation/test/3_1_0_2_94.yaml -------------------------------------------------------------------------------- /experiments/kitchen/kitchen_data_generation/test/3_1_0_3_95.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/experiments/kitchen/kitchen_data_generation/test/3_1_0_3_95.yaml -------------------------------------------------------------------------------- /experiments/kitchen/kitchen_data_generation/test/3_1_0_4_96.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/experiments/kitchen/kitchen_data_generation/test/3_1_0_4_96.yaml -------------------------------------------------------------------------------- /experiments/kitchen/kitchen_data_generation/test/3_1_1_2_97.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/experiments/kitchen/kitchen_data_generation/test/3_1_1_2_97.yaml -------------------------------------------------------------------------------- /experiments/kitchen/kitchen_data_generation/test/3_1_1_3_98.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/experiments/kitchen/kitchen_data_generation/test/3_1_1_3_98.yaml -------------------------------------------------------------------------------- /experiments/kitchen/kitchen_data_generation/test/3_1_1_4_99.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/experiments/kitchen/kitchen_data_generation/test/3_1_1_4_99.yaml -------------------------------------------------------------------------------- /experiments/kitchen/kitchen_data_generation/test/3_1_1_5_100.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/experiments/kitchen/kitchen_data_generation/test/3_1_1_5_100.yaml -------------------------------------------------------------------------------- /experiments/kitchen/kitchen_data_generation/test/3_1_2_3_101.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/experiments/kitchen/kitchen_data_generation/test/3_1_2_3_101.yaml -------------------------------------------------------------------------------- /experiments/kitchen/kitchen_data_generation/test/3_1_2_4_102.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/experiments/kitchen/kitchen_data_generation/test/3_1_2_4_102.yaml -------------------------------------------------------------------------------- /experiments/kitchen/kitchen_data_generation/test/3_1_2_5_103.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/experiments/kitchen/kitchen_data_generation/test/3_1_2_5_103.yaml -------------------------------------------------------------------------------- /experiments/kitchen/kitchen_data_generation/test/3_1_2_6_104.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/experiments/kitchen/kitchen_data_generation/test/3_1_2_6_104.yaml -------------------------------------------------------------------------------- /experiments/kitchen/kitchen_data_generation/test/3_2_0_2_105.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/experiments/kitchen/kitchen_data_generation/test/3_2_0_2_105.yaml -------------------------------------------------------------------------------- /experiments/kitchen/kitchen_data_generation/test/3_2_0_3_106.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/experiments/kitchen/kitchen_data_generation/test/3_2_0_3_106.yaml -------------------------------------------------------------------------------- /experiments/kitchen/kitchen_data_generation/test/3_2_0_4_107.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/experiments/kitchen/kitchen_data_generation/test/3_2_0_4_107.yaml -------------------------------------------------------------------------------- /experiments/kitchen/kitchen_data_generation/test/3_2_0_5_108.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/experiments/kitchen/kitchen_data_generation/test/3_2_0_5_108.yaml -------------------------------------------------------------------------------- /experiments/kitchen/kitchen_data_generation/test/3_2_1_3_109.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/experiments/kitchen/kitchen_data_generation/test/3_2_1_3_109.yaml -------------------------------------------------------------------------------- /experiments/kitchen/kitchen_data_generation/test/3_2_1_4_110.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/experiments/kitchen/kitchen_data_generation/test/3_2_1_4_110.yaml -------------------------------------------------------------------------------- /experiments/kitchen/kitchen_data_generation/test/3_2_1_5_111.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/experiments/kitchen/kitchen_data_generation/test/3_2_1_5_111.yaml -------------------------------------------------------------------------------- /experiments/kitchen/kitchen_data_generation/test/3_2_1_6_112.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/experiments/kitchen/kitchen_data_generation/test/3_2_1_6_112.yaml -------------------------------------------------------------------------------- /experiments/kitchen/kitchen_data_generation/test/3_2_2_4_113.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/experiments/kitchen/kitchen_data_generation/test/3_2_2_4_113.yaml -------------------------------------------------------------------------------- /experiments/kitchen/kitchen_data_generation/test/3_2_2_5_114.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/experiments/kitchen/kitchen_data_generation/test/3_2_2_5_114.yaml -------------------------------------------------------------------------------- /experiments/kitchen/kitchen_data_generation/test/3_2_2_6_115.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/experiments/kitchen/kitchen_data_generation/test/3_2_2_6_115.yaml -------------------------------------------------------------------------------- /experiments/kitchen/kitchen_data_generation/test/3_2_2_7_116.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/experiments/kitchen/kitchen_data_generation/test/3_2_2_7_116.yaml -------------------------------------------------------------------------------- /experiments/kitchen/kitchen_data_generation/test/3_3_0_3_117.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/experiments/kitchen/kitchen_data_generation/test/3_3_0_3_117.yaml -------------------------------------------------------------------------------- /experiments/kitchen/kitchen_data_generation/test/3_3_0_4_118.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/experiments/kitchen/kitchen_data_generation/test/3_3_0_4_118.yaml -------------------------------------------------------------------------------- /experiments/kitchen/kitchen_data_generation/test/3_3_0_5_119.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/experiments/kitchen/kitchen_data_generation/test/3_3_0_5_119.yaml -------------------------------------------------------------------------------- /experiments/kitchen/kitchen_data_generation/test/3_3_0_6_120.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/experiments/kitchen/kitchen_data_generation/test/3_3_0_6_120.yaml -------------------------------------------------------------------------------- /experiments/kitchen/kitchen_data_generation/test/3_3_1_4_121.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/experiments/kitchen/kitchen_data_generation/test/3_3_1_4_121.yaml -------------------------------------------------------------------------------- /experiments/kitchen/kitchen_data_generation/test/3_3_1_5_122.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/experiments/kitchen/kitchen_data_generation/test/3_3_1_5_122.yaml -------------------------------------------------------------------------------- /experiments/kitchen/kitchen_data_generation/test/3_3_1_6_123.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/experiments/kitchen/kitchen_data_generation/test/3_3_1_6_123.yaml -------------------------------------------------------------------------------- /experiments/kitchen/kitchen_data_generation/test/3_3_1_7_124.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/experiments/kitchen/kitchen_data_generation/test/3_3_1_7_124.yaml -------------------------------------------------------------------------------- /experiments/kitchen/kitchen_data_generation/test/3_3_2_5_125.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/experiments/kitchen/kitchen_data_generation/test/3_3_2_5_125.yaml -------------------------------------------------------------------------------- /experiments/kitchen/kitchen_data_generation/test/3_3_2_6_126.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/experiments/kitchen/kitchen_data_generation/test/3_3_2_6_126.yaml -------------------------------------------------------------------------------- /experiments/kitchen/kitchen_data_generation/test/3_3_2_7_127.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/experiments/kitchen/kitchen_data_generation/test/3_3_2_7_127.yaml -------------------------------------------------------------------------------- /experiments/kitchen/kitchen_data_generation/test/3_3_2_8_128.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/experiments/kitchen/kitchen_data_generation/test/3_3_2_8_128.yaml -------------------------------------------------------------------------------- /experiments/kitchen/kitchen_data_generation/test/4_0_0_1_129.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/experiments/kitchen/kitchen_data_generation/test/4_0_0_1_129.yaml -------------------------------------------------------------------------------- /experiments/kitchen/kitchen_data_generation/test/4_0_0_2_130.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/experiments/kitchen/kitchen_data_generation/test/4_0_0_2_130.yaml -------------------------------------------------------------------------------- /experiments/kitchen/kitchen_data_generation/test/4_0_0_3_131.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/experiments/kitchen/kitchen_data_generation/test/4_0_0_3_131.yaml -------------------------------------------------------------------------------- /experiments/kitchen/kitchen_data_generation/test/4_0_0_4_132.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/experiments/kitchen/kitchen_data_generation/test/4_0_0_4_132.yaml -------------------------------------------------------------------------------- /experiments/kitchen/kitchen_data_generation/test/4_0_1_2_133.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/experiments/kitchen/kitchen_data_generation/test/4_0_1_2_133.yaml -------------------------------------------------------------------------------- /experiments/kitchen/kitchen_data_generation/test/4_0_1_3_134.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/experiments/kitchen/kitchen_data_generation/test/4_0_1_3_134.yaml -------------------------------------------------------------------------------- /experiments/kitchen/kitchen_data_generation/test/4_0_1_4_135.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/experiments/kitchen/kitchen_data_generation/test/4_0_1_4_135.yaml -------------------------------------------------------------------------------- /experiments/kitchen/kitchen_data_generation/test/4_0_1_5_136.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/experiments/kitchen/kitchen_data_generation/test/4_0_1_5_136.yaml -------------------------------------------------------------------------------- /experiments/kitchen/kitchen_data_generation/test/4_0_2_3_137.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/experiments/kitchen/kitchen_data_generation/test/4_0_2_3_137.yaml -------------------------------------------------------------------------------- /experiments/kitchen/kitchen_data_generation/test/4_0_2_4_138.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/experiments/kitchen/kitchen_data_generation/test/4_0_2_4_138.yaml -------------------------------------------------------------------------------- /experiments/kitchen/kitchen_data_generation/test/4_0_2_5_139.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/experiments/kitchen/kitchen_data_generation/test/4_0_2_5_139.yaml -------------------------------------------------------------------------------- /experiments/kitchen/kitchen_data_generation/test/4_0_2_6_140.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/experiments/kitchen/kitchen_data_generation/test/4_0_2_6_140.yaml -------------------------------------------------------------------------------- /experiments/kitchen/kitchen_data_generation/test/4_1_0_2_141.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/experiments/kitchen/kitchen_data_generation/test/4_1_0_2_141.yaml -------------------------------------------------------------------------------- /experiments/kitchen/kitchen_data_generation/test/4_1_0_3_142.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/experiments/kitchen/kitchen_data_generation/test/4_1_0_3_142.yaml -------------------------------------------------------------------------------- /experiments/kitchen/kitchen_data_generation/test/4_1_0_4_143.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/experiments/kitchen/kitchen_data_generation/test/4_1_0_4_143.yaml -------------------------------------------------------------------------------- /experiments/kitchen/kitchen_data_generation/test/4_1_0_5_144.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/experiments/kitchen/kitchen_data_generation/test/4_1_0_5_144.yaml -------------------------------------------------------------------------------- /experiments/kitchen/kitchen_data_generation/test/4_1_1_3_145.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/experiments/kitchen/kitchen_data_generation/test/4_1_1_3_145.yaml -------------------------------------------------------------------------------- /experiments/kitchen/kitchen_data_generation/test/4_1_1_4_146.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/experiments/kitchen/kitchen_data_generation/test/4_1_1_4_146.yaml -------------------------------------------------------------------------------- /experiments/kitchen/kitchen_data_generation/test/4_1_1_5_147.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/experiments/kitchen/kitchen_data_generation/test/4_1_1_5_147.yaml -------------------------------------------------------------------------------- /experiments/kitchen/kitchen_data_generation/test/4_1_1_6_148.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/experiments/kitchen/kitchen_data_generation/test/4_1_1_6_148.yaml -------------------------------------------------------------------------------- /experiments/kitchen/kitchen_data_generation/test/4_1_2_4_149.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/experiments/kitchen/kitchen_data_generation/test/4_1_2_4_149.yaml -------------------------------------------------------------------------------- /experiments/kitchen/kitchen_data_generation/test/4_1_2_5_150.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/experiments/kitchen/kitchen_data_generation/test/4_1_2_5_150.yaml -------------------------------------------------------------------------------- /experiments/kitchen/kitchen_data_generation/test/4_1_2_6_151.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/experiments/kitchen/kitchen_data_generation/test/4_1_2_6_151.yaml -------------------------------------------------------------------------------- /experiments/kitchen/kitchen_data_generation/test/4_1_2_7_152.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/experiments/kitchen/kitchen_data_generation/test/4_1_2_7_152.yaml -------------------------------------------------------------------------------- /experiments/kitchen/kitchen_data_generation/test/4_2_0_3_153.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/experiments/kitchen/kitchen_data_generation/test/4_2_0_3_153.yaml -------------------------------------------------------------------------------- /experiments/kitchen/kitchen_data_generation/test/4_2_0_4_154.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/experiments/kitchen/kitchen_data_generation/test/4_2_0_4_154.yaml -------------------------------------------------------------------------------- /experiments/kitchen/kitchen_data_generation/test/4_2_0_5_155.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/experiments/kitchen/kitchen_data_generation/test/4_2_0_5_155.yaml -------------------------------------------------------------------------------- /experiments/kitchen/kitchen_data_generation/test/4_2_0_6_156.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/experiments/kitchen/kitchen_data_generation/test/4_2_0_6_156.yaml -------------------------------------------------------------------------------- /experiments/kitchen/kitchen_data_generation/test/4_2_1_4_157.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/experiments/kitchen/kitchen_data_generation/test/4_2_1_4_157.yaml -------------------------------------------------------------------------------- /experiments/kitchen/kitchen_data_generation/test/4_2_1_5_158.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/experiments/kitchen/kitchen_data_generation/test/4_2_1_5_158.yaml -------------------------------------------------------------------------------- /experiments/kitchen/kitchen_data_generation/test/4_2_1_6_159.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/experiments/kitchen/kitchen_data_generation/test/4_2_1_6_159.yaml -------------------------------------------------------------------------------- /experiments/kitchen/kitchen_data_generation/test/4_2_1_7_160.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/experiments/kitchen/kitchen_data_generation/test/4_2_1_7_160.yaml -------------------------------------------------------------------------------- /experiments/kitchen/kitchen_data_generation/test/4_2_2_5_161.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/experiments/kitchen/kitchen_data_generation/test/4_2_2_5_161.yaml -------------------------------------------------------------------------------- /experiments/kitchen/kitchen_data_generation/test/4_2_2_6_162.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/experiments/kitchen/kitchen_data_generation/test/4_2_2_6_162.yaml -------------------------------------------------------------------------------- /experiments/kitchen/kitchen_data_generation/test/4_2_2_7_163.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/experiments/kitchen/kitchen_data_generation/test/4_2_2_7_163.yaml -------------------------------------------------------------------------------- /experiments/kitchen/kitchen_data_generation/test/4_2_2_8_164.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/experiments/kitchen/kitchen_data_generation/test/4_2_2_8_164.yaml -------------------------------------------------------------------------------- /experiments/kitchen/kitchen_data_generation/test/4_3_0_4_165.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/experiments/kitchen/kitchen_data_generation/test/4_3_0_4_165.yaml -------------------------------------------------------------------------------- /experiments/kitchen/kitchen_data_generation/test/4_3_0_5_166.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/experiments/kitchen/kitchen_data_generation/test/4_3_0_5_166.yaml -------------------------------------------------------------------------------- /experiments/kitchen/kitchen_data_generation/test/4_3_0_6_167.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/experiments/kitchen/kitchen_data_generation/test/4_3_0_6_167.yaml -------------------------------------------------------------------------------- /experiments/kitchen/kitchen_data_generation/test/4_3_0_7_168.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/experiments/kitchen/kitchen_data_generation/test/4_3_0_7_168.yaml -------------------------------------------------------------------------------- /experiments/kitchen/kitchen_data_generation/test/4_3_1_5_169.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/experiments/kitchen/kitchen_data_generation/test/4_3_1_5_169.yaml -------------------------------------------------------------------------------- /experiments/kitchen/kitchen_data_generation/test/4_3_1_6_170.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/experiments/kitchen/kitchen_data_generation/test/4_3_1_6_170.yaml -------------------------------------------------------------------------------- /experiments/kitchen/kitchen_data_generation/test/4_3_1_7_171.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/experiments/kitchen/kitchen_data_generation/test/4_3_1_7_171.yaml -------------------------------------------------------------------------------- /experiments/kitchen/kitchen_data_generation/test/4_3_1_8_172.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/experiments/kitchen/kitchen_data_generation/test/4_3_1_8_172.yaml -------------------------------------------------------------------------------- /experiments/kitchen/kitchen_data_generation/test/4_3_2_6_173.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/experiments/kitchen/kitchen_data_generation/test/4_3_2_6_173.yaml -------------------------------------------------------------------------------- /experiments/kitchen/kitchen_data_generation/test/4_3_2_7_174.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/experiments/kitchen/kitchen_data_generation/test/4_3_2_7_174.yaml -------------------------------------------------------------------------------- /experiments/kitchen/kitchen_data_generation/test/4_3_2_8_175.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/experiments/kitchen/kitchen_data_generation/test/4_3_2_8_175.yaml -------------------------------------------------------------------------------- /experiments/kitchen/kitchen_data_generation/test/4_3_2_9_176.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/experiments/kitchen/kitchen_data_generation/test/4_3_2_9_176.yaml -------------------------------------------------------------------------------- /experiments/kitchen/kitchen_data_generation/test_problem.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/experiments/kitchen/kitchen_data_generation/test_problem.yaml -------------------------------------------------------------------------------- /experiments/kitchen/kitchen_data_generation/train/1_0_0_1_0.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/experiments/kitchen/kitchen_data_generation/train/1_0_0_1_0.yaml -------------------------------------------------------------------------------- /experiments/kitchen/kitchen_data_generation/train/1_0_1_1_1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/experiments/kitchen/kitchen_data_generation/train/1_0_1_1_1.yaml -------------------------------------------------------------------------------- /experiments/kitchen/kitchen_data_generation/train/1_0_1_2_2.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/experiments/kitchen/kitchen_data_generation/train/1_0_1_2_2.yaml -------------------------------------------------------------------------------- /experiments/kitchen/kitchen_data_generation/train/1_0_2_1_3.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/experiments/kitchen/kitchen_data_generation/train/1_0_2_1_3.yaml -------------------------------------------------------------------------------- /experiments/kitchen/kitchen_data_generation/train/1_0_2_2_4.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/experiments/kitchen/kitchen_data_generation/train/1_0_2_2_4.yaml -------------------------------------------------------------------------------- /experiments/kitchen/kitchen_data_generation/train/1_0_2_3_5.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/experiments/kitchen/kitchen_data_generation/train/1_0_2_3_5.yaml -------------------------------------------------------------------------------- /experiments/kitchen/kitchen_data_generation/train/1_1_0_1_6.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/experiments/kitchen/kitchen_data_generation/train/1_1_0_1_6.yaml -------------------------------------------------------------------------------- /experiments/kitchen/kitchen_data_generation/train/1_1_0_2_7.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/experiments/kitchen/kitchen_data_generation/train/1_1_0_2_7.yaml -------------------------------------------------------------------------------- /experiments/kitchen/kitchen_data_generation/train/1_1_1_1_8.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/experiments/kitchen/kitchen_data_generation/train/1_1_1_1_8.yaml -------------------------------------------------------------------------------- /experiments/kitchen/kitchen_data_generation/train/1_1_1_2_9.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/experiments/kitchen/kitchen_data_generation/train/1_1_1_2_9.yaml -------------------------------------------------------------------------------- /experiments/kitchen/kitchen_data_generation/train/1_1_1_3_10.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/experiments/kitchen/kitchen_data_generation/train/1_1_1_3_10.yaml -------------------------------------------------------------------------------- /experiments/kitchen/kitchen_data_generation/train/1_1_2_1_11.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/experiments/kitchen/kitchen_data_generation/train/1_1_2_1_11.yaml -------------------------------------------------------------------------------- /experiments/kitchen/kitchen_data_generation/train/1_1_2_2_12.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/experiments/kitchen/kitchen_data_generation/train/1_1_2_2_12.yaml -------------------------------------------------------------------------------- /experiments/kitchen/kitchen_data_generation/train/1_1_2_3_13.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/experiments/kitchen/kitchen_data_generation/train/1_1_2_3_13.yaml -------------------------------------------------------------------------------- /experiments/kitchen/kitchen_data_generation/train/1_1_2_4_14.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/experiments/kitchen/kitchen_data_generation/train/1_1_2_4_14.yaml -------------------------------------------------------------------------------- /experiments/kitchen/kitchen_data_generation/train/1_2_0_1_15.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/experiments/kitchen/kitchen_data_generation/train/1_2_0_1_15.yaml -------------------------------------------------------------------------------- /experiments/kitchen/kitchen_data_generation/train/1_2_0_2_16.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/experiments/kitchen/kitchen_data_generation/train/1_2_0_2_16.yaml -------------------------------------------------------------------------------- /experiments/kitchen/kitchen_data_generation/train/1_2_0_3_17.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/experiments/kitchen/kitchen_data_generation/train/1_2_0_3_17.yaml -------------------------------------------------------------------------------- /experiments/kitchen/kitchen_data_generation/train/1_2_1_1_18.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/experiments/kitchen/kitchen_data_generation/train/1_2_1_1_18.yaml -------------------------------------------------------------------------------- /experiments/kitchen/kitchen_data_generation/train/1_2_1_2_19.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/experiments/kitchen/kitchen_data_generation/train/1_2_1_2_19.yaml -------------------------------------------------------------------------------- /experiments/kitchen/kitchen_data_generation/train/1_2_1_3_20.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/experiments/kitchen/kitchen_data_generation/train/1_2_1_3_20.yaml -------------------------------------------------------------------------------- /experiments/kitchen/kitchen_data_generation/train/1_2_1_4_21.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/experiments/kitchen/kitchen_data_generation/train/1_2_1_4_21.yaml -------------------------------------------------------------------------------- /experiments/kitchen/kitchen_data_generation/train/1_2_2_2_22.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/experiments/kitchen/kitchen_data_generation/train/1_2_2_2_22.yaml -------------------------------------------------------------------------------- /experiments/kitchen/kitchen_data_generation/train/1_2_2_3_23.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/experiments/kitchen/kitchen_data_generation/train/1_2_2_3_23.yaml -------------------------------------------------------------------------------- /experiments/kitchen/kitchen_data_generation/train/1_2_2_4_24.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/experiments/kitchen/kitchen_data_generation/train/1_2_2_4_24.yaml -------------------------------------------------------------------------------- /experiments/kitchen/kitchen_data_generation/train/1_2_2_5_25.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/experiments/kitchen/kitchen_data_generation/train/1_2_2_5_25.yaml -------------------------------------------------------------------------------- /experiments/kitchen/kitchen_data_generation/train/1_3_0_1_26.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/experiments/kitchen/kitchen_data_generation/train/1_3_0_1_26.yaml -------------------------------------------------------------------------------- /experiments/kitchen/kitchen_data_generation/train/1_3_0_2_27.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/experiments/kitchen/kitchen_data_generation/train/1_3_0_2_27.yaml -------------------------------------------------------------------------------- /experiments/kitchen/kitchen_data_generation/train/1_3_0_3_28.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/experiments/kitchen/kitchen_data_generation/train/1_3_0_3_28.yaml -------------------------------------------------------------------------------- /experiments/kitchen/kitchen_data_generation/train/1_3_0_4_29.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/experiments/kitchen/kitchen_data_generation/train/1_3_0_4_29.yaml -------------------------------------------------------------------------------- /experiments/kitchen/kitchen_data_generation/train/1_3_1_2_30.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/experiments/kitchen/kitchen_data_generation/train/1_3_1_2_30.yaml -------------------------------------------------------------------------------- /experiments/kitchen/kitchen_data_generation/train/1_3_1_3_31.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/experiments/kitchen/kitchen_data_generation/train/1_3_1_3_31.yaml -------------------------------------------------------------------------------- /experiments/kitchen/kitchen_data_generation/train/1_3_1_4_32.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/experiments/kitchen/kitchen_data_generation/train/1_3_1_4_32.yaml -------------------------------------------------------------------------------- /experiments/kitchen/kitchen_data_generation/train/1_3_1_5_33.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/experiments/kitchen/kitchen_data_generation/train/1_3_1_5_33.yaml -------------------------------------------------------------------------------- /experiments/kitchen/kitchen_data_generation/train/1_3_2_3_34.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/experiments/kitchen/kitchen_data_generation/train/1_3_2_3_34.yaml -------------------------------------------------------------------------------- /experiments/kitchen/kitchen_data_generation/train/1_3_2_4_35.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/experiments/kitchen/kitchen_data_generation/train/1_3_2_4_35.yaml -------------------------------------------------------------------------------- /experiments/kitchen/kitchen_data_generation/train/1_3_2_5_36.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/experiments/kitchen/kitchen_data_generation/train/1_3_2_5_36.yaml -------------------------------------------------------------------------------- /experiments/kitchen/kitchen_data_generation/train/1_3_2_6_37.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/experiments/kitchen/kitchen_data_generation/train/1_3_2_6_37.yaml -------------------------------------------------------------------------------- /experiments/kitchen/kitchen_data_generation/train/2_0_0_1_38.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/experiments/kitchen/kitchen_data_generation/train/2_0_0_1_38.yaml -------------------------------------------------------------------------------- /experiments/kitchen/kitchen_data_generation/train/2_0_0_2_39.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/experiments/kitchen/kitchen_data_generation/train/2_0_0_2_39.yaml -------------------------------------------------------------------------------- /experiments/kitchen/kitchen_data_generation/train/2_0_1_1_40.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/experiments/kitchen/kitchen_data_generation/train/2_0_1_1_40.yaml -------------------------------------------------------------------------------- /experiments/kitchen/kitchen_data_generation/train/2_0_1_2_41.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/experiments/kitchen/kitchen_data_generation/train/2_0_1_2_41.yaml -------------------------------------------------------------------------------- /experiments/kitchen/kitchen_data_generation/train/2_0_1_3_42.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/experiments/kitchen/kitchen_data_generation/train/2_0_1_3_42.yaml -------------------------------------------------------------------------------- /experiments/kitchen/kitchen_data_generation/train/2_0_2_1_43.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/experiments/kitchen/kitchen_data_generation/train/2_0_2_1_43.yaml -------------------------------------------------------------------------------- /experiments/kitchen/kitchen_data_generation/train/2_0_2_2_44.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/experiments/kitchen/kitchen_data_generation/train/2_0_2_2_44.yaml -------------------------------------------------------------------------------- /experiments/kitchen/kitchen_data_generation/train/2_0_2_3_45.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/experiments/kitchen/kitchen_data_generation/train/2_0_2_3_45.yaml -------------------------------------------------------------------------------- /experiments/kitchen/kitchen_data_generation/train/2_0_2_4_46.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/experiments/kitchen/kitchen_data_generation/train/2_0_2_4_46.yaml -------------------------------------------------------------------------------- /experiments/kitchen/kitchen_data_generation/train/2_1_0_1_47.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/experiments/kitchen/kitchen_data_generation/train/2_1_0_1_47.yaml -------------------------------------------------------------------------------- /experiments/kitchen/kitchen_data_generation/train/2_1_0_2_48.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/experiments/kitchen/kitchen_data_generation/train/2_1_0_2_48.yaml -------------------------------------------------------------------------------- /experiments/kitchen/kitchen_data_generation/train/2_1_0_3_49.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/experiments/kitchen/kitchen_data_generation/train/2_1_0_3_49.yaml -------------------------------------------------------------------------------- /experiments/kitchen/kitchen_data_generation/train/2_1_1_1_50.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/experiments/kitchen/kitchen_data_generation/train/2_1_1_1_50.yaml -------------------------------------------------------------------------------- /experiments/kitchen/kitchen_data_generation/train/2_1_1_2_51.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/experiments/kitchen/kitchen_data_generation/train/2_1_1_2_51.yaml -------------------------------------------------------------------------------- /experiments/kitchen/kitchen_data_generation/train/2_1_1_3_52.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/experiments/kitchen/kitchen_data_generation/train/2_1_1_3_52.yaml -------------------------------------------------------------------------------- /experiments/kitchen/kitchen_data_generation/train/2_1_1_4_53.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/experiments/kitchen/kitchen_data_generation/train/2_1_1_4_53.yaml -------------------------------------------------------------------------------- /experiments/kitchen/kitchen_data_generation/train/2_1_2_2_54.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/experiments/kitchen/kitchen_data_generation/train/2_1_2_2_54.yaml -------------------------------------------------------------------------------- /experiments/kitchen/kitchen_data_generation/train/2_1_2_3_55.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/experiments/kitchen/kitchen_data_generation/train/2_1_2_3_55.yaml -------------------------------------------------------------------------------- /experiments/kitchen/kitchen_data_generation/train/2_1_2_4_56.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/experiments/kitchen/kitchen_data_generation/train/2_1_2_4_56.yaml -------------------------------------------------------------------------------- /experiments/kitchen/kitchen_data_generation/train/2_1_2_5_57.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/experiments/kitchen/kitchen_data_generation/train/2_1_2_5_57.yaml -------------------------------------------------------------------------------- /experiments/kitchen/kitchen_data_generation/train/2_2_0_1_58.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/experiments/kitchen/kitchen_data_generation/train/2_2_0_1_58.yaml -------------------------------------------------------------------------------- /experiments/kitchen/kitchen_data_generation/train/2_2_0_2_59.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/experiments/kitchen/kitchen_data_generation/train/2_2_0_2_59.yaml -------------------------------------------------------------------------------- /experiments/kitchen/kitchen_data_generation/train/2_2_0_3_60.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/experiments/kitchen/kitchen_data_generation/train/2_2_0_3_60.yaml -------------------------------------------------------------------------------- /experiments/kitchen/kitchen_data_generation/train/2_2_0_4_61.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/experiments/kitchen/kitchen_data_generation/train/2_2_0_4_61.yaml -------------------------------------------------------------------------------- /experiments/kitchen/kitchen_data_generation/train/2_2_1_2_62.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/experiments/kitchen/kitchen_data_generation/train/2_2_1_2_62.yaml -------------------------------------------------------------------------------- /experiments/kitchen/kitchen_data_generation/train/2_2_1_3_63.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/experiments/kitchen/kitchen_data_generation/train/2_2_1_3_63.yaml -------------------------------------------------------------------------------- /experiments/kitchen/kitchen_data_generation/train/2_2_1_4_64.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/experiments/kitchen/kitchen_data_generation/train/2_2_1_4_64.yaml -------------------------------------------------------------------------------- /experiments/kitchen/kitchen_data_generation/train/2_2_1_5_65.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/experiments/kitchen/kitchen_data_generation/train/2_2_1_5_65.yaml -------------------------------------------------------------------------------- /experiments/kitchen/kitchen_data_generation/train/2_2_2_3_66.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/experiments/kitchen/kitchen_data_generation/train/2_2_2_3_66.yaml -------------------------------------------------------------------------------- /experiments/kitchen/kitchen_data_generation/train/2_2_2_4_67.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/experiments/kitchen/kitchen_data_generation/train/2_2_2_4_67.yaml -------------------------------------------------------------------------------- /experiments/kitchen/kitchen_data_generation/train/2_2_2_5_68.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/experiments/kitchen/kitchen_data_generation/train/2_2_2_5_68.yaml -------------------------------------------------------------------------------- /experiments/kitchen/kitchen_data_generation/train/2_2_2_6_69.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/experiments/kitchen/kitchen_data_generation/train/2_2_2_6_69.yaml -------------------------------------------------------------------------------- /experiments/kitchen/kitchen_data_generation/train/2_3_0_2_70.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/experiments/kitchen/kitchen_data_generation/train/2_3_0_2_70.yaml -------------------------------------------------------------------------------- /experiments/kitchen/kitchen_data_generation/train/2_3_0_3_71.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/experiments/kitchen/kitchen_data_generation/train/2_3_0_3_71.yaml -------------------------------------------------------------------------------- /experiments/kitchen/kitchen_data_generation/train/2_3_0_4_72.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/experiments/kitchen/kitchen_data_generation/train/2_3_0_4_72.yaml -------------------------------------------------------------------------------- /experiments/kitchen/kitchen_data_generation/train/2_3_0_5_73.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/experiments/kitchen/kitchen_data_generation/train/2_3_0_5_73.yaml -------------------------------------------------------------------------------- /experiments/kitchen/kitchen_data_generation/train/2_3_1_3_74.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/experiments/kitchen/kitchen_data_generation/train/2_3_1_3_74.yaml -------------------------------------------------------------------------------- /experiments/kitchen/kitchen_data_generation/train/2_3_1_4_75.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/experiments/kitchen/kitchen_data_generation/train/2_3_1_4_75.yaml -------------------------------------------------------------------------------- /experiments/kitchen/kitchen_data_generation/train/2_3_1_5_76.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/experiments/kitchen/kitchen_data_generation/train/2_3_1_5_76.yaml -------------------------------------------------------------------------------- /experiments/kitchen/kitchen_data_generation/train/2_3_1_6_77.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/experiments/kitchen/kitchen_data_generation/train/2_3_1_6_77.yaml -------------------------------------------------------------------------------- /experiments/kitchen/kitchen_data_generation/train/2_3_2_4_78.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/experiments/kitchen/kitchen_data_generation/train/2_3_2_4_78.yaml -------------------------------------------------------------------------------- /experiments/kitchen/kitchen_data_generation/train/2_3_2_5_79.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/experiments/kitchen/kitchen_data_generation/train/2_3_2_5_79.yaml -------------------------------------------------------------------------------- /experiments/kitchen/kitchen_data_generation/train/2_3_2_6_80.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/experiments/kitchen/kitchen_data_generation/train/2_3_2_6_80.yaml -------------------------------------------------------------------------------- /experiments/kitchen/kitchen_data_generation/train/2_3_2_7_81.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/experiments/kitchen/kitchen_data_generation/train/2_3_2_7_81.yaml -------------------------------------------------------------------------------- /experiments/kitchen/kitchen_data_generation/train/3_0_0_1_82.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/experiments/kitchen/kitchen_data_generation/train/3_0_0_1_82.yaml -------------------------------------------------------------------------------- /experiments/kitchen/kitchen_data_generation/train/3_0_0_2_83.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/experiments/kitchen/kitchen_data_generation/train/3_0_0_2_83.yaml -------------------------------------------------------------------------------- /experiments/kitchen/kitchen_data_generation/train/3_0_0_3_84.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/experiments/kitchen/kitchen_data_generation/train/3_0_0_3_84.yaml -------------------------------------------------------------------------------- /experiments/kitchen/kitchen_data_generation/train/3_0_1_1_85.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/experiments/kitchen/kitchen_data_generation/train/3_0_1_1_85.yaml -------------------------------------------------------------------------------- /experiments/kitchen/kitchen_data_generation/train/3_0_1_2_86.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/experiments/kitchen/kitchen_data_generation/train/3_0_1_2_86.yaml -------------------------------------------------------------------------------- /experiments/kitchen/kitchen_data_generation/train/3_0_1_3_87.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/experiments/kitchen/kitchen_data_generation/train/3_0_1_3_87.yaml -------------------------------------------------------------------------------- /experiments/kitchen/kitchen_data_generation/train/3_0_1_4_88.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/experiments/kitchen/kitchen_data_generation/train/3_0_1_4_88.yaml -------------------------------------------------------------------------------- /experiments/kitchen/kitchen_data_generation/train/3_0_2_2_89.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/experiments/kitchen/kitchen_data_generation/train/3_0_2_2_89.yaml -------------------------------------------------------------------------------- /experiments/kitchen/kitchen_data_generation/train/3_0_2_3_90.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/experiments/kitchen/kitchen_data_generation/train/3_0_2_3_90.yaml -------------------------------------------------------------------------------- /experiments/kitchen/kitchen_data_generation/train/3_0_2_4_91.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/experiments/kitchen/kitchen_data_generation/train/3_0_2_4_91.yaml -------------------------------------------------------------------------------- /experiments/kitchen/kitchen_data_generation/train/3_0_2_5_92.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/experiments/kitchen/kitchen_data_generation/train/3_0_2_5_92.yaml -------------------------------------------------------------------------------- /experiments/kitchen/kitchen_data_generation/train/3_1_0_1_93.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/experiments/kitchen/kitchen_data_generation/train/3_1_0_1_93.yaml -------------------------------------------------------------------------------- /experiments/kitchen/kitchen_data_generation/train/3_1_0_2_94.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/experiments/kitchen/kitchen_data_generation/train/3_1_0_2_94.yaml -------------------------------------------------------------------------------- /experiments/kitchen/kitchen_data_generation/train/3_1_0_3_95.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/experiments/kitchen/kitchen_data_generation/train/3_1_0_3_95.yaml -------------------------------------------------------------------------------- /experiments/kitchen/kitchen_data_generation/train/3_1_0_4_96.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/experiments/kitchen/kitchen_data_generation/train/3_1_0_4_96.yaml -------------------------------------------------------------------------------- /experiments/kitchen/kitchen_data_generation/train/3_1_1_2_97.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/experiments/kitchen/kitchen_data_generation/train/3_1_1_2_97.yaml -------------------------------------------------------------------------------- /experiments/kitchen/kitchen_data_generation/train/3_1_1_3_98.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/experiments/kitchen/kitchen_data_generation/train/3_1_1_3_98.yaml -------------------------------------------------------------------------------- /experiments/kitchen/kitchen_data_generation/train/3_1_1_4_99.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/experiments/kitchen/kitchen_data_generation/train/3_1_1_4_99.yaml -------------------------------------------------------------------------------- /experiments/kitchen/kitchen_streamsv2/__init__.py: -------------------------------------------------------------------------------- 1 | from .streams import * 2 | -------------------------------------------------------------------------------- /experiments/kitchen/kitchen_streamsv2/streams.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/experiments/kitchen/kitchen_streamsv2/streams.py -------------------------------------------------------------------------------- /experiments/kitchen/problems/custom_problem.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/experiments/kitchen/problems/custom_problem.yaml -------------------------------------------------------------------------------- /experiments/kitchen/problems/kitchen_problem.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/experiments/kitchen/problems/kitchen_problem.yaml -------------------------------------------------------------------------------- /experiments/kitchen/run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/experiments/kitchen/run.py -------------------------------------------------------------------------------- /experiments/kitchen/stream.pddl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/experiments/kitchen/stream.pddl -------------------------------------------------------------------------------- /experiments/kitchen_less_axioms/domain.pddl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/experiments/kitchen_less_axioms/domain.pddl -------------------------------------------------------------------------------- /experiments/kitchen_less_axioms/generate_problems.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/experiments/kitchen_less_axioms/generate_problems.py -------------------------------------------------------------------------------- /experiments/kitchen_less_axioms/kitchen_data_generation/__init__.py: -------------------------------------------------------------------------------- 1 | from . import make_problem 2 | -------------------------------------------------------------------------------- /experiments/kitchen_less_axioms/kitchen_streamsv2/__init__.py: -------------------------------------------------------------------------------- 1 | from .streams import * 2 | -------------------------------------------------------------------------------- /experiments/kitchen_less_axioms/kitchen_streamsv2/streams.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/experiments/kitchen_less_axioms/kitchen_streamsv2/streams.py -------------------------------------------------------------------------------- /experiments/kitchen_less_axioms/problems/custom_problem.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/experiments/kitchen_less_axioms/problems/custom_problem.yaml -------------------------------------------------------------------------------- /experiments/kitchen_less_axioms/problems/kitchen_problem.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/experiments/kitchen_less_axioms/problems/kitchen_problem.yaml -------------------------------------------------------------------------------- /experiments/kitchen_less_axioms/run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/experiments/kitchen_less_axioms/run.py -------------------------------------------------------------------------------- /experiments/kitchen_less_axioms/stream.pddl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/experiments/kitchen_less_axioms/stream.pddl -------------------------------------------------------------------------------- /experiments/kitchen_no_fluents/domain.pddl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/experiments/kitchen_no_fluents/domain.pddl -------------------------------------------------------------------------------- /experiments/kitchen_no_fluents/kitchen_data_generation/__init__.py: -------------------------------------------------------------------------------- 1 | from . import make_problem 2 | -------------------------------------------------------------------------------- /experiments/kitchen_no_fluents/kitchen_streamsv2/__init__.py: -------------------------------------------------------------------------------- 1 | from .streams import * 2 | -------------------------------------------------------------------------------- /experiments/kitchen_no_fluents/kitchen_streamsv2/streams.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/experiments/kitchen_no_fluents/kitchen_streamsv2/streams.py -------------------------------------------------------------------------------- /experiments/kitchen_no_fluents/problems/custom_problem.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/experiments/kitchen_no_fluents/problems/custom_problem.yaml -------------------------------------------------------------------------------- /experiments/kitchen_no_fluents/problems/kitchen_problem.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/experiments/kitchen_no_fluents/problems/kitchen_problem.yaml -------------------------------------------------------------------------------- /experiments/kitchen_no_fluents/run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/experiments/kitchen_no_fluents/run.py -------------------------------------------------------------------------------- /experiments/kitchen_no_fluents/stream.pddl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/experiments/kitchen_no_fluents/stream.pddl -------------------------------------------------------------------------------- /experiments/kitchen_no_fluents/temp/domain.pddl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/experiments/kitchen_no_fluents/temp/domain.pddl -------------------------------------------------------------------------------- /experiments/logparse.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/experiments/logparse.py -------------------------------------------------------------------------------- /experiments/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/experiments/main.py -------------------------------------------------------------------------------- /experiments/mega_domain/domain.pddl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/experiments/mega_domain/domain.pddl -------------------------------------------------------------------------------- /experiments/mega_domain/mega_streams/__init__.py: -------------------------------------------------------------------------------- 1 | from .streams import * 2 | -------------------------------------------------------------------------------- /experiments/mega_domain/mega_streams/streams.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/experiments/mega_domain/mega_streams/streams.py -------------------------------------------------------------------------------- /experiments/mega_domain/problems/default_blocks_world.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/experiments/mega_domain/problems/default_blocks_world.yaml -------------------------------------------------------------------------------- /experiments/mega_domain/problems/default_hanoi.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/experiments/mega_domain/problems/default_hanoi.yaml -------------------------------------------------------------------------------- /experiments/mega_domain/problems/default_kitchen.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/experiments/mega_domain/problems/default_kitchen.yaml -------------------------------------------------------------------------------- /experiments/mega_domain/run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/experiments/mega_domain/run.py -------------------------------------------------------------------------------- /experiments/mega_domain/stream.pddl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/experiments/mega_domain/stream.pddl -------------------------------------------------------------------------------- /experiments/preview_problem.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/experiments/preview_problem.py -------------------------------------------------------------------------------- /experiments/retired/blocks_world/blocks_world_streams/__init__.py: -------------------------------------------------------------------------------- 1 | from .streams import * 2 | -------------------------------------------------------------------------------- /experiments/retired/blocks_world/blocks_world_streams/streams.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/experiments/retired/blocks_world/blocks_world_streams/streams.py -------------------------------------------------------------------------------- /experiments/retired/blocks_world/five_action/domain.pddl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/experiments/retired/blocks_world/five_action/domain.pddl -------------------------------------------------------------------------------- /experiments/retired/blocks_world/five_action/stream.pddl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/experiments/retired/blocks_world/five_action/stream.pddl -------------------------------------------------------------------------------- /experiments/retired/blocks_world/problems/one_arm_problem.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/experiments/retired/blocks_world/problems/one_arm_problem.yaml -------------------------------------------------------------------------------- /experiments/retired/blocks_world/run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/experiments/retired/blocks_world/run.py -------------------------------------------------------------------------------- /experiments/retired/blocks_world/temp/domain.pddl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/experiments/retired/blocks_world/temp/domain.pddl -------------------------------------------------------------------------------- /experiments/retired/blocks_world/three_action/domain.pddl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/experiments/retired/blocks_world/three_action/domain.pddl -------------------------------------------------------------------------------- /experiments/retired/blocks_world/three_action/stream.pddl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/experiments/retired/blocks_world/three_action/stream.pddl -------------------------------------------------------------------------------- /experiments/retired/blocks_world_table_spec/blocks_world_streams/__init__.py: -------------------------------------------------------------------------------- 1 | from .streams import * 2 | -------------------------------------------------------------------------------- /experiments/retired/blocks_world_table_spec/pddl_spec/domain.pddl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/experiments/retired/blocks_world_table_spec/pddl_spec/domain.pddl -------------------------------------------------------------------------------- /experiments/retired/blocks_world_table_spec/pddl_spec/stream.pddl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/experiments/retired/blocks_world_table_spec/pddl_spec/stream.pddl -------------------------------------------------------------------------------- /experiments/retired/blocks_world_table_spec/run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/experiments/retired/blocks_world_table_spec/run.py -------------------------------------------------------------------------------- /experiments/retired/blocks_world_table_spec/temp/domain.pddl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/experiments/retired/blocks_world_table_spec/temp/domain.pddl -------------------------------------------------------------------------------- /experiments/retired/kitchen/domain.pddl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/experiments/retired/kitchen/domain.pddl -------------------------------------------------------------------------------- /experiments/retired/kitchen/kitchen_streams/__init__.py: -------------------------------------------------------------------------------- 1 | from .streams import * 2 | -------------------------------------------------------------------------------- /experiments/retired/kitchen/kitchen_streams/streams.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/experiments/retired/kitchen/kitchen_streams/streams.py -------------------------------------------------------------------------------- /experiments/retired/kitchen/problems/kitchen_problem.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/experiments/retired/kitchen/problems/kitchen_problem.yaml -------------------------------------------------------------------------------- /experiments/retired/kitchen/run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/experiments/retired/kitchen/run.py -------------------------------------------------------------------------------- /experiments/retired/kitchen/stream.pddl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/experiments/retired/kitchen/stream.pddl -------------------------------------------------------------------------------- /experiments/retired/kitchen/temp/domain.pddl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/experiments/retired/kitchen/temp/domain.pddl -------------------------------------------------------------------------------- /experiments/retired/pick-place-regions/problems/test_problem.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/experiments/retired/pick-place-regions/problems/test_problem.yaml -------------------------------------------------------------------------------- /experiments/retired/pick-place-regions/run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/experiments/retired/pick-place-regions/run.py -------------------------------------------------------------------------------- /experiments/retired/pick-place-regions/temp/domain.pddl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/experiments/retired/pick-place-regions/temp/domain.pddl -------------------------------------------------------------------------------- /experiments/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/experiments/run.sh -------------------------------------------------------------------------------- /experiments/shared.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/experiments/shared.py -------------------------------------------------------------------------------- /experiments/shared_ploi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/experiments/shared_ploi.py -------------------------------------------------------------------------------- /experiments/start_meschat_server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/experiments/start_meschat_server.py -------------------------------------------------------------------------------- /experiments/test_problem.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/experiments/test_problem.yaml -------------------------------------------------------------------------------- /experiments/two_arm_blocks_world/blocks_world_streams/__init__.py: -------------------------------------------------------------------------------- 1 | from .streams import * 2 | -------------------------------------------------------------------------------- /experiments/two_arm_blocks_world/blocks_world_streams/streams.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/experiments/two_arm_blocks_world/blocks_world_streams/streams.py -------------------------------------------------------------------------------- /experiments/two_arm_blocks_world/domain.pddl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/experiments/two_arm_blocks_world/domain.pddl -------------------------------------------------------------------------------- /experiments/two_arm_blocks_world/generate_problems.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/experiments/two_arm_blocks_world/generate_problems.py -------------------------------------------------------------------------------- /experiments/two_arm_blocks_world/problems/two_arm.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/experiments/two_arm_blocks_world/problems/two_arm.yaml -------------------------------------------------------------------------------- /experiments/two_arm_blocks_world/run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/experiments/two_arm_blocks_world/run.py -------------------------------------------------------------------------------- /experiments/two_arm_blocks_world/stream.pddl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/experiments/two_arm_blocks_world/stream.pddl -------------------------------------------------------------------------------- /experiments/two_arm_blocks_world/temp/domain.pddl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/experiments/two_arm_blocks_world/temp/domain.pddl -------------------------------------------------------------------------------- /experiments/two_arm_blocks_world/two_arm_data_generation/__init__.py: -------------------------------------------------------------------------------- 1 | from . import make_problem 2 | -------------------------------------------------------------------------------- /learning/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/learning/__init__.py -------------------------------------------------------------------------------- /learning/data/experiments/blocksworld_V2_adaptive.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/learning/data/experiments/blocksworld_V2_adaptive.json -------------------------------------------------------------------------------- /learning/data/experiments/blocksworld_complexitycollector.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/learning/data/experiments/blocksworld_complexitycollector.json -------------------------------------------------------------------------------- /learning/data/experiments/kitchen_diffclasses.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/learning/data/experiments/kitchen_diffclasses.json -------------------------------------------------------------------------------- /learning/data/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/learning/data/index.json -------------------------------------------------------------------------------- /learning/data_models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/learning/data_models.py -------------------------------------------------------------------------------- /learning/gnn/data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/learning/gnn/data.py -------------------------------------------------------------------------------- /learning/gnn/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/learning/gnn/main.py -------------------------------------------------------------------------------- /learning/gnn/metrics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/learning/gnn/metrics.py -------------------------------------------------------------------------------- /learning/gnn/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/learning/gnn/models.py -------------------------------------------------------------------------------- /learning/gnn/ploi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/learning/gnn/ploi.py -------------------------------------------------------------------------------- /learning/gnn/test/hanoi_solver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/learning/gnn/test/hanoi_solver.py -------------------------------------------------------------------------------- /learning/gnn/test/notes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/learning/gnn/test/notes.md -------------------------------------------------------------------------------- /learning/gnn/test/test_batching.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/learning/gnn/test/test_batching.py -------------------------------------------------------------------------------- /learning/gnn/test/test_streamclassv2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/learning/gnn/test/test_streamclassv2.py -------------------------------------------------------------------------------- /learning/gnn/train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/learning/gnn/train.py -------------------------------------------------------------------------------- /learning/oracle.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/learning/oracle.py -------------------------------------------------------------------------------- /learning/pddlstream_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/learning/pddlstream_utils.py -------------------------------------------------------------------------------- /learning/poisson_disc_sampling.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/learning/poisson_disc_sampling.py -------------------------------------------------------------------------------- /learning/scripts/blocksworld.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/learning/scripts/blocksworld.py -------------------------------------------------------------------------------- /learning/scripts/consensus.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/learning/scripts/consensus.py -------------------------------------------------------------------------------- /learning/scripts/hanoi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/learning/scripts/hanoi.py -------------------------------------------------------------------------------- /learning/scripts/kitchen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/learning/scripts/kitchen.py -------------------------------------------------------------------------------- /learning/scripts/kitchen_diffclasses.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/learning/scripts/kitchen_diffclasses.py -------------------------------------------------------------------------------- /learning/scripts/test_graph_vis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/learning/scripts/test_graph_vis.py -------------------------------------------------------------------------------- /learning/test/test_preimages.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/learning/test/test_preimages.py -------------------------------------------------------------------------------- /learning/visualization.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/learning/visualization.py -------------------------------------------------------------------------------- /panda_station/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/panda_station/README.md -------------------------------------------------------------------------------- /panda_station/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/panda_station/__init__.py -------------------------------------------------------------------------------- /panda_station/construction_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/panda_station/construction_utils.py -------------------------------------------------------------------------------- /panda_station/directives/basement.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/panda_station/directives/basement.yaml -------------------------------------------------------------------------------- /panda_station/directives/blocks_world.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/panda_station/directives/blocks_world.yaml -------------------------------------------------------------------------------- /panda_station/directives/hanoi.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/panda_station/directives/hanoi.yaml -------------------------------------------------------------------------------- /panda_station/directives/inspect_directive.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/panda_station/directives/inspect_directive.py -------------------------------------------------------------------------------- /panda_station/directives/kitchen.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/panda_station/directives/kitchen.yaml -------------------------------------------------------------------------------- /panda_station/directives/kitchen_planning.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/panda_station/directives/kitchen_planning.yaml -------------------------------------------------------------------------------- /panda_station/directives/one_arm_blocks_world.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/panda_station/directives/one_arm_blocks_world.yaml -------------------------------------------------------------------------------- /panda_station/directives/three_tables.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/panda_station/directives/three_tables.yaml -------------------------------------------------------------------------------- /panda_station/directives/video.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/panda_station/directives/video.yaml -------------------------------------------------------------------------------- /panda_station/grasping_and_placing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/panda_station/grasping_and_placing.py -------------------------------------------------------------------------------- /panda_station/models/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/panda_station/models/README.md -------------------------------------------------------------------------------- /panda_station/models/basement/images/setup1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/panda_station/models/basement/images/setup1.jpg -------------------------------------------------------------------------------- /panda_station/models/basement/images/setup2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/panda_station/models/basement/images/setup2.jpg -------------------------------------------------------------------------------- /panda_station/models/basement/images/wooden_table.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/panda_station/models/basement/images/wooden_table.jpg -------------------------------------------------------------------------------- /panda_station/models/basement/measurements.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/panda_station/models/basement/measurements.md -------------------------------------------------------------------------------- /panda_station/models/basement/package.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/panda_station/models/basement/package.xml -------------------------------------------------------------------------------- /panda_station/models/basement/sdf/PFM52503.sdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/panda_station/models/basement/sdf/PFM52503.sdf -------------------------------------------------------------------------------- /panda_station/models/basement/sdf/bracket.sdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/panda_station/models/basement/sdf/bracket.sdf -------------------------------------------------------------------------------- /panda_station/models/basement/sdf/ground_plane.sdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/panda_station/models/basement/sdf/ground_plane.sdf -------------------------------------------------------------------------------- /panda_station/models/basement/sdf/indigo_block.sdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/panda_station/models/basement/sdf/indigo_block.sdf -------------------------------------------------------------------------------- /panda_station/models/basement/sdf/make_blocks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/panda_station/models/basement/sdf/make_blocks.py -------------------------------------------------------------------------------- /panda_station/models/basement/sdf/pink_block.sdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/panda_station/models/basement/sdf/pink_block.sdf -------------------------------------------------------------------------------- /panda_station/models/basement/sdf/red_block.sdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/panda_station/models/basement/sdf/red_block.sdf -------------------------------------------------------------------------------- /panda_station/models/basement/sdf/simplified_replica.sdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/panda_station/models/basement/sdf/simplified_replica.sdf -------------------------------------------------------------------------------- /panda_station/models/basement/sdf/template_block.sdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/panda_station/models/basement/sdf/template_block.sdf -------------------------------------------------------------------------------- /panda_station/models/basement/sdf/wood_block.sdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/panda_station/models/basement/sdf/wood_block.sdf -------------------------------------------------------------------------------- /panda_station/models/basement/sdf/wooden_table.sdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/panda_station/models/basement/sdf/wooden_table.sdf -------------------------------------------------------------------------------- /panda_station/models/basement/sdf/yellow_block.sdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/panda_station/models/basement/sdf/yellow_block.sdf -------------------------------------------------------------------------------- /panda_station/models/blocks_world/package.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/panda_station/models/blocks_world/package.xml -------------------------------------------------------------------------------- /panda_station/models/blocks_world/sdf/block0.sdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/panda_station/models/blocks_world/sdf/block0.sdf -------------------------------------------------------------------------------- /panda_station/models/blocks_world/sdf/block1.sdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/panda_station/models/blocks_world/sdf/block1.sdf -------------------------------------------------------------------------------- /panda_station/models/blocks_world/sdf/block10.sdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/panda_station/models/blocks_world/sdf/block10.sdf -------------------------------------------------------------------------------- /panda_station/models/blocks_world/sdf/block11.sdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/panda_station/models/blocks_world/sdf/block11.sdf -------------------------------------------------------------------------------- /panda_station/models/blocks_world/sdf/block12.sdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/panda_station/models/blocks_world/sdf/block12.sdf -------------------------------------------------------------------------------- /panda_station/models/blocks_world/sdf/block13.sdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/panda_station/models/blocks_world/sdf/block13.sdf -------------------------------------------------------------------------------- /panda_station/models/blocks_world/sdf/block14.sdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/panda_station/models/blocks_world/sdf/block14.sdf -------------------------------------------------------------------------------- /panda_station/models/blocks_world/sdf/block15.sdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/panda_station/models/blocks_world/sdf/block15.sdf -------------------------------------------------------------------------------- /panda_station/models/blocks_world/sdf/block16.sdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/panda_station/models/blocks_world/sdf/block16.sdf -------------------------------------------------------------------------------- /panda_station/models/blocks_world/sdf/block17.sdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/panda_station/models/blocks_world/sdf/block17.sdf -------------------------------------------------------------------------------- /panda_station/models/blocks_world/sdf/block18.sdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/panda_station/models/blocks_world/sdf/block18.sdf -------------------------------------------------------------------------------- /panda_station/models/blocks_world/sdf/block19.sdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/panda_station/models/blocks_world/sdf/block19.sdf -------------------------------------------------------------------------------- /panda_station/models/blocks_world/sdf/block2.sdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/panda_station/models/blocks_world/sdf/block2.sdf -------------------------------------------------------------------------------- /panda_station/models/blocks_world/sdf/block3.sdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/panda_station/models/blocks_world/sdf/block3.sdf -------------------------------------------------------------------------------- /panda_station/models/blocks_world/sdf/block4.sdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/panda_station/models/blocks_world/sdf/block4.sdf -------------------------------------------------------------------------------- /panda_station/models/blocks_world/sdf/block5.sdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/panda_station/models/blocks_world/sdf/block5.sdf -------------------------------------------------------------------------------- /panda_station/models/blocks_world/sdf/block6.sdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/panda_station/models/blocks_world/sdf/block6.sdf -------------------------------------------------------------------------------- /panda_station/models/blocks_world/sdf/block7.sdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/panda_station/models/blocks_world/sdf/block7.sdf -------------------------------------------------------------------------------- /panda_station/models/blocks_world/sdf/block8.sdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/panda_station/models/blocks_world/sdf/block8.sdf -------------------------------------------------------------------------------- /panda_station/models/blocks_world/sdf/block9.sdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/panda_station/models/blocks_world/sdf/block9.sdf -------------------------------------------------------------------------------- /panda_station/models/blocks_world/sdf/blocker_block.sdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/panda_station/models/blocks_world/sdf/blocker_block.sdf -------------------------------------------------------------------------------- /panda_station/models/blocks_world/sdf/blue_block.sdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/panda_station/models/blocks_world/sdf/blue_block.sdf -------------------------------------------------------------------------------- /panda_station/models/blocks_world/sdf/blue_table.sdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/panda_station/models/blocks_world/sdf/blue_table.sdf -------------------------------------------------------------------------------- /panda_station/models/blocks_world/sdf/green_block.sdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/panda_station/models/blocks_world/sdf/green_block.sdf -------------------------------------------------------------------------------- /panda_station/models/blocks_world/sdf/green_table.sdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/panda_station/models/blocks_world/sdf/green_table.sdf -------------------------------------------------------------------------------- /panda_station/models/blocks_world/sdf/ground_plane.sdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/panda_station/models/blocks_world/sdf/ground_plane.sdf -------------------------------------------------------------------------------- /panda_station/models/blocks_world/sdf/indigo_block.sdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/panda_station/models/blocks_world/sdf/indigo_block.sdf -------------------------------------------------------------------------------- /panda_station/models/blocks_world/sdf/indigo_table.sdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/panda_station/models/blocks_world/sdf/indigo_table.sdf -------------------------------------------------------------------------------- /panda_station/models/blocks_world/sdf/make_blocks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/panda_station/models/blocks_world/sdf/make_blocks.py -------------------------------------------------------------------------------- /panda_station/models/blocks_world/sdf/make_tables.sdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/panda_station/models/blocks_world/sdf/make_tables.sdf -------------------------------------------------------------------------------- /panda_station/models/blocks_world/sdf/orange_block.sdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/panda_station/models/blocks_world/sdf/orange_block.sdf -------------------------------------------------------------------------------- /panda_station/models/blocks_world/sdf/orange_table.sdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/panda_station/models/blocks_world/sdf/orange_table.sdf -------------------------------------------------------------------------------- /panda_station/models/blocks_world/sdf/red_block.sdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/panda_station/models/blocks_world/sdf/red_block.sdf -------------------------------------------------------------------------------- /panda_station/models/blocks_world/sdf/red_table.sdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/panda_station/models/blocks_world/sdf/red_table.sdf -------------------------------------------------------------------------------- /panda_station/models/blocks_world/sdf/square_table.sdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/panda_station/models/blocks_world/sdf/square_table.sdf -------------------------------------------------------------------------------- /panda_station/models/blocks_world/sdf/template_block.sdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/panda_station/models/blocks_world/sdf/template_block.sdf -------------------------------------------------------------------------------- /panda_station/models/blocks_world/sdf/template_table.sdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/panda_station/models/blocks_world/sdf/template_table.sdf -------------------------------------------------------------------------------- /panda_station/models/blocks_world/sdf/yellow_block.sdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/panda_station/models/blocks_world/sdf/yellow_block.sdf -------------------------------------------------------------------------------- /panda_station/models/blocks_world/sdf/yellow_table.sdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/panda_station/models/blocks_world/sdf/yellow_table.sdf -------------------------------------------------------------------------------- /panda_station/models/hanoi/package.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/panda_station/models/hanoi/package.xml -------------------------------------------------------------------------------- /panda_station/models/hanoi/sdf/disc_10.sdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/panda_station/models/hanoi/sdf/disc_10.sdf -------------------------------------------------------------------------------- /panda_station/models/hanoi/sdf/disc_12.sdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/panda_station/models/hanoi/sdf/disc_12.sdf -------------------------------------------------------------------------------- /panda_station/models/hanoi/sdf/disc_14.sdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/panda_station/models/hanoi/sdf/disc_14.sdf -------------------------------------------------------------------------------- /panda_station/models/hanoi/sdf/disc_16.sdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/panda_station/models/hanoi/sdf/disc_16.sdf -------------------------------------------------------------------------------- /panda_station/models/hanoi/sdf/disc_18.sdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/panda_station/models/hanoi/sdf/disc_18.sdf -------------------------------------------------------------------------------- /panda_station/models/hanoi/sdf/disc_20.sdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/panda_station/models/hanoi/sdf/disc_20.sdf -------------------------------------------------------------------------------- /panda_station/models/hanoi/sdf/disc_22.sdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/panda_station/models/hanoi/sdf/disc_22.sdf -------------------------------------------------------------------------------- /panda_station/models/hanoi/sdf/disc_24.sdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/panda_station/models/hanoi/sdf/disc_24.sdf -------------------------------------------------------------------------------- /panda_station/models/hanoi/sdf/disc_26.sdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/panda_station/models/hanoi/sdf/disc_26.sdf -------------------------------------------------------------------------------- /panda_station/models/hanoi/sdf/disc_27.sdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/panda_station/models/hanoi/sdf/disc_27.sdf -------------------------------------------------------------------------------- /panda_station/models/hanoi/sdf/disc_28.sdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/panda_station/models/hanoi/sdf/disc_28.sdf -------------------------------------------------------------------------------- /panda_station/models/hanoi/sdf/disc_29.sdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/panda_station/models/hanoi/sdf/disc_29.sdf -------------------------------------------------------------------------------- /panda_station/models/hanoi/sdf/disc_30.sdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/panda_station/models/hanoi/sdf/disc_30.sdf -------------------------------------------------------------------------------- /panda_station/models/hanoi/sdf/disc_32.sdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/panda_station/models/hanoi/sdf/disc_32.sdf -------------------------------------------------------------------------------- /panda_station/models/hanoi/sdf/disc_34.sdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/panda_station/models/hanoi/sdf/disc_34.sdf -------------------------------------------------------------------------------- /panda_station/models/hanoi/sdf/disc_36.sdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/panda_station/models/hanoi/sdf/disc_36.sdf -------------------------------------------------------------------------------- /panda_station/models/hanoi/sdf/make_discs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/panda_station/models/hanoi/sdf/make_discs.py -------------------------------------------------------------------------------- /panda_station/models/hanoi/sdf/template_disc.sdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/panda_station/models/hanoi/sdf/template_disc.sdf -------------------------------------------------------------------------------- /panda_station/models/hanoi/sdf/wooden_table.sdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/panda_station/models/hanoi/sdf/wooden_table.sdf -------------------------------------------------------------------------------- /panda_station/models/inspect_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/panda_station/models/inspect_model.py -------------------------------------------------------------------------------- /panda_station/models/kitchen/meshes/Shoshan_Serving_Tray.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/panda_station/models/kitchen/meshes/Shoshan_Serving_Tray.obj -------------------------------------------------------------------------------- /panda_station/models/kitchen/package.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/panda_station/models/kitchen/package.xml -------------------------------------------------------------------------------- /panda_station/models/kitchen/sdf/buffer_sink.sdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/panda_station/models/kitchen/sdf/buffer_sink.sdf -------------------------------------------------------------------------------- /panda_station/models/kitchen/sdf/cabbage.sdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/panda_station/models/kitchen/sdf/cabbage.sdf -------------------------------------------------------------------------------- /panda_station/models/kitchen/sdf/glass.sdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/panda_station/models/kitchen/sdf/glass.sdf -------------------------------------------------------------------------------- /panda_station/models/kitchen/sdf/glass_table.sdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/panda_station/models/kitchen/sdf/glass_table.sdf -------------------------------------------------------------------------------- /panda_station/models/kitchen/sdf/green_placemat.sdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/panda_station/models/kitchen/sdf/green_placemat.sdf -------------------------------------------------------------------------------- /panda_station/models/kitchen/sdf/ground_plane.sdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/panda_station/models/kitchen/sdf/ground_plane.sdf -------------------------------------------------------------------------------- /panda_station/models/kitchen/sdf/low_table_square_white.sdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/panda_station/models/kitchen/sdf/low_table_square_white.sdf -------------------------------------------------------------------------------- /panda_station/models/kitchen/sdf/low_table_white.sdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/panda_station/models/kitchen/sdf/low_table_white.sdf -------------------------------------------------------------------------------- /panda_station/models/kitchen/sdf/placemat.sdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/panda_station/models/kitchen/sdf/placemat.sdf -------------------------------------------------------------------------------- /panda_station/models/kitchen/sdf/plate.sdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/panda_station/models/kitchen/sdf/plate.sdf -------------------------------------------------------------------------------- /panda_station/models/kitchen/sdf/raddish.sdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/panda_station/models/kitchen/sdf/raddish.sdf -------------------------------------------------------------------------------- /panda_station/models/kitchen/sdf/serving_table.sdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/panda_station/models/kitchen/sdf/serving_table.sdf -------------------------------------------------------------------------------- /panda_station/models/kitchen/sdf/sink.sdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/panda_station/models/kitchen/sdf/sink.sdf -------------------------------------------------------------------------------- /panda_station/models/kitchen/sdf/stove.sdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/panda_station/models/kitchen/sdf/stove.sdf -------------------------------------------------------------------------------- /panda_station/models/kitchen/sdf/tray.sdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/panda_station/models/kitchen/sdf/tray.sdf -------------------------------------------------------------------------------- /panda_station/models/manipulands/meshes/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/panda_station/models/manipulands/meshes/LICENSE.txt -------------------------------------------------------------------------------- /panda_station/models/manipulands/package.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/panda_station/models/manipulands/package.xml -------------------------------------------------------------------------------- /panda_station/models/manipulands/sdf/cracker_box.sdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/panda_station/models/manipulands/sdf/cracker_box.sdf -------------------------------------------------------------------------------- /panda_station/models/manipulands/sdf/dumbbell.sdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/panda_station/models/manipulands/sdf/dumbbell.sdf -------------------------------------------------------------------------------- /panda_station/models/manipulands/sdf/foam_brick.sdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/panda_station/models/manipulands/sdf/foam_brick.sdf -------------------------------------------------------------------------------- /panda_station/models/manipulands/sdf/gelatin_box.sdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/panda_station/models/manipulands/sdf/gelatin_box.sdf -------------------------------------------------------------------------------- /panda_station/models/manipulands/sdf/meat_can.sdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/panda_station/models/manipulands/sdf/meat_can.sdf -------------------------------------------------------------------------------- /panda_station/models/manipulands/sdf/mustard.sdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/panda_station/models/manipulands/sdf/mustard.sdf -------------------------------------------------------------------------------- /panda_station/models/manipulands/sdf/soup_can.sdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/panda_station/models/manipulands/sdf/soup_can.sdf -------------------------------------------------------------------------------- /panda_station/models/manipulands/sdf/sugar_box.sdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/panda_station/models/manipulands/sdf/sugar_box.sdf -------------------------------------------------------------------------------- /panda_station/models/model_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/panda_station/models/model_utils.py -------------------------------------------------------------------------------- /panda_station/models/modified_panda_hand/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/panda_station/models/modified_panda_hand/LICENSE -------------------------------------------------------------------------------- /panda_station/models/modified_panda_hand/LICENSE.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/panda_station/models/modified_panda_hand/LICENSE.TXT -------------------------------------------------------------------------------- /panda_station/models/modified_panda_hand/meshes/finger.mtl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/panda_station/models/modified_panda_hand/meshes/finger.mtl -------------------------------------------------------------------------------- /panda_station/models/modified_panda_hand/meshes/finger.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/panda_station/models/modified_panda_hand/meshes/finger.obj -------------------------------------------------------------------------------- /panda_station/models/modified_panda_hand/meshes/hand.mtl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/panda_station/models/modified_panda_hand/meshes/hand.mtl -------------------------------------------------------------------------------- /panda_station/models/modified_panda_hand/meshes/hand.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/panda_station/models/modified_panda_hand/meshes/hand.obj -------------------------------------------------------------------------------- /panda_station/models/modified_panda_hand/package.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/panda_station/models/modified_panda_hand/package.xml -------------------------------------------------------------------------------- /panda_station/models/modified_panda_hand/sdf/panda_hand.sdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/panda_station/models/modified_panda_hand/sdf/panda_hand.sdf -------------------------------------------------------------------------------- /panda_station/models/tables/package.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/panda_station/models/tables/package.xml -------------------------------------------------------------------------------- /panda_station/models/tables/sdf/big_white_table.sdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/panda_station/models/tables/sdf/big_white_table.sdf -------------------------------------------------------------------------------- /panda_station/models/tables/sdf/round_target.sdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/panda_station/models/tables/sdf/round_target.sdf -------------------------------------------------------------------------------- /panda_station/models/tables/sdf/square_target.sdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/panda_station/models/tables/sdf/square_target.sdf -------------------------------------------------------------------------------- /panda_station/models/video/meshes/finger.mtl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/panda_station/models/video/meshes/finger.mtl -------------------------------------------------------------------------------- /panda_station/models/video/meshes/finger.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/panda_station/models/video/meshes/finger.obj -------------------------------------------------------------------------------- /panda_station/models/video/meshes/hand.mtl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/panda_station/models/video/meshes/hand.mtl -------------------------------------------------------------------------------- /panda_station/models/video/meshes/hand.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/panda_station/models/video/meshes/hand.obj -------------------------------------------------------------------------------- /panda_station/models/video/package.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/panda_station/models/video/package.xml -------------------------------------------------------------------------------- /panda_station/models/video/sdf/hand_and_block_0.sdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/panda_station/models/video/sdf/hand_and_block_0.sdf -------------------------------------------------------------------------------- /panda_station/models/video/sdf/hand_and_block_1.sdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/panda_station/models/video/sdf/hand_and_block_1.sdf -------------------------------------------------------------------------------- /panda_station/models/video/sdf/hand_and_block_2.sdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/panda_station/models/video/sdf/hand_and_block_2.sdf -------------------------------------------------------------------------------- /panda_station/models/video/sdf/hand_and_block_3.sdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/panda_station/models/video/sdf/hand_and_block_3.sdf -------------------------------------------------------------------------------- /panda_station/models/video/sdf/hand_and_block_4.sdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/panda_station/models/video/sdf/hand_and_block_4.sdf -------------------------------------------------------------------------------- /panda_station/models/video/sdf/hand_and_block_5.sdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/panda_station/models/video/sdf/hand_and_block_5.sdf -------------------------------------------------------------------------------- /panda_station/models/video/sdf/hand_and_block_6.sdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/panda_station/models/video/sdf/hand_and_block_6.sdf -------------------------------------------------------------------------------- /panda_station/models/video/sdf/hand_and_block_7.sdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/panda_station/models/video/sdf/hand_and_block_7.sdf -------------------------------------------------------------------------------- /panda_station/models/video/sdf/hand_and_block_8.sdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/panda_station/models/video/sdf/hand_and_block_8.sdf -------------------------------------------------------------------------------- /panda_station/models/video/sdf/hand_and_block_9.sdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/panda_station/models/video/sdf/hand_and_block_9.sdf -------------------------------------------------------------------------------- /panda_station/models/video/sdf/make_hand_and_blocks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/panda_station/models/video/sdf/make_hand_and_blocks.py -------------------------------------------------------------------------------- /panda_station/models/video/sdf/template_hand_and_block.sdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/panda_station/models/video/sdf/template_hand_and_block.sdf -------------------------------------------------------------------------------- /panda_station/models/video/sdf/test_hand_and_block.sdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/panda_station/models/video/sdf/test_hand_and_block.sdf -------------------------------------------------------------------------------- /panda_station/panda_hand_position_controller.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/panda_station/panda_hand_position_controller.py -------------------------------------------------------------------------------- /panda_station/panda_station.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/panda_station/panda_station.py -------------------------------------------------------------------------------- /panda_station/plan_to_trajectory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/panda_station/plan_to_trajectory.py -------------------------------------------------------------------------------- /panda_station/planning_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/panda_station/planning_utils.py -------------------------------------------------------------------------------- /panda_station/stream_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/panda_station/stream_utils.py -------------------------------------------------------------------------------- /panda_station/test/construction_utils_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/panda_station/test/construction_utils_test.py -------------------------------------------------------------------------------- /panda_station/test/panda_hand_position_controller_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/panda_station/test/panda_hand_position_controller_test.py -------------------------------------------------------------------------------- /panda_station/test/panda_station_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/panda_station/test/panda_station_test.py -------------------------------------------------------------------------------- /panda_station/test/planning_utils_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/panda_station/test/planning_utils_test.py -------------------------------------------------------------------------------- /panda_station/test/test_files/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/panda_station/test/test_files/README.md -------------------------------------------------------------------------------- /panda_station/test/test_files/three_tables.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/panda_station/test/test_files/three_tables.yaml -------------------------------------------------------------------------------- /panda_station/trajectory_director.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/panda_station/trajectory_director.py -------------------------------------------------------------------------------- /panda_station/trajectory_generation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/panda_station/trajectory_generation.py -------------------------------------------------------------------------------- /panda_station/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/panda_station/utils.py -------------------------------------------------------------------------------- /retired/test/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/retired/test/README.md -------------------------------------------------------------------------------- /retired/test/grasping_testing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/retired/test/grasping_testing.py -------------------------------------------------------------------------------- /retired/test/meshcat_server.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/retired/test/meshcat_server.ipynb -------------------------------------------------------------------------------- /retired/test/model_introspection.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/retired/test/model_introspection.ipynb -------------------------------------------------------------------------------- /retired/test/motion_planning_testing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/retired/test/motion_planning_testing.py -------------------------------------------------------------------------------- /retired/test/multistation_testing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/retired/test/multistation_testing.py -------------------------------------------------------------------------------- /retired/test/placement_testing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/retired/test/placement_testing.py -------------------------------------------------------------------------------- /retired/test/pyvis_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/retired/test/pyvis_test.py -------------------------------------------------------------------------------- /retired/test/stable_place_testing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/retired/test/stable_place_testing.py -------------------------------------------------------------------------------- /retired/test/start_meschat_server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/retired/test/start_meschat_server.py -------------------------------------------------------------------------------- /retired/test/view_directive.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/retired/test/view_directive.py -------------------------------------------------------------------------------- /tamp_statistics/__init__.py: -------------------------------------------------------------------------------- 1 | from .plotting import * 2 | -------------------------------------------------------------------------------- /tamp_statistics/plotting.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/tamp_statistics/plotting.py -------------------------------------------------------------------------------- /tamp_statistics/retired/process_stats.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/tamp_statistics/retired/process_stats.py -------------------------------------------------------------------------------- /tamp_statistics/test/stats.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/tamp_statistics/test/stats.json -------------------------------------------------------------------------------- /tamp_statistics/test/test_plotting.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvl-lab-utoronto/drake-tamp/HEAD/tamp_statistics/test/test_plotting.py --------------------------------------------------------------------------------