[apps] Clean

This commit is contained in:
Émilie Feral
2018-01-17 11:10:27 +01:00
committed by EmilieNumworks
parent 98ec845693
commit 29a2525b56
4 changed files with 8 additions and 9 deletions

View File

@@ -101,6 +101,8 @@ char CartesianFunction::symbol() const {
}
CartesianFunction::Point CartesianFunction::brentAlgorithm(double ax, double bx, Evaluation evaluate, Context * context) const {
/* Bibliography: R. P. Brent, Algorithms for finding zeros and extrema of
* functions without calculating derivatives */
if (ax > bx) {
return brentAlgorithm(bx, ax, evaluate, context);
}