Skip to content

Commit beb50b8

Browse files
committed
fix default atol (DZERO)
1 parent a36aa9a commit beb50b8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Utilities/MathUtil.f90

+1-1
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ logical function is_close(a, b, rtol, atol, symmetric)
8989
lrtol = rtol
9090
end if
9191
if (.not. present(atol)) then
92-
latol = DSAME
92+
latol = DZERO
9393
else
9494
latol = atol
9595
end if

0 commit comments

Comments
 (0)