Declares helper functions for dumping basic data structures as text.
|
int | pr_indent (FILE *fp, int n) |
| Prints an initial indentation for a line.
|
|
bool | available (FILE *fp, const void *p, int indent, const char *title) |
| Returns whether is available (not null), and prints a note if it is not.
|
|
int | pr_title (FILE *fp, int indent, const char *title) |
| Prints a title for a dumped section.
|
|
int | pr_title_n (FILE *fp, int indent, const char *title, int n) |
| Prints a title for a dumped section with a number suffixed.
|
|
int | pr_title_nxn (FILE *fp, int indent, const char *title, int n1, int n2) |
| Prints a title for a dumped section with two numbers suffixed (in NxM format).
|
|
void | pr_reals (FILE *fp, int indent, const char *title, const real vec[], int n) |
| Prints an array of reals.
|
|
void | pr_doubles (FILE *fp, int indent, const char *title, const double *vec, int n) |
| Prints an array of doubles.
|
|
void | pr_reals_of_dim (FILE *fp, int indent, const char *title, const real *vec, int n, int dim) |
| Prints an array of reals as a matrix with inner dimension dim.
|
|
void | pr_int (FILE *fp, int indent, const char *title, int i) |
| Prints an integer value.
|
|
void | pr_int64 (FILE *fp, int indent, const char *title, int64_t i) |
| Prints a int64_t value.
|
|
void | pr_real (FILE *fp, int indent, const char *title, real r) |
| Prints a floating-point value.
|
|
void | pr_double (FILE *fp, int indent, const char *title, double d) |
| Prints a double-precision floating-point value.
|
|
void | pr_str (FILE *fp, int indent, const char *title, const char *s) |
| Prints a string value.
|
|
void | pr_strings (FILE *fp, int indent, const char *title, char ***nm, int n, gmx_bool bShowNumbers) |
| Prints strings as a section; intended to be used for an array of names.
|
|