2013-02-07 17:50:02 +00:00
|
|
|
#ifndef YAP_PACKAGES_CLPBN_HORUS_HORUS_H_
|
|
|
|
#define YAP_PACKAGES_CLPBN_HORUS_HORUS_H_
|
2012-05-23 14:56:01 +01:00
|
|
|
|
|
|
|
#define DISALLOW_COPY_AND_ASSIGN(TypeName) \
|
|
|
|
TypeName(const TypeName&); \
|
|
|
|
void operator=(const TypeName&)
|
|
|
|
|
2012-12-27 22:25:45 +00:00
|
|
|
#define DISALLOW_COPY(TypeName) \
|
|
|
|
TypeName(const TypeName&)
|
|
|
|
|
|
|
|
#define DISALLOW_ASSIGN(TypeName) \
|
|
|
|
void operator=(const TypeName&)
|
|
|
|
|
|
|
|
#include <vector>
|
2012-12-28 15:40:32 +00:00
|
|
|
#include <string>
|
2012-05-23 14:56:01 +01:00
|
|
|
|
2013-02-07 23:53:13 +00:00
|
|
|
|
2013-02-08 21:12:46 +00:00
|
|
|
namespace Horus {
|
2013-02-07 23:53:13 +00:00
|
|
|
|
2012-05-23 14:56:01 +01:00
|
|
|
class Var;
|
|
|
|
class Factor;
|
|
|
|
class VarNode;
|
|
|
|
class FacNode;
|
|
|
|
|
2012-12-28 15:40:32 +00:00
|
|
|
typedef std::vector<double> Params;
|
|
|
|
typedef unsigned VarId;
|
|
|
|
typedef std::vector<VarId> VarIds;
|
|
|
|
typedef std::vector<Var*> Vars;
|
|
|
|
typedef std::vector<VarNode*> VarNodes;
|
|
|
|
typedef std::vector<FacNode*> FacNodes;
|
|
|
|
typedef std::vector<Factor*> Factors;
|
|
|
|
typedef std::vector<std::string> States;
|
|
|
|
typedef std::vector<unsigned> Ranges;
|
|
|
|
typedef unsigned long long ullong;
|
2012-05-23 14:56:01 +01:00
|
|
|
|
|
|
|
|
2013-03-09 15:39:39 +00:00
|
|
|
enum class LiftedSolverType {
|
2013-03-09 17:14:00 +00:00
|
|
|
lveSolver, // generalized counting first-order variable elimination
|
2013-02-13 18:54:15 +00:00
|
|
|
lbpSolver, // lifted first-order belief propagation
|
|
|
|
lkcSolver // lifted first-order knowledge compilation
|
2012-05-30 17:17:39 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
|
2013-03-09 15:39:39 +00:00
|
|
|
enum class GroundSolverType {
|
2013-02-13 18:54:15 +00:00
|
|
|
veSolver, // variable elimination
|
|
|
|
bpSolver, // belief propagation
|
|
|
|
CbpSolver // counting belief propagation
|
2012-05-23 14:56:01 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
|
2013-02-08 21:01:53 +00:00
|
|
|
namespace Globals {
|
2012-05-23 14:56:01 +01:00
|
|
|
|
|
|
|
extern bool logDomain;
|
|
|
|
|
|
|
|
// level of debug information
|
|
|
|
extern unsigned verbosity;
|
|
|
|
|
2012-11-14 21:55:51 +00:00
|
|
|
extern LiftedSolverType liftedSolver;
|
|
|
|
extern GroundSolverType groundSolver;
|
2012-05-23 14:56:01 +01:00
|
|
|
|
2013-02-07 23:53:13 +00:00
|
|
|
}
|
2012-05-23 14:56:01 +01:00
|
|
|
|
|
|
|
|
2013-02-08 21:01:53 +00:00
|
|
|
namespace Constants {
|
2012-05-23 14:56:01 +01:00
|
|
|
|
|
|
|
// show message calculation for belief propagation
|
2013-02-13 18:54:15 +00:00
|
|
|
const bool showBpCalcs = false;
|
2012-05-23 14:56:01 +01:00
|
|
|
|
2013-02-13 18:54:15 +00:00
|
|
|
const int unobserved = -1;
|
2012-05-23 14:56:01 +01:00
|
|
|
|
|
|
|
// number of digits to show when printing a parameter
|
2013-03-14 16:55:20 +00:00
|
|
|
const unsigned precision = 8;
|
2012-05-23 14:56:01 +01:00
|
|
|
|
2013-02-08 21:01:53 +00:00
|
|
|
}
|
2013-02-07 23:53:13 +00:00
|
|
|
|
2013-02-08 21:12:46 +00:00
|
|
|
} // namespace Horus
|
2012-05-23 14:56:01 +01:00
|
|
|
|
2013-02-08 00:20:01 +00:00
|
|
|
#endif // YAP_PACKAGES_CLPBN_HORUS_HORUS_H_
|
2012-05-23 14:56:01 +01:00
|
|
|
|