We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
LinearProblem
1 parent e4fcb26 commit a77cac9Copy full SHA for a77cac9
test/linearproblem.jl
@@ -35,8 +35,7 @@ ps = [p => A, q => b]
35
@test prob.ps[p * q] ≈ A * b
36
37
sol = solve(prob)
38
- # https://github.com/SciML/LinearSolve.jl/issues/532
39
- @test_broken SciMLBase.successful_retcode(sol)
+ @test SciMLBase.successful_retcode(sol)
40
@test prob.A * sol.u - prob.b≈zeros(3) atol=1e-10
41
42
A2 = rand(3, 3)
@@ -73,8 +72,7 @@ ps = [p => A, q => b]
73
72
@test prob3.ps[p * q] ≈ A * b
74
75
sol = solve(prob3)
76
77
78
@test prob3.A * sol.u - prob3.b≈zeros(3) atol=1e-10
79
end
80
0 commit comments