-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathinittree.h
57 lines (54 loc) · 3.35 KB
/
inittree.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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
#ifndef INITTREE_H
#define INITTREE_H
void SetTreeEdgePtrs ( struct tNode *tree, int *edgepool, int *index );
void initialize_tree_random ( struct tNode *tree,
struct genome_struct *labels, int num_genes,
int num_genomes );
void initialize_tree_trivial ( struct tNode *tree,
struct genome_struct *labels, int num_genes,
int num_genomes );
void initialize_tree_SNN ( int COND, struct tNode *tree, struct tNode *tpool,
struct genome_struct *labels, struct qNode *queue,
struct adj_struct *adj_list,
struct adj_struct *adj_pool, int **weights,
int *stack, int *degree, int *otherEnd,
intpair_t * neighbors, edge_t * edges,
int *incycle, int *outcycle, int *pred, int *succ,
int *code, int *decode, int num_genes,
int num_genomes, int inittspsolver, int thresh,
int CIRCULAR );
void initialize_tree_SBNN ( int COND, struct tNode *tree, struct tNode *tpool,
struct genome_struct *labels, struct qNode *queue,
struct adj_struct *adj_list,
struct adj_struct *adj_pool, int **weights,
int *stack, int *degree, int *otherEnd,
intpair_t * neighbors, edge_t * edges,
int *incycle, int *outcycle, int *pred, int *succ,
int *code, int *decode, int num_genes,
int num_genomes, int inittspsolver, int thresh,
int CIRCULAR );
void initialize_tree_BNN ( int COND, struct tNode *tree, struct tNode *tpool,
struct genome_struct *labels, triple_t * triple,
struct adj_struct *adj_list,
struct adj_struct *adj_pool, int **weights,
int *stack, int *degree, int *otherEnd,
intpair_t * neighbors, edge_t * edges,
int *incycle, int *outcycle, int *pred, int *succ,
int *code, int *decode, int num_genes,
int num_genomes, int inittspsolver, int thresh,
int CIRCULAR );
void initialize_tree_propagate ( int COND, struct tNode *tree,
struct tNode *tpool,
struct genome_struct *labels,
struct qNode *queue,
struct adj_struct *adj_list,
struct adj_struct *adj_pool, int **weights,
int *stack, int *degree, int *otherEnd,
intpair_t * neighbors, edge_t * edges,
int *incycle, int *outcycle, int num_genes,
int num_genomes, int *pred1, int *pred2,
int *picked, int *decode, int comb_method,
int inittspsolver, int thresh,
int CIRCULAR );
void print_tree ( struct tNode *tree, int num_genes );
#endif