refactor ProbFormula comparation operator

This commit is contained in:
Tiago Gomes 2012-05-15 16:49:34 +01:00
parent 03f9df7dc3
commit 90e139f8f3
2 changed files with 4 additions and 4 deletions

View File

@ -100,8 +100,8 @@ ProbFormula::rename (LogVar oldName, LogVar newName)
bool operator== (const ProbFormula& f1, const ProbFormula& f2)
{
return f1.group_ == f2.group_;
//return functor_ == f.functor_ && logVars_ == f.logVars_ ;
return f1.group_ == f2.group_ &&
f1.logVars_ == f2.logVars_;
}

View File

@ -7,7 +7,7 @@
#include "LiftedUtils.h"
#include "Horus.h"
typedef unsigned PrvGroup;
class ProbFormula
{