Loading...
Searching...
No Matches
18#include "util/ytData.h"
19#include "util/ytKeyValues.h"
20#include "net/ytNode.h"
21#include "net/ytEdge.h"
22#include "net/ytNetwork.h"
26#define BNDC_DEFAULT_MAX_MEM 1000
27#define BNDC_DEF {"BNDC",\
35 BNDC_partialResidual,\
36 BNDC_calcEdgeContrib,\
53void BNDC_reinit(
void * buff,
ytData * data);
54double BNDC_score(
void * buff,
const int j,
const int * parents,
const int q);
55void BNDC_edgeProp(
void * buff,
const int j,
const int * parents,
const int q,
56 const int k,
ytEdge * edge);
57void BNDC_nodeProp(
void * buff,
int j,
ytNode * node);
58void BNDC_finalize(
void * buff);
59void BNDC_partialResidual(
void * buff,
const int j,
const int * parents,
const int q,
60 FILE ** fp,
double * ll);
61void BNDC_setEdgeProp(
void * buff,
const int j,
const int * parents,
const int q,
62 const int k,
const ytEdge * edge);
63void BNDC_setNodeProp(
void * buff,
const int j,
const ytNode * node);
64void BNDC_calcEdgeContrib(
void * buff,
ytNetwork * network,
int j,
const int * parents,
int q,
65 int mode,
double * ar);
66void BNDC_status(
void * buff);
67int BNDC_debug(
int argc,
char * argv[]);
68void BNDC_setParam(
void * buff,
const char * key,
ytObject * value);
70int BDE_count(
const BNRC_Data * D,
int j,
int n,
71 const int * parents,
int q,
int R,
BDE_Data * B);
General data container.
Definition ytData.h:46
Network node.
Definition ytNode.h:15