CoinUtils 2.11.10
|
#include <vector>
#include <string>
#include "CoinUtilsConfig.h"
#include "CoinPackedMatrix.hpp"
#include "CoinMessageHandler.hpp"
#include "CoinFileIO.hpp"
Go to the source code of this file.
Classes | |
class | CoinMpsCardReader |
Very simple code for reading MPS data. More... | |
class | CoinSet |
Very simple class for containing data on set. More... | |
class | CoinSosSet |
Very simple class for containing SOS set. More... | |
class | CoinMpsIO |
MPS IO Interface. More... | |
struct | CoinMpsIO::CoinHashLink |
Macros | |
#define | COIN_MAX_FIELD_LENGTH 160 |
#define | MAX_CARD_LENGTH 5 * COIN_MAX_FIELD_LENGTH + 80 |
Typedefs | |
typedef int | COINColumnIndex |
The following lengths are in decreasing order (for 64 bit etc) Large enough to contain element index This is already defined as CoinBigIndex Large enough to contain column index. | |
typedef int | COINRowIndex |
Large enough to contain row index (or basis) | |
Functions | |
void | CoinMpsIOUnitTest (const std::string &mpsDir) |
A function that tests the methods in the CoinMpsIO class. | |
void | CoinConvertDouble (int section, int formatType, double value, char outputValue[24]) |
#define COIN_MAX_FIELD_LENGTH 160 |
Definition at line 35 of file CoinMpsIO.hpp.
#define MAX_CARD_LENGTH 5 * COIN_MAX_FIELD_LENGTH + 80 |
Definition at line 37 of file CoinMpsIO.hpp.
The following lengths are in decreasing order (for 64 bit etc) Large enough to contain element index This is already defined as CoinBigIndex Large enough to contain column index.
Definition at line 27 of file CoinMpsIO.hpp.
typedef int COINRowIndex |
Large enough to contain row index (or basis)
Definition at line 30 of file CoinMpsIO.hpp.
Definition at line 39 of file CoinMpsIO.hpp.
Definition at line 56 of file CoinMpsIO.hpp.
A function that tests the methods in the CoinMpsIO class.
The only reason for it not to be a member method is that this way it doesn't have to be compiled into the library. And that's a gain, because the library should be compiled with optimization on, but this method should be compiled with debugging. Also, if this method is compiled with optimization, the compilation takes 10-15 minutes and the machine pages (has 256M core memory!)...
void CoinConvertDouble | ( | int | section, |
int | formatType, | ||
double | value, | ||
char | outputValue[24] ) |