Added documentation for statgen

This commit is contained in:
arcan1s
2013-07-27 23:38:42 +04:00
parent f2ec8c6580
commit 1af86034e7
54 changed files with 3953 additions and 308 deletions

26
statgen/src/graph.h Normal file
View File

@ -0,0 +1,26 @@
/**
* @file
*/
#ifndef GRAPH_H
#define GRAPH_H
/**
* @fn graph_analyze
*/
/**
* @fn check_cycle
*/
/**
* @fn check_cycle_size
*/
/**
* @fn check_tail
*/
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 */