33 using namespace pwiz::eharmony;
34 using namespace pwiz::util;
41 pair<double,double> a(0,0);
42 pair<double,double> b(1,1);
43 pair<double,double> c(2,2);
45 vector<pair<double,double> > anchors;
56 pair<double,double> a(0,0);
57 pair<double,double> b(1,1);
58 pair<double,double> c(2,4);
60 vector<pair<double,double> > anchors;
71 vector<double> rtVals;
74 rtVals.push_back(1.5);
75 rtVals.push_back(0.5);
84 vector<pair<double,double> > splineAnchors;
85 splineAnchors.push_back(make_pair(0,0));
86 splineAnchors.push_back(make_pair(1,1));
87 splineAnchors.push_back(make_pair(2,1.5));
88 splineAnchors.push_back(make_pair(3,4));
96 if (
os_) *
os_ <<
"testColinearLinearWarp() ... \n\n";
104 vector<double> warpedRtVals;
105 linearWarp(rtVals, warpedRtVals);
115 *
os_ <<
"testing LinearWarpFunction on colinear points... \n";
116 *
os_ <<
"(original value , warped value)\n";
117 vector<double>::iterator rt_it = rtVals.begin();
118 vector<double>::iterator warped_it = warpedRtVals.begin();
119 for(; rt_it != rtVals.end(); ++rt_it, ++warped_it)
132 if (
os_) *
os_ <<
"testNonColinearLinearWarp() ... \n\n";
141 vector<double> warpedRtVals;
142 ncLinearWarp(rtVals,warpedRtVals);
152 *
os_ <<
"testing LinearWarpFunction on non-colinear points... \n";
153 *
os_ <<
"(original value , warped value)\n";
154 vector<double>::iterator rt_it = rtVals.begin();
155 vector<double>::iterator warped_it = warpedRtVals.begin();
156 for(; rt_it != rtVals.end(); ++rt_it, ++warped_it)
169 if (
os_) *
os_ <<
"testPiecewiseLinearWarp() ... \n\n";
175 vector<double> warpedRtVals;
176 piecewiseLinearWarp(rtVals, warpedRtVals);
185 *
os_ <<
"testing PiecewiseLinearWarpFunction ... \n";
186 *
os_ <<
"(original value , warped value)\n";
187 vector<double>::iterator rt_it = rtVals.begin();
188 vector<double>::iterator warped_it = warpedRtVals.begin();
189 for(; rt_it != rtVals.end(); ++rt_it, ++warped_it)
207 vector<double> warpedRtVals;
208 swf(rtVals, warpedRtVals);
215 const double error = .001;
225 int main(
int argc,
char* argv[])
229 if (argc>1 && !strcmp(argv[1],
"-v"))
os_ = &cout;
230 if (
os_) *
os_ <<
"WarpFunctionTest:\n\n";