Skip to content

Releases: PerezHz/TaylorIntegration.jl

v0.16.1

06 Aug 12:41
998c42d
Compare
Choose a tag to compare

TaylorIntegration v0.16.1

Diff since v0.16.0

Merged pull requests:

v0.16.0

02 Aug 19:26
55f2101
Compare
Choose a tag to compare

TaylorIntegration v0.16.0

Diff since v0.15.3

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

22 Jul 21:09
e32cd4d
Compare
Choose a tag to compare

TaylorIntegration v0.15.3

Diff since v0.15.2

In this release we update to TaylorSeries v0.18 and deal with corresponding changes in the internals of @taylorize macro.

Merged pull requests:

v0.15.2

06 Apr 11:38
19382e8
Compare
Choose a tag to compare

TaylorIntegration v0.15.2

Diff since v0.15.1

Merged pull requests:

v0.15.1

28 Mar 03:38
3c68793
Compare
Choose a tag to compare

TaylorIntegration v0.15.1

Diff since v0.15.0

Merged pull requests:

v0.15.0

25 Feb 12:02
d67c780
Compare
Choose a tag to compare

TaylorIntegration v0.15.0

Diff since v0.14.7

Merged pull requests:

v0.14.7

01 Feb 09:28
8c34803
Compare
Choose a tag to compare

TaylorIntegration v0.14.7

Diff since v0.14.6

Merged pull requests:

  • CompatHelper: bump compat for TaylorSeries to 0.16, (keep existing compat) (#180) (@github-actions[bot])

v0.14.6

20 Jan 22:53
4a6d423
Compare
Choose a tag to compare

TaylorIntegration v0.14.6

Diff since v0.14.5

Merged pull requests:

  • CompatHelper: bump compat for RecursiveArrayTools to 3, (keep existing compat) (#177) (@github-actions[bot])

v0.14.5

19 Nov 22:51
a352fd8
Compare
Choose a tag to compare

TaylorIntegration v0.14.5

Diff since v0.14.4

Merged pull requests:

Closed issues:

  • "Query Regarding Multi-precision Usage in TaylorIntegration: Error with BigFloats" (#175)

v0.14.4

13 Nov 18:41
3ced98f
Compare
Choose a tag to compare

TaylorIntegration v0.14.4

Diff since v0.14.3

Merged pull requests: