Skip to content

Commit 8cf4c3a

Browse files
committed
tol
1 parent 287f3af commit 8cf4c3a

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

test/runtests.jl

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -29,8 +29,8 @@ using Test
2929
@test $A2 * y $b2
3030
@test $A2 * $x2 $b2
3131

32-
cache = SciMLBase.init($prob1, # initialize cache
33-
$alg(;$kwargs...))
32+
cache = SciMLBase.init($prob1,
33+
$alg(;$kwargs...)) # initialize cache
3434
y = cache($x3, $A1, $b1) # cache is callable
3535
@test $A1 * y $b1
3636
@test $A1 * $x3 $b1
@@ -59,7 +59,7 @@ using Test
5959
end
6060

6161
# KrylovJL
62-
kwargs = :(ifverbose=true, abstol=1e-2, reltol=1e-1, maxiter=3,
62+
kwargs = :(ifverbose=true, abstol=1e-8, reltol=1e-8, maxiter=30,
6363
gmres_restart=5)
6464
for alg in (
6565
:KrylovJL,
@@ -72,7 +72,7 @@ using Test
7272
end
7373

7474
# IterativeSolversJL
75-
kwargs = :(ifverbose=true, abstol=1e-1, reltol=1e-2, maxiter=3,
75+
kwargs = :(ifverbose=true, abstol=1e-8, reltol=1e-8, maxiter=30,
7676
gmres_restart=5)
7777
for alg in (
7878
:IterativeSolversJL,

0 commit comments

Comments
 (0)