Closed mschauer closed 6 years ago
I plan to bring some oder into the zoo of integrators by introducing the following interface. Currently I am thinking of
For ODEs
solve!(method::ODESolver, X::SamplePath, x0, F::Function) solve(method::ODESolver, x0, F::Function)
where for example method=BS3() and for SDEs
method=BS3()
solve!(method, X::SamplePath, x0, W, P) solve!(method, X::SamplePath, x0, W, b, σ) solve(method, x0, W, P) solve(method, x0, W, b, σ) bridge!(method, X::SamplePath, W, P) bridge(method, W, P)
where for example method=Euler() which should cover all cases needed in Bridge.
method=Euler()
This is mostly done! Some bridge proposal methods in guip.jl are still using old code.
I plan to bring some oder into the zoo of integrators by introducing the following interface. Currently I am thinking of
For ODEs
where for example
method=BS3()
and for SDEswhere for example
method=Euler()
which should cover all cases needed in Bridge.