Skip to content

v0.2.0

Latest
Compare
Choose a tag to compare
@github-actions github-actions released this 20 Dec 04:38
· 4 commits to master since this release

Romberg v0.2.0

Diff since v0.1.0

v0.2.0 is a major release that completely replaces the algorithm previously used by Romberg.jl with one based on Richardson.jl. Not only is the runtime significantly reduced with this new algorithm, but accuracy is improved, particularly for data that doesn't satisfy ispow2(length(x) - 1). See PR #4.

The in-place form of romberg! has been removed.

Closed issues:

  • Automatically stop when given tolerance is reached (#1)
  • Reduce allocations in non-in place form (#2)
  • improved implementation (#3)
  • Package registration (#5)

Merged pull requests:

  • new implementation based on Richardson.jl (#4) (@stevengj)