Skip to content

Commit

Permalink
#60: removed useless debug output on file
Browse files Browse the repository at this point in the history
  • Loading branch information
lollospadalaser committed Jul 25, 2024
1 parent e716b67 commit 46657ae
Showing 1 changed file with 0 additions and 3 deletions.
3 changes: 0 additions & 3 deletions sxpat/template_manager/template_manager.py
Original file line number Diff line number Diff line change
Expand Up @@ -592,9 +592,6 @@ def run(self) -> Sequence[Result]:
res_dict[f'p_o{number // 2 // self._current_graph.subgraph_num_inputs // self._specs.ppo}_t{number // 2 // self._current_graph.subgraph_num_inputs % self._specs.ppo}_i{number // 2 % self._current_graph.subgraph_num_inputs}_' + ('s' if int(x) % 2 == 0 else 'l')] = True if x[0] == '+' else False
else:
res_dict[f'p_o{x[3:]}'] = True if x[0] == '+' else False
asd = open('./Lollo/wrong.txt','w')
for x in res_dict.items():
asd.write(f'{x[0]} = {x[1]}\n')
return [Result(sxpat_cfg.SAT,res_dict)]
else:
return [Result(sxpat_cfg.UNSAT,dict())]
Expand Down

0 comments on commit 46657ae

Please sign in to comment.