fixed statgen

This commit is contained in:
arcan1s
2014-01-28 05:34:53 +04:00
parent 30630ca541
commit 26fc6b9e7e
7 changed files with 184 additions and 186 deletions

View File

@ -18,9 +18,8 @@ int printing_agl (const char *input, const char *output, const int *connect,
/**
* @brief function that prints agglomerates to output file
* @code
* printing_agl (input_file, output_file, number_of_molecules, true_label_molecules,
* num_of_molecules_in_agglomerates, agglomerates, statistic, max_depth,
* type_of_agglomerate);
* printing_agl (input, output, connect, _system_info, true_label_mol, num_mol_agl,
* agl, stat, max_depth, type_agl);
* @endcode
*
* @param input input file name

View File

@ -16,7 +16,7 @@ int create_matrix (const system_info _system_info, const atom_info *_atom_info,
/**
* @brief function that creates connectivity matrix
* @code
* int create_matrix (_system_info, _atom_info, num_of_inter, crit, connect);
* create_matrix (_system_info, _atom_info, num_of_inter, crit, connect);
* @endcode
*
* @param _system_info system information structure

View File

@ -5,11 +5,29 @@
#ifndef SUMMARY_STAT_H
#define SUMMARY_STAT_H
#include <mathmech/var_types.h>
/**
* @fn summary_statistic
*/
int summary_statistic (const char *filename, const system_info _system_info,
const int max_depth, const int *type_agl, const int *stat_all);
/**
* @brief function that prints summary statistic
* @code
* summary_statistic (filename, _system_info, max_depth, type_agl, stat_all);
* @endcode
*
* @param filename output file name
* @param _system_info system information structure
* @param num_mol number of molecules
* @param max_depth maximum depth for check cycles in graph analyze
* @param type_agl massive of number of agglomerate types
* @param stat_all massive of summary statistic
*
* @return 0 - exit without errors
*/
int summary_statistic (const char *, const int, const int, const int, const int *,
const int *);
#endif /* SUMMARY_STAT_H */
#endif /* SUMMARY_STAT_H */