renamings and delete bn_bp stuff
This commit is contained in:
@@ -3,15 +3,16 @@
|
||||
|
||||
#include <iomanip>
|
||||
|
||||
#include "GraphicalModel.h"
|
||||
#include "VarNode.h"
|
||||
#include "Var.h"
|
||||
#include "FactorGraph.h"
|
||||
|
||||
|
||||
using namespace std;
|
||||
|
||||
class Solver
|
||||
{
|
||||
public:
|
||||
Solver (const GraphicalModel* gm) : gm_(gm) { }
|
||||
Solver (const FactorGraph& fg) : fg_(fg) { }
|
||||
|
||||
virtual ~Solver() { } // ensure that subclass destructor is called
|
||||
|
||||
@@ -28,7 +29,7 @@ class Solver
|
||||
void printJointDistributionOf (const VarIds& vids);
|
||||
|
||||
private:
|
||||
const GraphicalModel* gm_;
|
||||
const FactorGraph& fg_;
|
||||
};
|
||||
|
||||
#endif // HORUS_SOLVER_H
|
||||
|
||||
Reference in New Issue
Block a user