lemon/lp_base.cc
changeset 481 7afc121e0689
child 482 ed54c0d13df0
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/lemon/lp_base.cc	Tue Dec 02 21:40:33 2008 +0100
     1.3 @@ -0,0 +1,35 @@
     1.4 +/* -*- mode: C++; indent-tabs-mode: nil; -*-
     1.5 + *
     1.6 + * This file is a part of LEMON, a generic C++ optimization library.
     1.7 + *
     1.8 + * Copyright (C) 2003-2008
     1.9 + * Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport
    1.10 + * (Egervary Research Group on Combinatorial Optimization, EGRES).
    1.11 + *
    1.12 + * Permission to use, modify and distribute this software is granted
    1.13 + * provided that this copyright notice appears in all copies. For
    1.14 + * precise terms see the accompanying LICENSE file.
    1.15 + *
    1.16 + * This software is provided "AS IS" with no warranty of any kind,
    1.17 + * express or implied, and with no claim as to its suitability for any
    1.18 + * purpose.
    1.19 + *
    1.20 + */
    1.21 +
    1.22 +///\file
    1.23 +///\brief The implementation of the LP solver interface.
    1.24 +
    1.25 +#include <lemon/lp_base.h>
    1.26 +namespace lemon {
    1.27 +
    1.28 +  const LpSolverBase::Value
    1.29 +  LpSolverBase::INF = std::numeric_limits<Value>::infinity();
    1.30 +  const LpSolverBase::Value
    1.31 +  LpSolverBase::NaN = std::numeric_limits<Value>::quiet_NaN();
    1.32 +
    1.33 +//   const LpSolverBase::Constr::Value
    1.34 +//   LpSolverBase::Constr::INF = std::numeric_limits<Value>::infinity();
    1.35 +//   const LpSolverBase::Constr::Value
    1.36 +//   LpSolverBase::Constr::NaN = std::numeric_limits<Value>::quiet_NaN();
    1.37 +
    1.38 +} //namespace lemon