-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpc.h
39 lines (30 loc) · 961 Bytes
/
pc.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
#ifndef DSL_PC_H
#define DSL_PC_H
// {{SMILE_PUBLIC_HEADER}}
#include "bkgndknowledge.h"
class DSL_dataset;
class DSL_progress;
class DSL_network;
class DSL_pattern;
class DSL_cormat;
class DSL_pc
{
public:
DSL_pc()
{
maxAdjacency = 8;
maxSearchTime = 0;
significance = 0.05;
}
int maxAdjacency;
int maxSearchTime;
double significance;
DSL_bkgndKnowledge bkk;
int Learn(const DSL_dataset &ds, DSL_pattern &pat, DSL_progress *progress = NULL) const;
// not for public use
int Dbcml(const DSL_dataset &ds, int maxDeriv, std::vector<std::vector<int> > &derivs, DSL_pattern &pat, DSL_dataset *dsderivs, DSL_progress *progress) const;
int DbcmlPc(DSL_cormat &cm, DSL_pattern &pat, std::vector<std::vector<std::vector<int> > > &sepsets) const;
int Idx(int nvar, int var, int deriv, int time) const;
std::vector<int> nc;
};
#endif