-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathoptMethods.cpp
49 lines (37 loc) · 1.28 KB
/
optMethods.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
//
// Created by Paulius on 2019-05-21.
//
#include "optMethods.h"
#include "randomNum.h"
#include "tempMethods.h"
void genNewNeighbour(double (*)(double &, double &), std::vector<double> &, double &, double &);
// Main
void annealingMeth(double (*funcOpt)(std::vector<double> &), double (*funcRand)(double &, double &),
double (*funcTemp)(double, double), double &temp, unsigned int &itr, std::vector<double> &X,
double &min, double &max, double &tempDecr) {
double aProb;
std::vector<double> Xnew;
Xnew.resize(X.size());
for (unsigned int i = 0; i < itr; i++) {
/* Generate new neighbour */
genNewNeighbour(funcRand, Xnew, min, max);
/* Calculate delta energy */
aProb = pow(M_E, (funcOpt(X) - funcOpt(Xnew)) / temp);
if (aProb > randomNum())
X.swap(Xnew);
temp = funcTemp(temp, tempDecr);
}
std::cout << "X: ";
for (auto &j:X) {
std::cout << j << " ";
}
std::cout << std::endl << "f(x) = " << funcOpt(X) << std::endl;
}
// End Main
// Local functions
void genNewNeighbour(double (*funcRand)(double &, double &), std::vector<double> &X, double &min, double &max) {
for (auto &value: X) {
value = funcRand(min, max);
}
}
// End Local functions