]> git.donarmstrong.com Git - mrbayes.git/commitdiff
add debugging information to model
authorDon Armstrong <don@donarmstrong.com>
Wed, 6 Apr 2016 15:53:22 +0000 (10:53 -0500)
committerDon Armstrong <don@donarmstrong.com>
Wed, 6 Apr 2016 15:53:22 +0000 (10:53 -0500)
src/model.c

index 1053f23a1012d7010a87075af437033a6d14a41e..8cde2801f814307a7c88c0d89e287efec322664a 100644 (file)
@@ -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);
 }