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