-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathalgorithm.h
More file actions
62 lines (58 loc) · 1.14 KB
/
Copy pathalgorithm.h
File metadata and controls
62 lines (58 loc) · 1.14 KB
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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
#ifndef ALGORITHM_H
#define ALGORITHM_H
#include <vector>
#include "DecisionT.h"
using namespace std;
void printv(set<int>& r);
bool dequal(double a,double b);
double car_dep(
DecisionT &d,
set<int>& redu
);
void icar_dep(
DecisionT& T,
vector<vector<double> > & records,
size_t initsize,
size_t gsize,
set<int>& redu
);
void test2(
string datafile,
int* cons,
size_t N,
int ds,
size_t allsize,
size_t initsize,
size_t dsize,
double dlpha,
int k,
string savepath,
string timepath
);
void test1 (
string datafile,
int* cons,
size_t N,
int ds,
size_t allsize,
size_t initsize,
size_t dsize,
double alpha,
int k,
string savepath,
string timepath
);
void test0(
string datafile,
int* cons,
size_t N,
int ds,
size_t allsize,
size_t initsize,
size_t dsize,
double dlpha,
int k,
string savepath,
string timepath
);
#endif