Refactor the linear programming class to use a minimal solver interface class and implement the interface for lp_solve. As a result lp_solve is not visible to the outside any more. This interface could be used to use other solvers as well. Rename operator constants to no clash with lp_solve constants.

git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@39829 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
Clemens Zeidler
2010-12-13 18:41:58 +00:00
parent 654520d700
commit 5440f6fee3
15 changed files with 401 additions and 177 deletions
+36 -10
View File
@@ -22,11 +22,41 @@
#include "Summand.h"
#include "Variable.h"
#include "lp_lib.h"
namespace LinearProgramming {
class SolverInterface {
public:
virtual ~SolverInterface() {}
virtual ResultType Solve(VariableList& variables) = 0;
virtual double GetObjectiveValue() = 0;
virtual bool AddVariable() = 0;
virtual bool RemoveVariable(int variable) = 0;
virtual bool SetVariableRange(int variable, double min,
double max) = 0;
virtual bool AddConstraint(int nElements,
double* coefficients, int* variableIndices,
OperatorType op, double rightSide) = 0;
virtual bool RemoveConstraint(int constraint) = 0;
virtual bool SetLeftSide(int constraint, int nElements,
double* coefficients,
int* variableIndices) = 0;
virtual bool SetRightSide(int constraint, double value) = 0;
virtual bool SetOperator(int constraint,
OperatorType op) = 0;
virtual bool SetObjectiveFunction(int nElements,
double* coefficients,
int* variableIndices) = 0;
virtual bool SetOptimization(OptimizationType value) = 0;
virtual bool SaveModel(const char* fileName) = 0;
};
/*!
* Specification of a linear programming problem.
*/
@@ -40,8 +70,7 @@ public:
bool RemoveVariable(Variable* variable,
bool deleteVariable = true);
int32 IndexOf(const Variable* variable) const;
bool SetRange(Variable* variable, double min,
double max);
bool UpdateRange(Variable* variable);
bool AddConstraint(Constraint* constraint);
bool RemoveConstraint(Constraint* constraint,
@@ -97,7 +126,7 @@ public:
void UpdateObjectiveFunction();
ResultType Solve();
void Save(const char* fileName);
bool Save(const char* fileName);
int32 CountColumns() const;
OptimizationType Optimization() const;
@@ -125,12 +154,8 @@ private:
OperatorType op, double rightSide,
double penaltyNeg, double penaltyPos);
ResultType _Presolve();
void _RemovePresolved();
lprec* fLpPresolved;
OptimizationType fOptimization;
lprec* fLP;
SummandList* fObjFunction;
VariableList fVariables;
ConstraintList fConstraints;
@@ -138,6 +163,7 @@ private:
double fObjectiveValue;
double fSolvingTime;
SolverInterface* fSolver;
};
} // namespace LinearProgramming
+3 -1
View File
@@ -14,7 +14,9 @@ namespace LinearProgramming {
* Possible operators for linear constraints.
*/
enum OperatorType {
EQ, LE, GE
kEQ,
kLE,
kGE
};
} // namespace LinearProgramming