From 232108f3850c8433ec49f7262ddfd4819afc62c7 Mon Sep 17 00:00:00 2001
From: dh00601 <dh00601@surrey.ac.uk>
Date: Sun, 26 Sep 2021 16:03:52 +0100
Subject: [PATCH] fixing more M&S issues

---
 binarycpython/utils/grid.py | 5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

diff --git a/binarycpython/utils/grid.py b/binarycpython/utils/grid.py
index 636cca067..38ed8e092 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']
                     )
                 )
 
-- 
GitLab