#include <new>
#include <gsl/gsl_min.h>
#include "function_scl.hpp"
Go to the source code of this file.
|
| namespace | gsl |
| | The gsl package creates an interface to the GNU Scientific Library for C++.
|
| |
| namespace | gsl::min |
| | One-dimensional minimisation.
|
| |
|
| int | gsl::min::test_interval (double x_lower, double x_upper, double epsabs, double epsrel) |
| | C++ version of gsl_min_test_interval(). More...
|
| |
| int | gsl::min::find_bracket (function_scl &f, double &x_minimum, double &f_minimum, double &x_lower, double &f_lower, double &x_upper, double &f_upper, size_t eval_max) |
| | C++ version of gsl_min_find_bracket(). More...
|
| |