Skip to content

Commit f479582

Browse files
committed
Change operator norm to standard norm for error checking.
1 parent 28bb69b commit f479582

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/linalg/test_linalg_expm.fypp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ module test_linalg_expm
5757
E = expm(A)
5858

5959
! Check result.
60-
err = mnorm(Eref - E, "inf")
60+
err = norm(Eref - E, "inf")
6161
call check(error, err < (n**2)*epsilon(1.0_${rk}$), "Analytical matrix exponential.")
6262
if (allocated(error)) return
6363
return

0 commit comments

Comments
 (0)