remove unnecessary variable

This commit is contained in:
Tiago Gomes 2012-04-26 00:58:06 +01:00
parent 689244a0d8
commit cc09e77707
2 changed files with 1 additions and 4 deletions

View File

@ -1,6 +1,5 @@
#include "CbpSolver.h"
vector<int> CbpSolver::counts;
CbpSolver::CbpSolver (const FactorGraph& fg) : BpSolver (fg)
{

View File

@ -37,9 +37,7 @@ class CbpSolverLink : public SpLink
class CbpSolver : public BpSolver
{
public:
static vector<int> counts;
public:
CbpSolver (const FactorGraph& fg);
~CbpSolver (void);