lemon/base.cc
changeset 1835 eb6c34c76501
child 1836 1fee7c6b5129
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/lemon/base.cc	Tue Nov 29 08:40:03 2005 +0000
     1.3 @@ -0,0 +1,27 @@
     1.4 +/* -*- C++ -*-
     1.5 + * lemon/base.cc - Part of LEMON, a generic C++ optimization library
     1.6 + *
     1.7 + * Copyright (C) 2005 Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport
     1.8 + * (Egervary Research Group on Combinatorial Optimization, EGRES).
     1.9 + *
    1.10 + * Permission to use, modify and distribute this software is granted
    1.11 + * provided that this copyright notice appears in all copies. For
    1.12 + * precise terms see the accompanying LICENSE file.
    1.13 + *
    1.14 + * This software is provided "AS IS" with no warranty of any kind,
    1.15 + * express or implied, and with no claim as to its suitability for any
    1.16 + * purpose.
    1.17 + *
    1.18 + */
    1.19 +
    1.20 +///\file
    1.21 +///\brief Some basic non inline function and static global data.
    1.22 +
    1.23 +#include<lemon/tolerance.h>
    1.24 +#include<lemon/invalid.h>
    1.25 +namespace lemon {
    1.26 +
    1.27 +  double Tolerance<double>::def_epsilon = 1e-10;
    1.28 +  float Tolerance<float>::def_epsilon = 1e-4;
    1.29 +
    1.30 +} //namespace lemon