Removed redundant petridish debug launcher.

This commit is contained in:
Debadeepta Dey 2020-07-01 17:18:24 -07:00 коммит произвёл Gustavo Rosa
Родитель aeaaebc707
Коммит 7c3e3d4b2c
2 изменённых файлов: 3 добавлений и 9 удалений

10
.vscode/launch.json поставляемый
Просмотреть файл

@ -173,15 +173,7 @@
"program": "${cwd}/scripts/main.py",
"console": "integratedTerminal",
"args": ["--algos", "gs"]
},
{
"name": "Petridish-Full",
"type": "python",
"request": "launch",
"program": "${cwd}/scripts/main.py",
"console": "integratedTerminal",
"args": ["--full", "--algos", "petridish"]
},
},
{
"name": "Random-Full",
"type": "python",

Просмотреть файл

@ -223,6 +223,8 @@ class Search:
if not self.pareto_enabled:
yield self.base_reductions, self.base_cells, self.base_nodes
else:
# TODO: what happens when reductions is 3 but cells is 2? have to step
# through code and check
for reductions in range(self.base_reductions, self.max_reductions+1):
for cells in range(self.base_cells, self.max_cells+1):
for nodes in range(self.base_nodes, self.max_nodes+1):