Update CLP(BN) with Tiago's latest version of BP solver.

This commit is contained in:
Vitor Santos Costa
2011-05-17 12:00:33 +01:00
parent 2f964c9f51
commit b7379a67cc
46 changed files with 10961 additions and 491 deletions

View File

@@ -0,0 +1,17 @@
#ifndef BP_GRAPHICALMODEL_H
#define BP_GRAPHICALMODEL_H
#include "Variable.h"
#include "Shared.h"
using namespace std;
class GraphicalModel
{
public:
virtual VarSet getVariables (void) const = 0;
private:
};
#endif