alpar@209: /* -*- mode: C++; indent-tabs-mode: nil; -*-
alpar@7:  *
alpar@209:  * This file is a part of LEMON, a generic C++ optimization library.
alpar@7:  *
alpar@440:  * Copyright (C) 2003-2009
alpar@7:  * Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport
alpar@7:  * (Egervary Research Group on Combinatorial Optimization, EGRES).
alpar@7:  *
alpar@7:  * Permission to use, modify and distribute this software is granted
alpar@7:  * provided that this copyright notice appears in all copies. For
alpar@7:  * precise terms see the accompanying LICENSE file.
alpar@7:  *
alpar@7:  * This software is provided "AS IS" with no warranty of any kind,
alpar@7:  * express or implied, and with no claim as to its suitability for any
alpar@7:  * purpose.
alpar@7:  *
alpar@7:  */
alpar@7: 
alpar@7: ///\file
kpeter@49: ///\brief Some basic non-inline functions and static global data.
alpar@7: 
alpar@7: #include<lemon/tolerance.h>
deba@220: #include<lemon/core.h>
alpar@7: namespace lemon {
alpar@7: 
alpar@507:   float Tolerance<float>::def_epsilon = static_cast<float>(1e-4);
alpar@7:   double Tolerance<double>::def_epsilon = 1e-10;
alpar@7:   long double Tolerance<long double>::def_epsilon = 1e-14;
alpar@7: 
alpar@7: #ifndef LEMON_ONLY_TEMPLATES
alpar@7:   const Invalid INVALID = Invalid();
alpar@7: #endif
alpar@7: 
alpar@7: } //namespace lemon