Module argmin::solver::brent[][src]

Expand description

Brent’s method

A root-finding algorithm combining the bisection method, the secant method and inverse quadratic interpolation. It has the reliability of bisection but it can be as quick as some of the less-reliable methods.

References:

https://en.wikipedia.org/wiki/Brent%27s_method

Structs

Brent

Brent’s method

Enums

BrentError

Error to be thrown if Brent is initialized with improper parameters.