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

80 lines
1.7 KiB
C
Raw Normal View History

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
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
enum class LiftedSolverType {
2013-03-09 17:14:00 +00:00
lveSolver, // generalized counting first-order variable elimination
lbpSolver, // lifted first-order belief propagation
lkcSolver // lifted first-order knowledge compilation
};
enum class GroundSolverType {
veSolver, // variable elimination
bpSolver, // belief propagation
CbpSolver // counting belief propagation
2012-05-23 14:56:01 +01: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
namespace Constants {
2012-05-23 14:56:01 +01:00
// show message calculation for belief propagation
const bool showBpCalcs = false;
2012-05-23 14:56:01 +01: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-07 23:53:13 +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