From e16f2645214f5dd98d8b6b9844798e3fa4f9cf85 Mon Sep 17 00:00:00 2001 From: David Hendriks <davidhendriks93@gmail.com> Date: Sun, 9 May 2021 11:49:51 +0100 Subject: [PATCH] REmoved prints in grid --- binarycpython/utils/grid.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/binarycpython/utils/grid.py b/binarycpython/utils/grid.py index 93ceafb7a..f60a1dfe5 100644 --- a/binarycpython/utils/grid.py +++ b/binarycpython/utils/grid.py @@ -1942,14 +1942,14 @@ class Population: # TODO: think of whether this is a good method # code_string += indent * (depth + 2) + "if (self.grid_options['multiplicity'] >= 2): print('phasevol_q: ',phasevol_q); print('phasevol_log10per: ',phasevol_log10per);\n" # code_string += indent * (depth + 2) + "print('phasevol_lnm1: ',phasevol_lnm1); print('phasevol_multiplicity: ',phasevol_multiplicity);\n" - code_string += indent * (depth + 2) + "print(probabilities_list)\n" - code_string += indent * (depth + 2) + "print(parameter_dict)\n" + # code_string += indent * (depth + 2) + "print(probabilities_list)\n" + # code_string += indent * (depth + 2) + "print(parameter_dict)\n" code_string += indent * (depth + 2) + "yield(parameter_dict)\n" # If its a dry run, dont do anything with it else: # code_string += indent * (depth + 2) + "if (self.grid_options['multiplicity'] >= 2): print(phasevol_q)\n" - code_string += indent * (depth + 2) + "print(parameter_dict)\n" + # code_string += indent * (depth + 2) + "print(parameter_dict)\n" code_string += indent * (depth + 2) + "pass\n" code_string += indent * (depth + 1) + "#" * 40 + "\n" -- GitLab