lemon/base.cc
changeset 1222 c40a9d94442d
parent 554 e6ae4999cf22
child 1270 dceba191c00d
equal deleted inserted replaced
7:9d94ad8505af 9:bc2944179dc7
    19 ///\file
    19 ///\file
    20 ///\brief Some basic non-inline functions and static global data.
    20 ///\brief Some basic non-inline functions and static global data.
    21 
    21 
    22 #include<lemon/tolerance.h>
    22 #include<lemon/tolerance.h>
    23 #include<lemon/core.h>
    23 #include<lemon/core.h>
       
    24 #include<lemon/time_measure.h>
    24 namespace lemon {
    25 namespace lemon {
    25 
    26 
    26   float Tolerance<float>::def_epsilon = static_cast<float>(1e-4);
    27   float Tolerance<float>::def_epsilon = static_cast<float>(1e-4);
    27   double Tolerance<double>::def_epsilon = 1e-10;
    28   double Tolerance<double>::def_epsilon = 1e-10;
    28   long double Tolerance<long double>::def_epsilon = 1e-14;
    29   long double Tolerance<long double>::def_epsilon = 1e-14;
    29 
    30 
    30 #ifndef LEMON_ONLY_TEMPLATES
    31 #ifndef LEMON_ONLY_TEMPLATES
    31   const Invalid INVALID = Invalid();
    32   const Invalid INVALID = Invalid();
    32 #endif
    33 #endif
    33 
    34 
       
    35   TimeStamp::Format TimeStamp::_format = TimeStamp::NORMAL;
       
    36 
    34 } //namespace lemon
    37 } //namespace lemon