1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000
1.2 +++ b/src/lemon/lp_base.cc Tue Apr 05 09:08:23 2005 +0000
1.3 @@ -0,0 +1,33 @@
1.4 +/* -*- C++ -*-
1.5 + * src/lib/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 Combinatorial Optimization Research Group, 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