Skip to content

Commit 8dc49cd

Browse files
committed
print only max/min val of error/order
1 parent 43f935b commit 8dc49cd

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/tests/tester/foodie_tester.f90

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -102,10 +102,10 @@ subroutine execute(self)
102102
output_base_name=trim(adjustl(self%output)), &
103103
save_frequency=self%save_frequency, &
104104
error=error(:,t))
105-
print*, 'Dt = ', self%Dt(t), ', error = ', error(:,t)
105+
print*, 'Dt = ', self%Dt(t), ', error (max) = ', maxval(error(:,t))
106106
if (t > 1) then
107107
order(:, t-1) = observed_order(error=error(:, t-1:t), Dt=self%Dt(t-1:t))
108-
print '(A,'//trim(str(size(order, dim=1), no_sign=.true.))//'F6.2)', ' Observed order =', order(:,t-1)
108+
print '(A,F6.2)', ' Observed order (min) =', minval(order(:,t-1))
109109
endif
110110
enddo
111111
enddo

0 commit comments

Comments
 (0)