+ added CMakeLists.txt

+ added headers
+ added library 'add_main.c'
+ some optimization
This commit is contained in:
arcan1s
2013-07-22 06:06:01 +04:00
parent 2057208ef6
commit 51d31d0a2f
22 changed files with 347 additions and 210 deletions

9
statgen/graph.h Normal file
View File

@ -0,0 +1,9 @@
#ifndef GRAPH_H
#define GRAPH_H
int graph_analyze (const int, const int *, const int, int *);
int check_cycle (const int, const int *);
int check_cycle_size (const int, const int *, const int, int *);
int check_tail (const int *);
#endif /* GRAPH_H */