Skip to content

Releases: JuliaMath/Roots.jl

Update Roots

17 Aug 15:18
ab22cd6
Compare
Choose a tag to compare
  • undoes parameter change that effected FalsePosition usage more than anticipated
  • moves logic from Order0 method to a find_zero variant so other methods can use it.

Update Roots

09 Aug 18:46
28a6bd0
Compare
Choose a tag to compare

Breaking changes: removed ForwardDiff dependency, adjusted tolerance used to check f(x) ~ 0. Added new Bracketing methods, updated A42, Order0 methods.

update Roots

06 May 21:21
bac921f
Compare
Choose a tag to compare

This update addresses a few things:

  • it allows the use of Unitful values. The x values are now expected to be of type Number and not the more restrictive Real. This allows complex values to be used without special casing (as was done with Newton), though makes bisection methods throw a different error than a method not found one.
  • it updates documentation to highlight the find_zero interface and not the MATLAB inspired fzero one
  • it removes support for passing in a bracket to the algorithm to ensure an algorithm doesn't escape. For such algorithms, the FalsePosition method offers several variants.
  • it streamlines, a bit, the setting up of a problem to pass off to find_zero.
  • it modifies the tolerance used to assess f(x_n) \approx 0
  • it changes the names of the tolerances to mirror that of isapprox. The older names should still work.

update Roots

13 Jan 16:14
2bff0e5
Compare
Choose a tag to compare
  • fixes to a42 to make much more efficient
  • drop v0.5 support

udpate Roots

04 Jan 11:34
ec3880e
Compare
Choose a tag to compare

Make Roots.a42 more efficient

Update Roots

22 Dec 20:31
Compare
Choose a tag to compare
v0.4.2

Add color syntaxing in README (#92)

update Roots

18 Aug 16:42
Compare
Choose a tag to compare

This fixes some warnings and bugs and adds in false position methods.

update Roots

22 Jun 12:46
Compare
Choose a tag to compare

This change does a few big things: it makes the package much smaller by moving the polynomial-specific code to a different package and drops support for v0.4 in the process.

v0.3.1

12 May 04:04
Compare
Choose a tag to compare
Add Travis & Appveyer tests for v0.6 (#70)

v0.3.0

16 Jan 15:22
Compare
Choose a tag to compare
remove loading of unneeded Primes package