lemon/base.cc
author alpar
Tue, 29 Nov 2005 08:40:03 +0000
changeset 1835 eb6c34c76501
child 1836 1fee7c6b5129
permissions -rw-r--r--
- tolerance.h added
- tolerance handler added to preflow (but not yet used!!).
alpar@1835
     1
/* -*- C++ -*-
alpar@1835
     2
 * lemon/base.cc - Part of LEMON, a generic C++ optimization library
alpar@1835
     3
 *
alpar@1835
     4
 * Copyright (C) 2005 Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport
alpar@1835
     5
 * (Egervary Research Group on Combinatorial Optimization, EGRES).
alpar@1835
     6
 *
alpar@1835
     7
 * Permission to use, modify and distribute this software is granted
alpar@1835
     8
 * provided that this copyright notice appears in all copies. For
alpar@1835
     9
 * precise terms see the accompanying LICENSE file.
alpar@1835
    10
 *
alpar@1835
    11
 * This software is provided "AS IS" with no warranty of any kind,
alpar@1835
    12
 * express or implied, and with no claim as to its suitability for any
alpar@1835
    13
 * purpose.
alpar@1835
    14
 *
alpar@1835
    15
 */
alpar@1835
    16
alpar@1835
    17
///\file
alpar@1835
    18
///\brief Some basic non inline function and static global data.
alpar@1835
    19
alpar@1835
    20
#include<lemon/tolerance.h>
alpar@1835
    21
#include<lemon/invalid.h>
alpar@1835
    22
namespace lemon {
alpar@1835
    23
alpar@1835
    24
  double Tolerance<double>::def_epsilon = 1e-10;
alpar@1835
    25
  float Tolerance<float>::def_epsilon = 1e-4;
alpar@1835
    26
alpar@1835
    27
} //namespace lemon