COIN-OR::LEMON - Graph Library

source: lemon-0.x/lemon/lp_base.cc @ 1750:5c76ebbb4818

Last change on this file since 1750:5c76ebbb4818 was 1435:8e85e6bbefdf, checked in by Akos Ladanyi, 19 years ago

trunk/src/* move to trunk/

File size: 1.1 KB
RevLine 
[1247]1/* -*- C++ -*-
[1435]2 * lemon/lp_base.cc - Part of LEMON, a generic C++ optimization library
[1247]3 *
4 * Copyright (C) 2005 Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport
[1359]5 * (Egervary Research Group on Combinatorial Optimization, EGRES).
[1247]6 *
7 * Permission to use, modify and distribute this software is granted
8 * provided that this copyright notice appears in all copies. For
9 * precise terms see the accompanying LICENSE file.
10 *
11 * This software is provided "AS IS" with no warranty of any kind,
12 * express or implied, and with no claim as to its suitability for any
13 * purpose.
14 *
15 */
16
[1246]17///\file
18///\brief The implementation of the LP solver interface.
19
[1305]20#include <lemon/lp_base.h>
[1246]21namespace lemon {
[1256]22 
23  const LpSolverBase::Value
24  LpSolverBase::INF = std::numeric_limits<Value>::infinity();
[1264]25  const LpSolverBase::Value
26  LpSolverBase::NaN = std::numeric_limits<Value>::quiet_NaN();
[1253]27
[1364]28//   const LpSolverBase::Constr::Value
29//   LpSolverBase::Constr::INF = std::numeric_limits<Value>::infinity();
30//   const LpSolverBase::Constr::Value
31//   LpSolverBase::Constr::NaN = std::numeric_limits<Value>::quiet_NaN();
[1272]32 
[1246]33} //namespace lemon
Note: See TracBrowser for help on using the repository browser.