Query functions have been implemented for GLPK (CPLEX breaks at the moment, I guess): These functions include:
retrieving one element of the coeff. matrix
retrieving one element of the obj function
lower bd for a variable
upper bound for a variable
lower and upper bounds for a row (these can not be handled separately at the moment)
direction of the optimization (is_max() function)
3 * This file is a part of LEMON, a generic C++ optimization library
5 * Copyright (C) 2003-2006
6 * Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport
7 * (Egervary Research Group on Combinatorial Optimization, EGRES).
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.
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
19 #ifndef LEMON_BITS_INVALID_H
20 #define LEMON_BITS_INVALID_H
23 ///\brief Definition of INVALID.
27 /// \brief Dummy type to make it easier to make invalid iterators.
29 /// See \ref INVALID for the usage.
32 bool operator==(Invalid) { return true; }
33 bool operator!=(Invalid) { return false; }
34 bool operator< (Invalid) { return false; }
37 /// Invalid iterators.
39 /// \ref Invalid is a global type that converts to each iterator
40 /// in such a way that the value of the target iterator will be invalid.
42 //Some people didn't like this:
43 //const Invalid &INVALID = *(Invalid *)0;
45 #ifdef LEMON_ONLY_TEMPLATES
46 const Invalid INVALID = Invalid();
48 extern const Invalid INVALID;