fc691d7de2
- Update copyrights. - Lot of small things related to the Variable refactoring. git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@38892 a95241bf-73f2-0310-859d-f6bbb57e9c96
135 lines
4.0 KiB
C++
135 lines
4.0 KiB
C++
/*
|
|
* Copyright 2007-2008, Christof Lutteroth, lutteroth@cs.auckland.ac.nz
|
|
* Copyright 2007-2008, James Kim, jkim202@ec.auckland.ac.nz
|
|
* Copyright 2010, Clemens Zeidler, haiku@clemens-zeidler.de
|
|
* Distributed under the terms of the MIT License.
|
|
*/
|
|
#ifndef LINEAR_SPEC_H
|
|
#define LINEAR_SPEC_H
|
|
|
|
#include <math.h>
|
|
|
|
#include <List.h>
|
|
#include <OS.h>
|
|
#include <String.h>
|
|
#include <SupportDefs.h>
|
|
|
|
#include "Constraint.h"
|
|
#include "OperatorType.h"
|
|
#include "OptimizationType.h"
|
|
#include "PenaltyFunction.h"
|
|
#include "ResultType.h"
|
|
#include "Summand.h"
|
|
#include "Variable.h"
|
|
|
|
#include "lp_lib.h"
|
|
|
|
|
|
namespace LinearProgramming {
|
|
|
|
/*!
|
|
* Specification of a linear programming problem.
|
|
*/
|
|
class LinearSpec {
|
|
public:
|
|
LinearSpec();
|
|
virtual ~LinearSpec();
|
|
|
|
Variable* AddVariable();
|
|
bool AddVariable(Variable* variable);
|
|
bool RemoveVariable(Variable* variable,
|
|
bool deleteVariable = true);
|
|
int32 IndexOf(const Variable* variable) const;
|
|
bool SetRange(Variable* variable, double min,
|
|
double max);
|
|
|
|
Constraint* AddConstraint(SummandList* summands,
|
|
OperatorType op, double rightSide);
|
|
Constraint* AddConstraint(double coeff1, Variable* var1,
|
|
OperatorType op, double rightSide);
|
|
Constraint* AddConstraint(double coeff1, Variable* var1,
|
|
double coeff2, Variable* var2,
|
|
OperatorType op, double rightSide);
|
|
Constraint* AddConstraint(double coeff1, Variable* var1,
|
|
double coeff2, Variable* var2,
|
|
double coeff3, Variable* var3,
|
|
OperatorType op, double rightSide);
|
|
Constraint* AddConstraint(double coeff1, Variable* var1,
|
|
double coeff2, Variable* var2,
|
|
double coeff3, Variable* var3,
|
|
double coeff4, Variable* var4,
|
|
OperatorType op, double rightSide);
|
|
|
|
Constraint* AddConstraint(SummandList* summands,
|
|
OperatorType op, double rightSide,
|
|
double penaltyNeg, double penaltyPos);
|
|
Constraint* AddConstraint(double coeff1, Variable* var1,
|
|
OperatorType op, double rightSide,
|
|
double penaltyNeg, double penaltyPos);
|
|
Constraint* AddConstraint(double coeff1, Variable* var1,
|
|
double coeff2, Variable* var2,
|
|
OperatorType op, double rightSide,
|
|
double penaltyNeg, double penaltyPos);
|
|
Constraint* AddConstraint(double coeff1, Variable* var1,
|
|
double coeff2, Variable* var2,
|
|
double coeff3, Variable* var3,
|
|
OperatorType op, double rightSide,
|
|
double penaltyNeg, double penaltyPos);
|
|
Constraint* AddConstraint(double coeff1, Variable* var1,
|
|
double coeff2, Variable* var2,
|
|
double coeff3, Variable* var3,
|
|
double coeff4, Variable* var4,
|
|
OperatorType op, double rightSide,
|
|
double penaltyNeg, double penaltyPos);
|
|
|
|
PenaltyFunction* AddPenaltyFunction(Variable* var, BList* xs,
|
|
BList* gs);
|
|
|
|
SummandList* ObjectiveFunction();
|
|
//! Caller takes ownership of the Summand's and the SummandList.
|
|
SummandList* ReplaceObjectiveFunction(
|
|
SummandList* objFunction);
|
|
void SetObjectiveFunction(SummandList* objFunction);
|
|
void UpdateObjectiveFunction();
|
|
|
|
ResultType Solve();
|
|
void Save(const char* fileName);
|
|
|
|
int32 CountColumns() const;
|
|
OptimizationType Optimization() const;
|
|
void SetOptimization(OptimizationType value);
|
|
|
|
ResultType Result() const;
|
|
double ObjectiveValue() const;
|
|
double SolvingTime() const;
|
|
|
|
operator BString() const;
|
|
void GetString(BString& string) const;
|
|
|
|
const ConstraintList& Constraints() const;
|
|
|
|
private:
|
|
ResultType Presolve();
|
|
void RemovePresolved();
|
|
|
|
lprec* fLpPresolved;
|
|
OptimizationType fOptimization;
|
|
lprec* fLP;
|
|
SummandList* fObjFunction;
|
|
VariableList fVariables;
|
|
ConstraintList fConstraints;
|
|
ResultType fResult;
|
|
double fObjectiveValue;
|
|
double fSolvingTime;
|
|
|
|
public:
|
|
friend class Constraint;
|
|
|
|
};
|
|
|
|
} // namespace LinearProgramming
|
|
|
|
using LinearProgramming::LinearSpec;
|
|
|
|
#endif // LINEAR_SPEC_H
|