mirror of
https://github.com/pjreddie/darknet.git
synced 2023-08-10 21:13:14 +03:00
tree stuff
This commit is contained in:
16
src/tree.h
Normal file
16
src/tree.h
Normal file
@ -0,0 +1,16 @@
|
||||
#ifndef TREE_H
|
||||
#define TREE_H
|
||||
|
||||
typedef struct{
|
||||
int *leaf;
|
||||
int n;
|
||||
int *parent;
|
||||
char **name;
|
||||
|
||||
int groups;
|
||||
int *group_size;
|
||||
} tree;
|
||||
|
||||
tree *read_tree(char *filename);
|
||||
|
||||
#endif
|
Reference in New Issue
Block a user