lemon/base.cc
author hegyi
Wed, 30 Nov 2005 13:24:23 +0000
changeset 1838 b61682f0ee96
parent 1835 eb6c34c76501
child 1853 dd0b47adc152
permissions -rw-r--r--
MapWin is created and disposed from now instead of being show and hide.
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@1836
    27
  const Invalid INVALID = Invalid();
alpar@1836
    28
alpar@1835
    29
} //namespace lemon