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
2011-02-23 15:31:56 +00:00

21 lines
333 B
C++

#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