Go to the documentation of this file.00001 #include <megatree/node.h>
00002 #include <megatree/long_id.h>
00003 #include <megatree/cache.h>
00004 #include <vector>
00005 #include <list>
00006 #include <boost/shared_ptr.hpp>
00007 #include <tr1/unordered_map>
00008
00009 const int SIZE=10000000;
00010
00011
00012 using namespace megatree;
00013
00014 int main()
00015 {
00016 printf("sizeof(Node) = %zu\n", sizeof(Node));
00017
00018 std::vector<Node> v;
00019 v.resize(SIZE);
00020
00021
00022
00023
00024
00025
00026
00027
00028
00029 while(true)
00030 {
00031 sleep(1);
00032 }
00033
00034 return 0;
00035 }