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