@@ -47,35 +47,38 @@ using Test
47
47
return
48
48
end
49
49
50
- # Factorizations
51
50
kwargs = :()
52
51
for alg in (
53
52
:LUFactorization ,
54
53
:QRFactorization ,
55
54
:SVDFactorization ,
55
+ :DefaultFactorization ,
56
+ :DefaultLinSolve
56
57
)
57
58
test_interface (alg, kwargs, prob1, prob2, prob3)
58
59
end
59
60
60
61
# KrylovJL
61
- kwargs = :(ifverbose= true , abstol= 1e-1 , reltol= 1e-1 , maxiter= 3 , restart= 5 )
62
+ kwargs = :(ifverbose= true , abstol= 1e-2 , reltol= 1e-1 , maxiter= 3 ,
63
+ gmres_restart= 5 )
62
64
for alg in (
63
65
:KrylovJL ,
64
66
:KrylovJL_CG ,
65
- # :KrylovJL_GMRES, # same as default wrapper
66
- # :KrylovJL_BICGSTAB, # fails
67
+ :KrylovJL_GMRES ,
68
+ # :KrylovJL_BICGSTAB, # fails
67
69
:KrylovJL_MINRES ,
68
70
)
69
71
test_interface (alg, kwargs, prob1, prob2, prob3)
70
72
end
71
73
72
74
# IterativeSolversJL
73
- kwargs = :(abstol= 1e-1 , reltol= 1e-1 , maxiter= 3 , restart= 5 )
75
+ kwargs = :(ifverbose= true , abstol= 1e-1 , reltol= 1e-2 , maxiter= 3 ,
76
+ gmres_restart= 5 )
74
77
for alg in (
75
78
:IterativeSolversJL ,
76
79
:IterativeSolversJL_CG ,
77
- # :IterativeSolversJL_GMRES, # same as default wrapper
78
- # :IterativeSolversJL_BICGSTAB, # fails
80
+ :IterativeSolversJL_GMRES ,
81
+ # :IterativeSolversJL_BICGSTAB, # fails
79
82
:IterativeSolversJL_MINRES ,
80
83
)
81
84
test_interface (alg, kwargs, prob1, prob2, prob3)
0 commit comments