From: Don Armstrong Date: Wed, 6 Apr 2016 15:53:22 +0000 (-0500) Subject: add debugging information to model X-Git-Url: https://git.donarmstrong.com/?a=commitdiff_plain;h=0b77ea228a48015b2eced56970e8935661386324;p=mrbayes.git add debugging information to model --- 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); }