How to minimize C++ function using boost?

8.2k Views Asked by At

so I have a function like

int f(int i, int j, int c, double d) {
    /*...any operations with i, j, c, d affect on some return int we have*/
}

Is there any thing in boost or STD that would take my function and find the input arguments that minimize my function output?

3

There are 3 best solutions below

0
On BEST ANSWER

I understand you to be looking for code to perform mathematical optimization.

Boost does not have anything to do this as far as I know, and neither does the standard library; however, NLopt may be what you're looking for.

1
On

I assume you're trying to do a "simple" mathematical multi-dimensional minimization.

GSL has some functions to help you with this. I wouldn't look any further ;)

1
On

You can use Brent's algorithm to minimise simple functions.

http://www.boost.org/doc/libs/1_65_0/libs/math/doc/html/math_toolkit/roots/brent_minima.html