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 d9ec112 commit 127970dCopy full SHA for 127970d
src/default.jl
@@ -71,7 +71,7 @@ end
71
72
function defaultalg(A::SciMLBase.AbstractDiffEqOperator, b,
73
assumptions::OperatorAssumptions{false})
74
- m,n = size(A)
+ m, n = size(A)
75
if m < n
76
KrylovJL_CRAIGMR()
77
else
test/nonsquare.jl
@@ -22,5 +22,5 @@ res = A \ b
22
A = sprand(n, m, 0.5)
23
b = rand(n)
24
prob = LinearProblem(A, b)
25
-res = A \ b
+res = Matrix(A) \ b
26
@test solve(prob, KrylovJL_CRAIGMR()) ≈ res
0 commit comments