This repository has been archived on 2023-08-20. You can view files and clone it, but cannot push or open issues or pull requests.
yap-6.3/packages/CLPBN/horus/LiftedBpSolver.cpp

31 lines
404 B
C++
Raw Normal View History

2012-05-30 19:23:41 +01:00
#include "LiftedBpSolver.h"
Params
LiftedBpSolver::getPosterioriOf (const Ground&)
{
return Params();
}
Params
LiftedBpSolver::getJointDistributionOf (const Grounds&)
{
return Params();
}
void
LiftedBpSolver::printSolverFlags (void) const
{
stringstream ss;
ss << "lifted bp [" ;
ss << "log_domain=" << Util::toString (Globals::logDomain);
ss << "]" ;
cout << ss.str() << endl;
}