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