Skip to content

Commit

Permalink
fix another repeated branch in the logs
Browse files Browse the repository at this point in the history
this was missed earlier because we didn't have gravity enabled
  • Loading branch information
zingale committed Mar 25, 2024
1 parent 5707c0c commit 11ef0db
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions Source/driver/sum_integrated_quantities.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -511,10 +511,7 @@ Castro::sum_integrated_quantities ()

log << std::setw(intwidth) << timestep;

if (time == 0.0_rt) {
log << std::fixed;
}
else if (time < 1.e-4_rt || time > 1.e4_rt) {
if (time < 1.e-4_rt || time > 1.e4_rt) {
log << std::scientific;
}
else {
Expand Down

0 comments on commit 11ef0db

Please sign in to comment.