Skip to content

Commit 600fd4c

Browse files
Update README.md
1 parent c8004f4 commit 600fd4c

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

README.md

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,10 @@ supply the common interface and allow for interexchange of mathematical problems
1818
The breaking changes in v2.0 are:
1919

2020
* `IntegralProblem` has moved to an interface with `IntegralFunction` and `BatchedIntegralFunction` which requires specifying `prototype`s for the values to be modified
21-
instead of `nout` and `batch`.
21+
instead of `nout` and `batch`. https://github.com/SciML/SciMLBase.jl/pull/497
2222
* `ODEProblem` was made temporarily into a `mutable struct` to allow for EnzymeRules support. Using the mutation throws a warning that this is only experimental and should not be relied on.
23+
https://github.com/SciML/SciMLBase.jl/pull/501
2324
* `BVProblem` now has a new interface for `TwoPointBVProblem` which splits the bc terms for the two sides, forcing a true two-point BVProblem to allow for further specializations and to allow
24-
for wrapping Fortran solvers in the interface.
25+
for wrapping Fortran solvers in the interface. https://github.com/SciML/SciMLBase.jl/pull/477
26+
* `SDEProblem` constructor was changed to remove an anti-pattern which required passing the diffusion function `g` twice, i.e. `SDEProblem(SDEFunction(f,g),g, ...)`.
27+
Now this is simply `SDEProblem(SDEFunction(f,g),...)`. https://github.com/SciML/SciMLBase.jl/pull/489

0 commit comments

Comments
 (0)