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/LiftedOperations.h

27 lines
619 B
C
Raw Normal View History

2013-02-07 17:50:02 +00:00
#ifndef YAP_PACKAGES_CLPBN_HORUS_LIFTEDOPERATIONS_H_
#define YAP_PACKAGES_CLPBN_HORUS_LIFTEDOPERATIONS_H_
#include "ParfactorList.h"
2013-02-07 23:53:13 +00:00
namespace Horus {
2013-02-07 23:53:13 +00:00
namespace LiftedOperations {
2012-12-17 18:39:42 +00:00
void shatterAgainstQuery (ParfactorList& pfList, const Grounds& query);
2012-12-17 18:39:42 +00:00
void runWeakBayesBall (ParfactorList& pfList, const Grounds& query);
2012-12-17 18:39:42 +00:00
void absorveEvidence (ParfactorList& pfList, ObservedFormulas&);
Parfactors countNormalize (Parfactor*, const LogVarSet&);
Parfactor calcGroundMultiplication (Parfactor pf);
2012-12-27 22:25:45 +00:00
} // namespace LiftedOperations
} // namespace Horus
2013-02-07 23:53:13 +00:00
2013-02-08 00:20:01 +00:00
#endif // YAP_PACKAGES_CLPBN_HORUS_LIFTEDOPERATIONS_H_
2012-12-17 18:39:42 +00:00