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 ea5b409 commit fd44500Copy full SHA for fd44500
README.md
@@ -54,7 +54,7 @@ sol1.u
54
1.8385599677530706
55
=#
56
57
-LinearSolve.set_b!(linsolve, b2)
+linsolve.b = b2
58
sol2 = solve!(linsolve)
59
60
sol2.u
@@ -67,7 +67,7 @@ sol2.u
67
68
69
linsolve = init(prob, IterativeSolversJL_GMRES()) # Switch to GMRES
70
71
72
73
@@ -80,7 +80,7 @@ sol2.u
80
81
82
A2 = rand(n, n)
83
-LinearSolve.set_A!(linsolve, A2)
+linsolve.A = A2
84
sol3 = solve!(linsolve)
85
86
sol3.u
0 commit comments