forgot destructor

This commit is contained in:
Tiago Gomes 2012-06-13 12:17:49 +01:00
parent 89725dffbb
commit b43e3316b3
2 changed files with 9 additions and 0 deletions

View File

@ -13,6 +13,13 @@ LiftedBp::LiftedBp (const ParfactorList& pfList)
LiftedBp::~LiftedBp (void)
{
delete solver_;
}
Params
LiftedBp::solveQuery (const Grounds& query)
{

View File

@ -11,6 +11,8 @@ class LiftedBp
public:
LiftedBp (const ParfactorList& pfList);
~LiftedBp (void);
Params solveQuery (const Grounds&);
void printSolverFlags (void) const;