8 #ifndef ORB_UNIT_TEST_HPP_ 
    9 #define ORB_UNIT_TEST_HPP_ 
   14 BOOST_AUTO_TEST_SUITE( ORB_test )
 
   18 BOOST_AUTO_TEST_CASE( ORB_test_use)
 
   22     std::srand(create_vcluster().getProcessUnitID());
 
   23     std::default_random_engine eg;
 
   24     std::uniform_real_distribution<float> ud(0.0f, 1.0f);
 
   33     auto vp_it = vp.getIterator();
 
   35     while (vp_it.isNext())
 
   37         auto key = vp_it.get();
 
   39         vp.get<p::x>(
key)[0] = ud(eg);
 
   40         vp.get<p::x>(
key)[1] = ud(eg);
 
   41         vp.get<p::x>(
key)[2] = ud(eg);
 
   54 BOOST_AUTO_TEST_SUITE_END()
 
This class implement the point shape in an N-dimensional space. 
 
This class is a trick to indicate the compiler a specific specialization pattern. ...
 
Implementation of 1-D std::vector like structure.