Skip to content

Commit

Permalink
Print both global logs and the most recent epoch
Browse files Browse the repository at this point in the history
  • Loading branch information
jedbrown committed May 29, 2011
1 parent 29746b7 commit 8a9c0ed
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions src/fs/tests/vht.c
Original file line number Diff line number Diff line change
Expand Up @@ -241,6 +241,7 @@ static dErr VHTLogView(struct VHTLog *vlog,PetscViewer viewer)
dFunctionBegin;
err = PetscViewerASCIIPrintf(viewer,"Logged %d epochs\n",vlog->epoch+1);dCHK(err);
err = VHTLogEpochView(&vlog->global,viewer,"Global");dCHK(err);
err = VHTLogEpochView(&vlog->epochs[vlog->epoch],viewer,"Latest");dCHK(err);
dFunctionReturn(0);
}
static void VHTLogEpochRangeReset(dReal a[2]) {a[0] = PETSC_MAX_REAL; a[1] = PETSC_MIN_REAL;}
Expand Down

0 comments on commit 8a9c0ed

Please sign in to comment.