mirror of
https://github.com/arcan1s/moldyn.git
synced 2025-09-03 22:29:58 +00:00
refactoring
This commit is contained in:
12
statgen/include/statgen/add_main.h
Normal file
12
statgen/include/statgen/add_main.h
Normal file
@ -0,0 +1,12 @@
|
||||
#ifndef ADD_MAIN_H
|
||||
#define ADD_MAIN_H
|
||||
|
||||
int error_checking (const float *, const int, const char *, const int, const int,
|
||||
const char *, const int, const int);
|
||||
int printing_head (const char *, const int, const int, const char *, const int,
|
||||
const int, const float *, const int, const int *, const int,
|
||||
const float *, const int);
|
||||
int set_defaults (float *, int *, char *, int *, int *, int *, char *, int *,
|
||||
int *, int *);
|
||||
|
||||
#endif /* ADD_MAIN_H */
|
7
statgen/include/statgen/coords.h
Normal file
7
statgen/include/statgen/coords.h
Normal file
@ -0,0 +1,7 @@
|
||||
#ifndef COORDS_H
|
||||
#define COORDS_H
|
||||
|
||||
int reading_coords (const char *, const int, const int *, const float *, int *,
|
||||
int *, int *, int *, int *, float *);
|
||||
|
||||
#endif /* COORDS_H */
|
9
statgen/include/statgen/graph.h
Normal file
9
statgen/include/statgen/graph.h
Normal 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 */
|
6
statgen/include/statgen/int2char.h
Normal file
6
statgen/include/statgen/int2char.h
Normal file
@ -0,0 +1,6 @@
|
||||
#ifndef INT2CHAR_H
|
||||
#define INT2CHAR_H
|
||||
|
||||
char conv (const int, const int);
|
||||
|
||||
#endif /* INT2CHAR_H */
|
6
statgen/include/statgen/messages.h
Normal file
6
statgen/include/statgen/messages.h
Normal file
@ -0,0 +1,6 @@
|
||||
#ifndef MESSAGES_H
|
||||
#define MESSAGES_H
|
||||
|
||||
int message (const int, const int, const char *, FILE *);
|
||||
|
||||
#endif /* MESSAGES_H */
|
7
statgen/include/statgen/stat_print.h
Normal file
7
statgen/include/statgen/stat_print.h
Normal file
@ -0,0 +1,7 @@
|
||||
#ifndef STAT_PRINT_H
|
||||
#define STAT_PRINT_H
|
||||
|
||||
int printing_agl (const char *, const char *, const int *, const int, const int *,
|
||||
const int *, const int *, const int *, const int,int *);
|
||||
|
||||
#endif /* STAT_PRINT_H */
|
7
statgen/include/statgen/stat_select.h
Normal file
7
statgen/include/statgen/stat_select.h
Normal file
@ -0,0 +1,7 @@
|
||||
#ifndef STAT_SELECT_H
|
||||
#define STAT_SELECT_H
|
||||
|
||||
int create_matrix (const int, const int, const int *, const int *, const float *,
|
||||
const int, const float *, int *);
|
||||
|
||||
#endif /* STAT_SELECT_H */
|
6
statgen/include/statgen/stat_sort.h
Normal file
6
statgen/include/statgen/stat_sort.h
Normal file
@ -0,0 +1,6 @@
|
||||
#ifndef STAT_SORT_H
|
||||
#define STAT_SORT_H
|
||||
|
||||
int proc_matrix (const int, const int *, int *, int *, int *, int *);
|
||||
|
||||
#endif /* STAT_SORT_H */
|
7
statgen/include/statgen/summary_stat.h
Normal file
7
statgen/include/statgen/summary_stat.h
Normal file
@ -0,0 +1,7 @@
|
||||
#ifndef SUMMARY_STAT_H
|
||||
#define SUMMARY_STAT_H
|
||||
|
||||
int summary_statistic (const char *, const int, const int, const int, const int *,
|
||||
const int *);
|
||||
|
||||
#endif /* SUMMARY_STAT_H */
|
Reference in New Issue
Block a user