#include <iostream>
#include <cfloat>
#include "ClpModel.hpp"
#include "ClpMatrixBase.hpp"
#include "ClpSolve.hpp"
Go to the source code of this file.
Compounds | |
class | ClpSimplex |
This solves LPs using the simplex method. More... | |
class | ClpSimplexProgress |
For saving extra information to see if looping. More... | |
Data | |
#define | CLP_PROGRESS 5 |
Data | |
#define | CLP_CYCLE 12 |
Functions | |
void | ClpSimplexUnitTest (const std::string &mpsDir, const std::string &netlibDir) |
A function that tests the methods in the ClpSimplex class. |
|
Definition at line 1088 of file ClpSimplex.hpp. |
|
Definition at line 1096 of file ClpSimplex.hpp. |
|
A function that tests the methods in the ClpSimplex 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. It also does some testing of ClpFactorization class |