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

38 lines
813 B
C
Raw Normal View History

2013-02-07 17:50:02 +00:00
#ifndef YAP_PACKAGES_CLPBN_HORUS_GROUNDSOLVER_H_
#define YAP_PACKAGES_CLPBN_HORUS_GROUNDSOLVER_H_
#include "FactorGraph.h"
#include "Horus.h"
namespace Horus {
2013-02-07 23:53:13 +00:00
class GroundSolver {
public:
GroundSolver (const FactorGraph& factorGraph) : fg(factorGraph) { }
virtual ~GroundSolver() { } // ensure that subclass destructor is called
virtual Params solveQuery (VarIds queryVids) = 0;
virtual void printSolverFlags() const = 0;
void printAnswer (const VarIds& vids);
void printAllPosterioris();
2012-12-27 12:54:58 +00:00
static Params getJointByConditioning (GroundSolverType,
FactorGraph, const VarIds& jointVarIds);
2012-12-17 18:39:42 +00:00
protected:
const FactorGraph& fg;
2012-12-27 22:25:45 +00:00
private:
2012-12-27 22:25:45 +00:00
DISALLOW_COPY_AND_ASSIGN (GroundSolver);
};
} // namespace Horus
2013-02-07 23:53:13 +00:00
2013-02-08 00:20:01 +00:00
#endif // YAP_PACKAGES_CLPBN_HORUS_GROUNDSOLVER_H_