2013-02-07 17:50:02 +00:00
|
|
|
#ifndef YAP_PACKAGES_CLPBN_HORUS_COUNTINGBP_H_
|
|
|
|
#define YAP_PACKAGES_CLPBN_HORUS_COUNTINGBP_H_
|
2012-05-23 14:56:01 +01:00
|
|
|
|
2013-02-07 20:09:10 +00:00
|
|
|
#include <vector>
|
2012-05-31 21:12:46 +01:00
|
|
|
#include <unordered_map>
|
2012-05-23 14:56:01 +01:00
|
|
|
|
2012-11-14 21:55:51 +00:00
|
|
|
#include "GroundSolver.h"
|
2012-05-31 21:12:46 +01:00
|
|
|
#include "FactorGraph.h"
|
|
|
|
#include "Horus.h"
|
2012-05-23 14:56:01 +01:00
|
|
|
|
2013-02-07 13:37:15 +00:00
|
|
|
|
2013-02-08 21:12:46 +00:00
|
|
|
namespace Horus {
|
2013-02-07 23:53:13 +00:00
|
|
|
|
2012-05-31 21:12:46 +01:00
|
|
|
class VarCluster;
|
|
|
|
class FacCluster;
|
2012-06-12 16:29:57 +01:00
|
|
|
class WeightedBp;
|
2012-05-31 21:12:46 +01:00
|
|
|
|
|
|
|
|
2013-02-20 12:42:05 +00:00
|
|
|
template <class T> inline size_t
|
|
|
|
hash_combine (size_t seed, const T& v)
|
2012-06-30 19:25:29 +01:00
|
|
|
{
|
2013-02-07 13:37:15 +00:00
|
|
|
return seed ^ (std::hash<T>()(v) + 0x9e3779b9 + (seed << 6) + (seed >> 2));
|
2012-06-30 19:25:29 +01:00
|
|
|
}
|
2012-05-31 21:12:46 +01:00
|
|
|
|
2013-02-08 21:12:46 +00:00
|
|
|
} // namespace Horus
|
2013-02-07 23:53:13 +00:00
|
|
|
|
2012-05-31 21:12:46 +01:00
|
|
|
|
2012-06-30 19:25:29 +01:00
|
|
|
namespace std {
|
2013-02-06 00:24:02 +00:00
|
|
|
|
2013-02-08 00:56:42 +00:00
|
|
|
template <typename T1, typename T2> struct hash<std::pair<T1,T2>> {
|
|
|
|
size_t operator() (const std::pair<T1,T2>& p) const {
|
2013-02-08 21:12:46 +00:00
|
|
|
return Horus::hash_combine (std::hash<T1>()(p.first), p.second);
|
2013-02-08 00:56:42 +00:00
|
|
|
}};
|
2012-05-31 21:12:46 +01:00
|
|
|
|
2013-02-08 01:11:18 +00:00
|
|
|
template <typename T> struct hash<std::vector<T>>
|
|
|
|
{
|
|
|
|
size_t operator() (const std::vector<T>& vec) const
|
|
|
|
{
|
2013-02-06 00:24:02 +00:00
|
|
|
size_t h = 0;
|
2013-02-07 13:37:15 +00:00
|
|
|
typename std::vector<T>::const_iterator first = vec.begin();
|
|
|
|
typename std::vector<T>::const_iterator last = vec.end();
|
2013-02-06 00:24:02 +00:00
|
|
|
for (; first != last; ++first) {
|
2013-02-08 21:12:46 +00:00
|
|
|
h = Horus::hash_combine (h, *first);
|
2012-05-31 21:12:46 +01:00
|
|
|
}
|
2013-02-06 00:24:02 +00:00
|
|
|
return h;
|
2013-02-08 01:11:18 +00:00
|
|
|
}
|
|
|
|
};
|
2013-02-06 00:24:02 +00:00
|
|
|
|
2013-02-07 23:53:13 +00:00
|
|
|
} // namespace std
|
2012-05-31 21:12:46 +01:00
|
|
|
|
|
|
|
|
2013-02-08 21:12:46 +00:00
|
|
|
namespace Horus {
|
2013-02-07 23:53:13 +00:00
|
|
|
|
2013-02-13 14:26:47 +00:00
|
|
|
class CountingBp : public GroundSolver {
|
2012-05-31 21:12:46 +01:00
|
|
|
public:
|
2012-06-12 16:29:57 +01:00
|
|
|
CountingBp (const FactorGraph& fg);
|
2012-05-23 14:56:01 +01:00
|
|
|
|
2013-02-28 19:45:37 +00:00
|
|
|
~CountingBp();
|
2012-05-23 14:56:01 +01:00
|
|
|
|
2013-02-28 19:45:37 +00:00
|
|
|
void printSolverFlags() const;
|
2012-05-31 21:12:46 +01:00
|
|
|
|
|
|
|
Params solveQuery (VarIds);
|
2012-12-17 18:39:42 +00:00
|
|
|
|
2012-12-27 23:21:32 +00:00
|
|
|
static void setFindIdenticalFactorsFlag (bool fif) { fif_ = fif; }
|
2012-12-17 18:39:42 +00:00
|
|
|
|
2012-05-31 21:12:46 +01:00
|
|
|
private:
|
2013-02-20 12:42:05 +00:00
|
|
|
typedef long Color;
|
|
|
|
typedef std::vector<Color> Colors;
|
|
|
|
|
|
|
|
typedef std::vector<std::pair<Color,unsigned>> VarSignature;
|
|
|
|
typedef std::vector<Color> FacSignature;
|
|
|
|
|
|
|
|
typedef std::vector<VarCluster*> VarClusters;
|
|
|
|
typedef std::vector<FacCluster*> FacClusters;
|
|
|
|
|
|
|
|
typedef std::unordered_map<unsigned, Color> DistColorMap;
|
|
|
|
typedef std::unordered_map<unsigned, Colors> VarColorMap;
|
|
|
|
typedef std::unordered_map<VarSignature, VarNodes> VarSignMap;
|
|
|
|
typedef std::unordered_map<FacSignature, FacNodes> FacSignMap;
|
|
|
|
typedef std::unordered_map<VarId, VarCluster*> VarClusterMap;
|
|
|
|
|
2013-02-28 19:45:37 +00:00
|
|
|
Color getNewColor();
|
2012-05-31 21:12:46 +01:00
|
|
|
|
2013-02-06 00:24:02 +00:00
|
|
|
Color getColor (const VarNode* vn) const;
|
2012-05-31 21:12:46 +01:00
|
|
|
|
2013-02-06 00:24:02 +00:00
|
|
|
Color getColor (const FacNode* fn) const;
|
2012-05-23 14:56:01 +01:00
|
|
|
|
2013-02-06 00:24:02 +00:00
|
|
|
void setColor (const VarNode* vn, Color c);
|
2012-05-31 21:12:46 +01:00
|
|
|
|
2013-02-06 00:24:02 +00:00
|
|
|
void setColor (const FacNode* fn, Color c);
|
2012-05-31 21:12:46 +01:00
|
|
|
|
2013-02-28 19:45:37 +00:00
|
|
|
void findIdenticalFactors();
|
2012-05-31 21:12:46 +01:00
|
|
|
|
2013-02-28 19:45:37 +00:00
|
|
|
void setInitialColors();
|
2012-05-23 14:56:01 +01:00
|
|
|
|
2013-02-28 19:45:37 +00:00
|
|
|
void createGroups();
|
2012-05-31 21:12:46 +01:00
|
|
|
|
|
|
|
void createClusters (const VarSignMap&, const FacSignMap&);
|
|
|
|
|
|
|
|
VarSignature getSignature (const VarNode*);
|
|
|
|
|
|
|
|
FacSignature getSignature (const FacNode*);
|
|
|
|
|
|
|
|
void printGroups (const VarSignMap&, const FacSignMap&) const;
|
|
|
|
|
2012-06-13 12:47:41 +01:00
|
|
|
VarId getRepresentative (VarId vid);
|
|
|
|
|
|
|
|
FacNode* getRepresentative (FacNode*);
|
2012-05-23 14:56:01 +01:00
|
|
|
|
2013-02-28 19:45:37 +00:00
|
|
|
FactorGraph* getCompressedFactorGraph();
|
2012-05-23 14:56:01 +01:00
|
|
|
|
2013-02-28 19:45:37 +00:00
|
|
|
std::vector<std::vector<unsigned>> getWeights() const;
|
2012-05-23 14:56:01 +01:00
|
|
|
|
2013-02-20 12:42:05 +00:00
|
|
|
unsigned getWeight (const FacCluster*, const VarCluster*,
|
|
|
|
size_t index) const;
|
2012-05-23 14:56:01 +01:00
|
|
|
|
2012-05-31 21:12:46 +01:00
|
|
|
Color freeColor_;
|
|
|
|
Colors varColors_;
|
|
|
|
Colors facColors_;
|
|
|
|
VarClusters varClusters_;
|
|
|
|
FacClusters facClusters_;
|
2012-06-30 19:25:29 +01:00
|
|
|
VarClusterMap varClusterMap_;
|
2012-05-31 21:12:46 +01:00
|
|
|
const FactorGraph* compressedFg_;
|
2012-06-30 19:25:29 +01:00
|
|
|
WeightedBp* solver_;
|
2012-12-27 22:25:45 +00:00
|
|
|
|
2012-12-27 23:21:32 +00:00
|
|
|
static bool fif_;
|
|
|
|
|
2012-12-27 22:25:45 +00:00
|
|
|
DISALLOW_COPY_AND_ASSIGN (CountingBp);
|
2012-05-23 14:56:01 +01:00
|
|
|
};
|
|
|
|
|
2013-02-06 00:24:02 +00:00
|
|
|
|
|
|
|
|
2013-02-20 12:42:05 +00:00
|
|
|
inline CountingBp::Color
|
2013-02-28 19:45:37 +00:00
|
|
|
CountingBp::getNewColor()
|
2013-02-06 00:24:02 +00:00
|
|
|
{
|
|
|
|
++ freeColor_;
|
|
|
|
return freeColor_ - 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
2013-02-20 12:42:05 +00:00
|
|
|
inline CountingBp::Color
|
2013-02-06 00:24:02 +00:00
|
|
|
CountingBp::getColor (const VarNode* vn) const
|
|
|
|
{
|
|
|
|
return varColors_[vn->getIndex()];
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
2013-02-20 12:42:05 +00:00
|
|
|
inline CountingBp::Color
|
2013-02-06 00:24:02 +00:00
|
|
|
CountingBp::getColor (const FacNode* fn) const
|
|
|
|
{
|
|
|
|
return facColors_[fn->getIndex()];
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
inline void
|
2013-02-20 12:42:05 +00:00
|
|
|
CountingBp::setColor (const VarNode* vn, CountingBp::Color c)
|
2013-02-06 00:24:02 +00:00
|
|
|
{
|
|
|
|
varColors_[vn->getIndex()] = c;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
inline void
|
|
|
|
CountingBp::setColor (const FacNode* fn, Color c)
|
|
|
|
{
|
|
|
|
facColors_[fn->getIndex()] = c;
|
|
|
|
}
|
|
|
|
|
2013-02-08 21:12:46 +00:00
|
|
|
} // namespace Horus
|
2013-02-07 23:53:13 +00:00
|
|
|
|
2013-02-08 00:20:01 +00:00
|
|
|
#endif // YAP_PACKAGES_CLPBN_HORUS_COUNTINGBP_H_
|
2012-05-23 14:56:01 +01:00
|
|
|
|