Skip to content

Commit

Permalink
remove total runtime from progress log
Browse files Browse the repository at this point in the history
  • Loading branch information
mateusaubin committed Oct 25, 2018
1 parent f364eb3 commit ca5971a
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -76,8 +76,8 @@ public synchronized void update(Observable o, Object arg) {
stream.println(" ");stream.println(" ");
stream.println("::Progress::");
stream.println(" ");
stream.println("Model \t\t Exec. Time \t Total Time \t -lnL");
stream.println("-------------------------------------------------------------------------");
stream.println("Model \t\t Exec. Time \t\t-lnL");
stream.println("---------------------------------------------------------");
break;

case ProgressInfo.GTR_OPTIMIZATION_INIT:
Expand All @@ -103,7 +103,7 @@ public synchronized void update(Observable o, Object arg) {
if (info.getModel().getName().length()<8)
stream.print("\t");
stream.print(info.getMessage() + "\t"
+ Utilities.calculateRuntime(startTime, System.currentTimeMillis()) + "\t"
//+ Utilities.calculateRuntime(startTime, System.currentTimeMillis()) + "\t"
+ String.format(Locale.ENGLISH, "%13.4f", modelLnL));
if (ModelTest.MPJ_RUN && threadScheduling) {
stream.println(" ");
Expand Down

0 comments on commit ca5971a

Please # to comment.