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

73 lines
1.6 KiB
C
Raw Normal View History

2013-02-07 17:50:02 +00:00
#ifndef YAP_PACKAGES_CLPBN_HORUS_BAYESBALL_H_
#define YAP_PACKAGES_CLPBN_HORUS_BAYESBALL_H_
2012-05-23 14:56:01 +01:00
#include <vector>
#include <queue>
#include <list>
#include "FactorGraph.h"
2012-06-19 14:32:12 +01:00
#include "BayesBallGraph.h"
2012-05-23 14:56:01 +01:00
#include "Horus.h"
2013-02-16 16:17:14 +00:00
namespace Horus {
2012-05-23 14:56:01 +01:00
class BayesBall {
2012-05-23 14:56:01 +01:00
public:
BayesBall (FactorGraph& fg);
2012-06-19 15:30:55 +01:00
FactorGraph* getMinimalFactorGraph (const VarIds&);
static FactorGraph* getMinimalFactorGraph (FactorGraph& fg, VarIds vids);
2012-05-23 14:56:01 +01:00
private:
2013-02-20 14:13:37 +00:00
struct ScheduleInfo {
ScheduleInfo (BBNode* n, bool vfp, bool vfc)
: node(n), visitedFromParent(vfp), visitedFromChild(vfc) { }
BBNode* node;
bool visitedFromParent;
bool visitedFromChild;
};
typedef std::queue<ScheduleInfo, std::list<ScheduleInfo>> Scheduling;
2012-05-23 14:56:01 +01:00
void constructGraph (FactorGraph* fg) const;
2012-06-19 14:32:12 +01:00
void scheduleParents (const BBNode* n, Scheduling& sch) const;
2012-05-23 14:56:01 +01:00
2012-06-19 14:32:12 +01:00
void scheduleChilds (const BBNode* n, Scheduling& sch) const;
2012-05-23 14:56:01 +01:00
2013-02-16 16:17:14 +00:00
FactorGraph& fg_;
BayesBallGraph& dag_;
2012-05-23 14:56:01 +01:00
};
inline void
2012-06-19 14:32:12 +01:00
BayesBall::scheduleParents (const BBNode* n, Scheduling& sch) const
2012-05-23 14:56:01 +01:00
{
2013-02-07 13:37:15 +00:00
const std::vector<BBNode*>& ps = n->parents();
for (std::vector<BBNode*>::const_iterator it = ps.begin();
2012-05-28 14:12:18 +01:00
it != ps.end(); ++it) {
2012-05-23 14:56:01 +01:00
sch.push (ScheduleInfo (*it, false, true));
}
}
inline void
2012-06-19 14:32:12 +01:00
BayesBall::scheduleChilds (const BBNode* n, Scheduling& sch) const
2012-05-23 14:56:01 +01:00
{
2013-02-07 13:37:15 +00:00
const std::vector<BBNode*>& cs = n->childs();
for (std::vector<BBNode*>::const_iterator it = cs.begin();
2012-05-28 14:12:18 +01:00
it != cs.end(); ++it) {
2012-05-23 14:56:01 +01:00
sch.push (ScheduleInfo (*it, true, false));
}
}
} // namespace Horus
2013-02-07 23:53:13 +00:00
2013-02-08 00:20:01 +00:00
#endif // YAP_PACKAGES_CLPBN_HORUS_BAYESBALL_H_
2012-05-23 14:56:01 +01:00