Correct in the include of moUBQPSimpleIncrEval.h

git-svn-id: svn://scm.gforge.inria.fr/svnroot/paradiseo@1952 331e1502-861f-0410-8da2-ba01fb791d7f
This commit is contained in:
verel 2010-10-07 13:29:53 +00:00
commit 142b69b4f4

View file

@ -31,7 +31,7 @@ Contact: paradiseo-help@lists.gforge.inria.fr
#define _moUBQPSimpleIncrEval_H
#include <eval/moEval.h>
#include <eval/UbqpEval.h>
#include <eval/ubqpEval.h>
/**
* Incremental evaluation Function for the UBQPSimple problem
@ -77,6 +77,24 @@ public:
}
/*
* to get the matrix Q
*
* @return matrix Q
*/
int** getQ() {
return Q;
}
/*
* to get the number of variable (bit string length)
*
* @return bit string length
*/
int getNbVar() {
return n;
}
private:
// number of variables
int n;