]> git.donarmstrong.com Git - mrbayes.git/blobdiff - src/model.c
add debugging information to model
[mrbayes.git] / 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);
 }