-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathR1ES_omp_alt.cpp
272 lines (239 loc) · 6.69 KB
/
R1ES_omp_alt.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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
#include <bits/stdc++.h>
#include <iostream>
#include <random>
#include <omp.h>
using namespace std;
#define N 200
#define max_iter 100000
double func(vector<double> &x){
double res=0;
///fEll(x)////
for(int n = 0; n < N; n++)
{
res+=(pow(10,6.0*(n/float(N)))*x[n]*x[n]);
}
////
// ////fCig(x)/////
// res+=x[0]*x[0];
// for(int n = 0; n < N-1; n++)
// {
// res+=1000000*(x[n+1]*x[n+1]);
// }
// /////
// /////fCtb(x)////
// res+=x[0]*x[0];
// for(int n = 0; n < N-2; n++)
// {
// res+=10000*(x[n+1]*x[n+1]);
// }
// res+=1000000*x[N-1]*x[N-1];
// /////
// /////fTab(x)////
// res+=1000000*x[0]*x[0];
// for(int n = 0; n < N-1; n++)
// {
// res+=(x[n+1]*x[n+1]);
// }
// /////
// /////fSch(x)////
// for(int n = 0; n < N; n++)
// {
// double temp=0;
// for(int j=0;j<n;j++)
// temp+=x[n]*x[n];
// res+=temp*temp;
// }
// ////
/////fRos(x)////
// for(int n = 0; n < N-1; n++)
// {
// res+=(100*(x[n+1]-x[n]*x[n])*(x[n+1]-x[n]*x[n])+(x[n]-1)*(x[n]-1));
// }
////
return res;
}
int partition(vector<vector<double>> &a,int l,int u)
{
int i = (l - 1);
double fpivot = func(a[u]);
for (int j = l; j <= u-1; j++)
{
if (func(a[j]) <= fpivot)
{
i++;
a[i].swap(a[j]);
}
}
a[i + 1].swap(a[u]);
return (i + 1);
}
void quick_sort(vector<vector<double>> &a,int l,int u)
{
int j;
if(l<u)
{
j=partition(a,l,u);
#pragma omp parallel sections
{
#pragma omp section
{
quick_sort(a,l,j-1);
}
#pragma omp section
{
quick_sort(a,j+1,u);
}
}
}
}
void find_rank(vector<vector<double>> &F,vector<vector<double>> &R,int &t,int &mu){
set<double> Funion;
//#pragma omp parallel for
for(int i=0;i<mu;i++){
Funion.insert(F[t&1][i]);
Funion.insert(F[(t+1)&1][i]);
}
#pragma omp parallel for
for(int i = 0;i<mu;i++){
for(auto it = Funion.begin();it!=Funion.end();it++){
if(F[t&1][i] == *it){
R[t&1][i] =distance(Funion.begin(),it);// cout<<R[t&1][i]<<" ";
break;
}
}
//cout<<endl;
for(auto it = Funion.begin();it!=Funion.end();it++){
if(F[(t+1)&1][i] == *it){
R[(t+1)&1][i] =distance(Funion.begin(),it);//cout<<R[(t+1)&1][i]<<" ";
break;
}
}
//cout<<endl;
}
}
vector<double> R1ES(){
double sigma;
vector<vector<double>> m(2,vector<double>(N,0));
vector<vector<double>> p(2,vector<double>(N,0));
vector<double> xbest(N,0);
double s;
sigma=20/3.0;
srand (time(NULL));
#pragma omp parallel for
for(int n=0;n<N;n++)
{
double fn = ((float)rand())/RAND_MAX;
float fr = 2*(fn-0.5);
m[0][n]= 10*fr;
xbest[n]=m[0][n];
//cout<<xbest[n]<<" ";
}
//cout<<endl;
int lambda = 4 + floor(3*log(N));//cout<<log(N)<<endl;
int mu = floor(lambda/2.0);
vector<double> w(mu,0);
double mueffdem = 0;
#pragma omp parallel for shared(mu)
for (int i = 1; i <= mu; i++){
double wnum = log(mu+1) - log(i);
double wdem = mu*log(mu+1);
#pragma omp parallel for shared(mu) reduction (-:wdem)
for(int j = 1; j <= mu; j++){
wdem -= log(j);
}
w[i-1] = wnum/wdem;
mueffdem = mueffdem + w[i-1]*w[i-1];
}
double mueff = 1.0/mueffdem;
double ccov = 1.0/(3*sqrt(N) + 5);
double cc = 2.0/(N+7);
double qstar = 0.3;
double q = 0;
double dsigma = 1000;
double cs = 0.3;
vector<vector<double>> x (lambda,vector<double>(N,0));
vector<vector<double>> R (2,vector<double>(mu,0));
vector<vector<double>> F (2,vector<double>(mu,0));
double fm = func(m[0]);
#pragma omp parallel for shared(fm,mu)
for(int i = 0;i<mu;i++){
F[0][i] = fm;
}
int t=0;
double fbest = func(xbest);
srand(time(NULL));
while(t<max_iter&&fbest>0.001){
#pragma omp parallel for shared(lambda,fbest,sigma,ccov)
for(int i = 0; i<lambda; i++){
vector<double> z(N);
std::random_device rd{};
std::mt19937 gen{rd()};
default_random_engine generator;
normal_distribution<double> distribution(0,1.0);
double r = distribution(gen);//cout<<"r:"<<r<<endl;
#pragma omp prallel for shared(x,m,sigma,ccov,p,r,z)
for(int n=0; n <N;n++){
//z[n] = distribution(generator);
z[n]=distribution(gen);//cout<<z[n];
x[i][n] = m[t&1][n] + sigma*(sqrt(1-ccov)*z[n] + sqrt(ccov)*r*p[t&1][n]);
//cout<<x[i][n]<<" ";
}
//cout<<endl;
#pragma omp critical
if(func(x[i]) < fbest){
//cout<<"Xopt:";
#pragma omp parallel for
for(int n=0; n<N;n++){
xbest[n] = x[i][n];
//cout<<xbest[n]<<" ";
}
//cout<<endl;
fbest = func(xbest);
}
}
//cout<<"Iteration "<<t;//<<": x =(";
//for(int n=0;n<N;n++)
// cout<<xbest[n]<<" ";
//cout<<")"<<endl;
//cout<<"fval:"<<fbest<<endl;
if(t%1000==0)
cout<<t<<","<<fbest<<endl;
quick_sort(x,0,lambda-1);
#pragma omp parallel for shared(mu,t)
for(int i = 0;i<mu;i++){
F[(t+1)&1][i] = func(x[i]);
}
#pragma omp parallel for shared(mu,sigma,cc,m,p,mueff)
for(int n=0;n<N;n++){
double mnew=0;
#pragma omp parallel for shared(mu,w,n) reduction(+:mnew)
for(int i=0;i<mu;i++){
mnew += w[i]*x[i][n];
}
m[(t+1)&1][n] = mnew;
p[(t+1)&1][n] = (1-cc)*p[t&1][n] + sqrt(cc*(2-cc)*mueff)*(m[(t+1)&1][n] - m[t&1][n])/sigma;
}
find_rank(p,R,t,mu);
q=0;
#pragma omp parallel for shared(mu,R,w) reduction(+:q)
for(int i=0;i<mu;i++){
q += w[i]*(R[t&1][i]-R[(t+1)&1][i]);
}
q /= mu;
s = (1-cs)*s +cs*(q-qstar);//cout<<s[t+1]<<endl;
sigma = sigma*exp(s/dsigma);//cout<<sigma[t+1]<<endl;
t++;
}
return xbest;
}
int main()
{
omp_set_num_threads(16);
vector<double> v = R1ES();
//cout<<"Xopt = (";
//for(int n=0;n<N;n++)
// cout<<v[n]<<", ";
//cout<<")"<<endl;
cout<<"Function Value: "<<func(v)<<endl;
return 0;
}