modern-fortran/neural-fortran

get_set_network_params.f90 does not print the output of a logical test

jvo203 opened this issue · 1 comments

I missed it in the review, the last line of code

print '(a)', 'Original and cloned network outputs match:', all(ypred1 == ypred2)

produces an empty test result:

Original and cloned network outputs match:

Obviously the '(a)' format string does not contain an entry for the second argument (the T/F logical result).

Thanks @jvo203, good eye.