Skip to content

Commit 173c06a

Browse files
committed
remove verbose = true from tests
1 parent b6b4554 commit 173c06a

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

test/basictests.jl

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ prob2 = LinearProblem(A2, b2; u0 = x2)
3838
prob3 = LinearProblem(A3, b3; u0 = x3)
3939
prob4 = LinearProblem(A4, b4; u0 = x4)
4040

41-
cache_kwargs = (; verbose = true, abstol = 1e-8, reltol = 1e-8, maxiter = 30)
41+
cache_kwargs = (;abstol = 1e-8, reltol = 1e-8, maxiter = 30)
4242

4343
function test_interface(alg, prob1, prob2)
4444
A1, b1 = prob1.A, prob1.b
@@ -545,15 +545,15 @@ end
545545
x2 = zero(b1)
546546

547547
@testset "LinearSolveFunction" begin
548-
function sol_func(A, b, u, p, newA, Pl, Pr, solverdata; verbose = true,
548+
function sol_func(A, b, u, p, newA, Pl, Pr, solverdata;
549549
kwargs...)
550550
if verbose == true
551551
println("out-of-place solve")
552552
end
553553
u .= A \ b
554554
end
555555

556-
function sol_func!(A, b, u, p, newA, Pl, Pr, solverdata; verbose = true,
556+
function sol_func!(A, b, u, p, newA, Pl, Pr, solverdata;
557557
kwargs...)
558558
if verbose == true
559559
println("in-place solve")

test/gpu/cuda.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ x2 = zero(b);
1717
prob1 = LinearProblem(A1, b1; u0 = x1)
1818
prob2 = LinearProblem(A2, b2; u0 = x2)
1919

20-
cache_kwargs = (; verbose = true, abstol = 1e-8, reltol = 1e-8, maxiter = 30)
20+
cache_kwargs = (;abstol = 1e-8, reltol = 1e-8, maxiter = 30)
2121

2222
function test_interface(alg, prob1, prob2)
2323
A1 = prob1.A

test/hypretests.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ function test_interface(alg; kw...)
7878

7979
atol = 1e-6
8080
rtol = 1e-6
81-
cache_kwargs = (; verbose = true, abstol = atol, reltol = rtol, maxiters = 50)
81+
cache_kwargs = (;abstol = atol, reltol = rtol, maxiters = 50)
8282
cache_kwargs = merge(cache_kwargs, kw)
8383

8484
# prob1, prob3 with initial guess, prob2, prob4 without

test/zeroinittests.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ Anz = copy(A)
77
C = copy(A)
88
C[begin, end] = 1e-8
99
A.nzval .= 0
10-
cache_kwargs = (; verbose = true, abstol = 1e-8, reltol = 1e-8, maxiter = 30)
10+
cache_kwargs = (;abstol = 1e-8, reltol = 1e-8, maxiter = 30)
1111

1212
function test_nonzero_init(alg = nothing)
1313
linprob = LinearProblem(A, b)

0 commit comments

Comments
 (0)