Remove unused variable and add copy constructor.

This commit is contained in:
czeidler
2012-09-01 16:31:14 +12:00
parent cf5eb5dda1
commit 18e5da6297
2 changed files with 23 additions and 21 deletions
+1 -1
View File
@@ -19,6 +19,7 @@ class Variable;
*/
class Summand {
public:
Summand(Summand* summand);
Summand(double coeff, Variable* var);
~Summand();
@@ -31,7 +32,6 @@ public:
private:
double fCoeff;
Variable* fVar;
bool fUsedInPenaltyFunction; //not set yet
};
typedef BObjectList<Summand> SummandList;