-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathF8.cpp
More file actions
69 lines (61 loc) · 1.2 KB
/
F8.cpp
File metadata and controls
69 lines (61 loc) · 1.2 KB
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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
#include "F8.h"
#include <stdio.h>
F8::F8():Benchmarks(){
Ovector = NULL;
minX = -100;
maxX = 100;
ID = 8;
s_size = 20;
anotherz = new double[dimension];
}
F8::~F8(){
delete[] Ovector;
delete[] Pvector;
delete[] anotherz;
for (int i = 0; i < 25; ++i)
{
delete[] r25[i];
}
for (int i = 0; i < 50; ++i)
{
delete[] r50[i];
}
for (int i = 0; i < 100; ++i)
{
delete[] r100[i];
}
delete[] r25;
delete[] r50;
delete[] r100;
delete[] s;
delete[] w;
}
double F8::compute(double* x){
int i;
double result=0.0;
if(Ovector == NULL) {
Ovector = readOvector();
Pvector = readPermVector();
r25 = readR(25);
r50 = readR(50);
r100 = readR(100);
s = readS(s_size);
w = readW(s_size);
}
for(i = 0; i < dimension; i++) {
anotherz[i] = x[i] - Ovector[i];
}
// s_size non-separable part with rotation
int c = 0;
for (i = 0; i < s_size; i++)
{
// cout<<"c="<<c<<", i="<<i<<endl;
anotherz1 = rotateVector(i, c);
// cout<<"done rot"<<endl;
result += w[i] * elliptic(anotherz1, s[i]);
delete []anotherz1;
// cout<<result<<endl;
}
update(result);
return(result);
}