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

30 lines
746 B
C
Raw Normal View History

2013-02-06 22:58:42 +00:00
#ifndef PACKAGES_CLPBN_HORUS_LIFTEDOPERATIONS_H
#define PACKAGES_CLPBN_HORUS_LIFTEDOPERATIONS_H
#include "ParfactorList.h"
class LiftedOperations
{
public:
static void shatterAgainstQuery (
ParfactorList& pfList, const Grounds& query);
2012-12-17 18:39:42 +00:00
2012-11-10 00:18:20 +00:00
static void runWeakBayesBall (
2012-12-20 23:19:10 +00:00
ParfactorList& pfList, const Grounds&);
2012-12-17 18:39:42 +00:00
static void absorveEvidence (
ParfactorList& pfList, ObservedFormulas& obsFormulas);
2012-12-17 18:39:42 +00:00
static Parfactors countNormalize (Parfactor*, const LogVarSet&);
static Parfactor calcGroundMultiplication (Parfactor pf);
private:
2012-12-17 18:39:42 +00:00
static Parfactors absorve (ObservedFormula&, Parfactor*);
2012-12-27 22:25:45 +00:00
DISALLOW_COPY_AND_ASSIGN (LiftedOperations);
};
2013-02-06 22:58:42 +00:00
#endif // PACKAGES_CLPBN_HORUS_LIFTEDOPERATIONS_H
2012-12-17 18:39:42 +00:00