Releases: PerezHz/TaylorIntegration.jl
Releases · PerezHz/TaylorIntegration.jl
v0.16.1
TaylorIntegration v0.16.1
Merged pull requests:
- Update jetcoeffs.jl (#197) (@miguelraz)
- Hot fix in
init_psol
andset_psol!
(#198) (@PerezHz)
v0.16.0
TaylorIntegration v0.16.0
Breaking changes
TaylorIntegration v0.16.0 introduces TaylorSolution
, a return type for taylorinteg
and related methods. Now calls to taylorinteg
and lyap_taylorinteg
will return an instance of type TaylorSolution
instead of returning a tuple. Backwards-compatibility can be obtained by destructuring a TaylorSolution
e.g.
sol = taylorinteg(...) # `sol` isa `TaylorSolution`
tv, xv = sol.t, sol.x # no dense output
tv, xv, psol = sol.t, sol.x, sol.p # with dense output
tv, xv, tvS, xvS, gvS = sol.t, sol.x, sol.tevents, sol.xevents, sol.gresids # root-finding
Additionally, TaylorIntegration v0.16.0 reworks some of the internals to provide better type-stability while maintaining performance.
Merged pull requests:
v0.15.3
TaylorIntegration v0.15.3
In this release we update to TaylorSeries v0.18 and deal with corresponding changes in the internals of @taylorize macro.
Merged pull requests:
- Bump julia-actions/setup-julia from 1 to 2 (#191) (@dependabot[bot])
- Updates due to JuliaDiff/TaylorSeries.jl#361 (#194) (@PerezHz)
v0.15.2
TaylorIntegration v0.15.2
Merged pull requests:
- Bump actions/checkout from 2 to 4 (#184) (@dependabot[bot])
- Bump actions/cache from 1 to 4 (#185) (@dependabot[bot])
- Skip concurrent CI builds (#187) (@PerezHz)
- Aqua: do not test ambiguities in Base and Core (#189) (@PerezHz)
v0.15.1
TaylorIntegration v0.15.1
Merged pull requests:
v0.15.0
v0.14.7
TaylorIntegration v0.14.7
Merged pull requests:
- CompatHelper: bump compat for TaylorSeries to 0.16, (keep existing compat) (#180) (@github-actions[bot])
v0.14.6
TaylorIntegration v0.14.6
Merged pull requests:
- CompatHelper: bump compat for RecursiveArrayTools to 3, (keep existing compat) (#177) (@github-actions[bot])
v0.14.5
TaylorIntegration v0.14.5
Merged pull requests:
Closed issues:
- "Query Regarding Multi-precision Usage in TaylorIntegration: Error with BigFloats" (#175)