-
-
Notifications
You must be signed in to change notification settings - Fork 54
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
The LinearSolve.jl interface #3
Comments
Do we need |
We can leave that for us to figure out. @EdelmanJonathan won't handle that part. |
|
yes, good point. |
should |
Yes |
what's |
Those are the weights supposed to be used in the scaled preconditioners. |
LinearProblem(A,b,p=SciMLBase.NullParameters();u0=nothing,kwargs...)
where kwargs forward to solveShiftedLinearProblem(A,b,gamma,p=SciMLBase.NullParameters();u0=nothing,kwargs...) = LinearProblem(WOperator,...)
solve(prob,alg;reltol, abstol, weights, prec)
cache = init(prob,alg; kwargs...)
wheresolve = init -> solve!(cache)
set_A!(cache,A)
set_b!(cache,b)
set_p!(cache,p)
set_prec(cache,prec)
A
,cacheval
,isfresh
,pr
, andpl
A
there.@set cache.prec = f(Val{:init}, cache)
for initializationf(cache) -> (pl,pr)
user-defined.Linear.pdf
The text was updated successfully, but these errors were encountered: