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/clpbn/bp/BifInterface.h

21 lines
333 B
C
Raw Normal View History

#ifndef BIF_INTERFACE_H
#define BIF_INTERFACE_H
using namespace std;
class BayesianNetwork;
class BayesianNode;
class BifInterface
{
public:
static void createNetworkFromXML (BayesianNetwork*, const char*);
private:
static double* reorderParameters (double*, int, int);
};
#endif // BIF_INTERFACE_H