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

47 lines
868 B
C
Raw Normal View History

2013-02-07 17:50:02 +00:00
#ifndef YAP_PACKAGES_CLPBN_HORUS_VARELIM_H_
#define YAP_PACKAGES_CLPBN_HORUS_VARELIM_H_
2012-05-23 14:56:01 +01:00
2013-02-07 20:09:10 +00:00
#include <vector>
#include <unordered_map>
2012-05-23 14:56:01 +01:00
2012-11-14 21:55:51 +00:00
#include "GroundSolver.h"
2012-05-23 14:56:01 +01:00
#include "FactorGraph.h"
#include "Horus.h"
namespace Horus {
2013-02-07 23:53:13 +00:00
class VarElim : public GroundSolver {
2012-05-23 14:56:01 +01:00
public:
2012-11-14 21:55:51 +00:00
VarElim (const FactorGraph& fg) : GroundSolver (fg) { }
2012-05-23 14:56:01 +01:00
~VarElim() { }
2012-05-23 14:56:01 +01:00
Params solveQuery (VarIds);
void printSolverFlags() const;
2012-05-23 14:56:01 +01:00
private:
void createFactorList();
2012-05-23 14:56:01 +01:00
void absorveEvidence();
2012-05-23 14:56:01 +01:00
2012-12-26 22:55:48 +00:00
Params processFactorList (const VarIds&);
2012-05-23 14:56:01 +01:00
void eliminate (VarId);
void printActiveFactors();
2012-05-23 14:56:01 +01:00
2012-12-26 22:55:48 +00:00
Factors factorList_;
unsigned largestFactorSize_;
unsigned totalFactorSize_;
2013-02-07 13:37:15 +00:00
std::unordered_map<VarId, std::vector<size_t>> varMap_;
2012-12-27 22:25:45 +00:00
DISALLOW_COPY_AND_ASSIGN (VarElim);
2012-05-23 14:56:01 +01:00
};
} // namespace Horus
2013-02-07 23:53:13 +00:00
2013-02-08 00:20:01 +00:00
#endif // YAP_PACKAGES_CLPBN_HORUS_VARELIM_H_
2012-05-23 14:56:01 +01:00