|
Last change
on this file since 1256:3bb4ed285c39 was
1256:3bb4ed285c39,
checked in by Alpar Juttner, 21 years ago
|
- src/lemon/utility.h: dummy<> template added
- LpSolverBase::INF is now really defined
- AddColSet?() to add several column at once
- using enable_if
- with some doxygen hack
- More doc improvements
- Better Makefile
|
|
File size:
808 bytes
|
| Line | |
|---|
| 1 | /* -*- C++ -*- |
|---|
| 2 | * src/lib/lp_base.cc - Part of LEMON, a generic C++ optimization library |
|---|
| 3 | * |
|---|
| 4 | * Copyright (C) 2005 Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport |
|---|
| 5 | * (Egervary Combinatorial Optimization Research Group, EGRES). |
|---|
| 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 | |
|---|
| 17 | ///\file |
|---|
| 18 | ///\brief The implementation of the LP solver interface. |
|---|
| 19 | |
|---|
| 20 | #include "lp_base.h" |
|---|
| 21 | namespace lemon { |
|---|
| 22 | |
|---|
| 23 | const LpSolverBase::Value |
|---|
| 24 | LpSolverBase::INF = std::numeric_limits<Value>::infinity(); |
|---|
| 25 | |
|---|
| 26 | |
|---|
| 27 | } //namespace lemon |
|---|
Note: See
TracBrowser
for help on using the repository browser.