{
if (
os_) *
os_ <<
"\n[BinTest.cpp] test() ... \n";
pair<double,double> a = make_pair(1.5,2);
pair<double,double> b = make_pair(2.5,3);
pair<double,double> c = make_pair(3,2.0);
int a1 = 1;
int b1 = 2;
int c1 = 3;
vector<pair<pair<double,double>, int> > stuf;
stuf.push_back(make_pair(a,a1));
stuf.push_back(make_pair(b,b1));
stuf.push_back(make_pair(c,c1));
Bin<int> bin(stuf, 4, 4);
vector<boost::shared_ptr<int> > v;
pair<double,double> p(1.6,2);
bin.getBinContents(p, v);
vector<boost::shared_ptr<int> >::iterator it = v.begin();
{
*
os_ <<
"\ntesting Bin::getBinContents ... found: \n";
for(; it != v.end(); ++it)
}
vector<int> truth;
truth.push_back(1);
truth.push_back(2);
truth.push_back(3);
vector<boost::shared_ptr<int> >::iterator v_it = v.begin();
vector<int>::iterator truth_it = truth.begin();
for(; v_it != v.end(); ++v_it, ++truth_it)
unit_assert(**v_it == *truth_it);
Bin<int> smallBins(stuf,0.5,0.5);
vector<boost::shared_ptr<int> > v2;
smallBins.getAdjacentBinContents(pair<double,double>(1,2),v2);
vector<boost::shared_ptr<int> >::iterator it2 = v2.begin();
{
*
os_ <<
"\ntesting Bin::getAdjacentBinContents ... found: \n";
for(; it2 != v2.end(); ++it2)
}
int n = 4;
smallBins.update(n, pair<double,double>(1.5,2));
vector<boost::shared_ptr<int> > v3;
smallBins.getAdjacentBinContents(pair<double,double>(1,2), v3);
vector<boost::shared_ptr<int> >::iterator it3 = v3.begin();
{
*
os_ <<
"\ntesting Bin::update ... found: \n";
for(; it3 != v3.end(); ++it3)
}
smallBins.erase(n, pair<double,double>(1.5,2));
vector<boost::shared_ptr<int> > v4;
smallBins.getAdjacentBinContents(pair<double,double>(1,2), v4);
vector<boost::shared_ptr<int> >::iterator it4 = v4.begin();
}