OptimSA.h File Reference
Detailed Description
Function to solve an optimization problem using the Simulated Annealing method.
#include <iostream>
#include <iomanip>
#include <stdlib.h>
#include <math.h>
#include <time.h>
#include "Vect.h"
Go to the source code of this file.
Namespaces | |
| namespace | OFELI |
Functions | |
| template<class OPT_> | |
| int | OptimSA (OPT_ &theOpt, Vect< double > &x, double &rt, double &eps, int &ns, int &nt, int &neps, int &maxevl, Vect< double > &lb, Vect< double > &ub, Vect< double > &c, int &msg_lvl, int &seed1, int &seed2, double &t, Vect< double > &vm, Vect< double > &xopt, double &fopt, int &nacc, int &nfcnev, int &nobds) |
| Simulated annealing optimization solver. | |