-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathaps_s_curve_coverage.cpp
245 lines (192 loc) · 5.67 KB
/
aps_s_curve_coverage.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
#include <stdio.h>
#include <stdlib.h>
#include <time.h>
#include "aps.h"
double naiveDistance(array_1d<double> &p1, array_1d<double> &p2){
if(p1.get_dim()!=p2.get_dim()){
printf("in naive distance\n");
printf("WARNING p1 d %d p2 d %d\n",p1.get_dim(),p2.get_dim());
exit(1);
}
int i;
double ans=0.0;
for(i=0;i<p1.get_dim();i++){
ans+=power(p1.get_data(i)-p2.get_data(i),2);
}
return sqrt(ans);
}
int main(int iargc, char *argv[]){
//d=8 -> delta_chisq=15.5
//d=5 -> delta_chisq=11
int i,j;
int seed=99;
int dim,ncenters;
int nsamples=10000;
dim=22;
ncenters=3;
if(iargc>1)seed=atoi(argv[1]);
if(iargc>2)ncenters=atoi(argv[2]);
if(iargc>3)dim=atoi(argv[3]);
if(iargc>4){
nsamples=atoi(argv[4]);
}
if(seed<0){
seed=int(time(NULL));
if(seed>10000)seed=seed%10000;
}
char timingname[letters],outname[letters];
//what is the name of the file where APS will store its timing information
sprintf(timingname,"timingFiles/s_curve_d%d_c%d_s%d_timing.sav",dim,ncenters,seed);
//what is the name of the file where APS will output the points it sampled
sprintf(outname,"outputFiles/s_curve_d%d_c%d_s%d_output.sav",dim,ncenters,seed);
printf("seed %d\n",seed);
//declare the covariogram for APS's Gaussian process
matern_covariance cv;
//declare the chisquared function APS will be searching
//ellipses_integrable chisq(dim,ncenters);
s_curve chisq(dim,ncenters);
array_2d<double> troughPoints,borderPoints;
troughPoints.set_name("troughPoints");
borderPoints.set_name("borderPoints");
chisq.get_trough_points(troughPoints);
printf("got trough points\n");
chisq.get_border_points(borderPoints);
printf("got border points\n");
double chi,chimax;
for(i=0;i<troughPoints.get_rows();i++){
chi=chisq(*troughPoints(i));
if(i==0 || chi>chimax)chimax=chi;
}
printf("after troughPoints chimax %e\n",chimax);
for(i=0;i<borderPoints.get_rows();i++){
chi=fabs(33.93-chisq(*borderPoints(i)));
if(i==0 || chi>chimax){
chimax=chi;
}
}
printf("after borderPoints dchimax %e\n",chimax);
printf("trough %d\n",troughPoints.get_rows());
printf("border %d\n",borderPoints.get_rows());
/*
FILE *output;
output=fopen("troughPoints.sav","w");
for(i=0;i<troughPoints.get_rows();i++){
for(j=0;j<troughPoints.get_cols();j++){
fprintf(output,"%e ",chisq.project_to_basis(j,troughPoints(i)[0]));
}
fprintf(output,"\n");
}
fclose(output);
printf("printed trough points\n");
output=fopen("borderPoints.sav","w");
for(i=0;i<borderPoints.get_rows();i++){
for(j=0;j<borderPoints.get_cols();j++){
fprintf(output,"%e ",chisq.project_to_basis(j,borderPoints(i)[0]));
}
fprintf(output,"\n");
}
fclose(output);
output=fopen("borderPointsUnprojected.sav","w");
for(i=0;i<borderPoints.get_cols();i++){
for(j=0;j<borderPoints.get_cols();j++){
fprintf(output,"%e ",borderPoints.get_data(i,j));
}
fprintf(output,"\n");
}
fclose(output);
exit(1);
*/
//declare APS
//the '20' below is the number of nearest neighbors to use when seeding the
//Gaussian process
//
//the '11.0' is the \Delta\chi^2 corresponding to a 95% confidence limit
//on a 5-dimensional parameter space
aps aps_test(dim,20,33.9,seed);
//pass chisq to the aps object
aps_test.assign_chisquared(&chisq);
//pass the covariogram to the aps object
aps_test.assign_covariogram(&cv);
//how often will APS stop and write its output
aps_test.set_write_every(3000);
//set the G parameter from equation (4) in the paper
aps_test.set_grat(1.0);
//set the maximum and minimum values in parameter space
array_1d<double> max,min;
max.set_name("driver_max");
min.set_name("driver_min");
max.set_dim(dim);
min.set_dim(dim);
for(i=0;i<dim;i++){
min.set(i,-200.0);
max.set(i,200.0);
}
aps_test.set_timingname(timingname);
aps_test.set_outname(outname);
//initialize aps with 1000 random samples
printf("time to initialize\n");
chisq.reset_timer();
aps_test.initialize(1000,min,max);
double chival,chivaltest,err;
i=-1;
//search parameter space until the
//chisquared function has been called
//10000 times
while(aps_test.get_called()<nsamples){
aps_test.search();
}
aps_test.write_pts();
array_1d<double> minpt;
//what is the point in parameter space corresponding to the
//minimum chisquared
aps_test.get_minpt(minpt);
printf("chimin %e\n",aps_test.get_chimin());
printf("ct_aps %d ct_simplex %d total %d\n",
aps_test.get_ct_aps(),aps_test.get_ct_simplex(),
aps_test.get_called());
array_2d<double> goodPoints;
goodPoints.set_name("global_goodPoints");
aps_test.get_good_points(goodPoints);
printf("got goodPoints %d\n",goodPoints.get_rows());
array_1d<int> troughFound,borderFound;
troughFound.set_name("global_troughFound");
borderFound.set_name("global_borderFound");
for(i=0;i<troughPoints.get_rows();i++){
troughFound.set(i,0);
}
for(i=0;i<borderPoints.get_rows();i++){
borderFound.set(i,0);
}
int iborder,itrough;
double dd,ddmin;
for(i=0;i<goodPoints.get_rows();i++){
for(j=0;j<troughPoints.get_rows();j++){
dd=naiveDistance(goodPoints(i)[0],troughPoints(j)[0]);
if(j==0 || dd<ddmin){
itrough=j;
ddmin=dd;
}
}
troughFound.set(itrough,1);
for(j=0;j<borderPoints.get_rows();j++){
dd=naiveDistance(goodPoints(i)[0],borderPoints(j)[0]);
if(j==0 || dd<ddmin){
iborder=j;
ddmin=dd;
}
}
borderFound.set(iborder,1);
}
iborder=0;
for(i=0;i<borderFound.get_dim();i++){
if(borderFound.get_data(i)==0)iborder++;
}
itrough=0;
for(i=0;i<troughFound.get_dim();i++){
if(troughFound.get_data(i)==0)itrough++;
}
printf("border did not find %d of %d\n",
iborder,borderPoints.get_rows());
printf("trough did not find %d of %d\n",
itrough,troughPoints.get_rows());
}