From 0b77ea228a48015b2eced56970e8935661386324 Mon Sep 17 00:00:00 2001 From: Don Armstrong Date: Wed, 6 Apr 2016 10:53:22 -0500 Subject: [PATCH] add debugging information to model --- src/model.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/model.c b/src/model.c index 1053f23..8cde280 100644 --- a/src/model.c +++ b/src/model.c @@ -17420,6 +17420,7 @@ int SetModelDefaults (void) modelParams[j].activeConstraints = (int *) SafeCalloc(numDefinedConstraints, sizeof(int)); /* allocate space for active constraints (yes/no) */ } + MrBayesPrint ("%s Model defaults set\n", spacer); return (NO_ERROR); } @@ -19883,6 +19884,7 @@ int SetUpAnalysis (RandLong *seed) { setUpAnalysisSuccess=NO; + MrBayesPrint ("%s Setting up analysis\n", spacer); /* calculate number of characters and taxa */ numLocalChar = NumNonExcludedChar (); @@ -19955,6 +19957,7 @@ int SetUpAnalysis (RandLong *seed) setUpAnalysisSuccess=YES; + MrBayesPrint ("%s Set up analysis\n", spacer); return (NO_ERROR); } -- 2.39.2