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.h
2012-05-30 19:23:41 +01:00

23 lines
407 B
C++

#ifndef HORUS_LIFTEDBPSOLVER_H
#define HORUS_LIFTEDBPSOLVER_H
#include "ParfactorList.h"
class LiftedBpSolver
{
public:
LiftedBpSolver (const ParfactorList& pfList) : pfList_(pfList) { }
Params getPosterioriOf (const Ground&);
Params getJointDistributionOf (const Grounds&);
void printSolverFlags (void) const;
private:
ParfactorList pfList_;
};
#endif // HORUS_LIFTEDBPSOLVER_H