00001
00002
00003 #include <algorithm>
00004 #include <vector>
00005 #include <iostream>
00006 #include <iterator>
00007 #include <cmath>
00008 #include <iomanip>
00009 #include "AtlfastUtils/Close.h"
00010 #include "AtlfastUtils/removeDistant.h"
00011 using namespace std;
00012
00013 namespace Atlfast{
00014 template <class Iter>
00015 void PrintThem(Iter vb, Iter ve){
00016 cout<<setw(8)<<setprecision(3);
00017 cout<<endl;
00018 cout<<" v: ";
00019 std::copy(vb, ve, ostream_iterator<int>(cout," ") );
00020 cout<<endl;
00021 }
00022
00023 class CloseTester{
00024 public:
00025 int go();
00026 };
00027 }
00028
00029
00030
00031
00032
00033
00034
00035
00036
00037