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