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.
1 parent 2772d76 commit c57ee8eCopy full SHA for c57ee8e
test/IterativeSolvers.jld
30.5 KB
test/lsqr.jl
@@ -2,6 +2,7 @@ using IterativeSolvers
2
using FactCheck
3
using Base.Test
4
using LinearMaps
5
+using JLD
6
7
facts("lsqr") do
8
@@ -85,6 +86,12 @@ context("Issue 64") do
85
86
@fact resnorm --> less_than(√eps())
87
@fact ch.isconverged --> true
88
@fact last(ch[:resnorm]) --> roughly(resnorm, atol=√eps())
89
+
90
+ # Issue 117
91
+ fname = "IterativeSolvers.jld"
92
+ C = load(fname, "A")
93
+ b = load(fname, "b")
94
+ @fact isnan(sum(lsqr( C, b ))) --> false
95
end
96
97
0 commit comments