diff --git a/binarycpython/utils/grid.py b/binarycpython/utils/grid.py index 636cca067a9e23518ac11e65d126bb09dd7d49d5..38ed8e0924c87b67499da09d4394cb4ed8ee03fd 100644 --- a/binarycpython/utils/grid.py +++ b/binarycpython/utils/grid.py @@ -1792,6 +1792,7 @@ class Population: # Set up the grid code with a dry run option to see total probability if self.grid_options['do_dry_run']: + print("Doing dry run to calculate total starcount and probability") self._generate_grid_code(dry_run=True) # Load the grid code @@ -1801,8 +1802,8 @@ class Population: self._dry_run() print( - "Total starcount for this run will be: {}".format( - self.grid_options["_total_starcount"] + "Total starcount for this run will be: {} with a total probability of ".format( + self.grid_options["_total_starcount"], self.grid_options['_probtot'] ) )