Redefine the default boolean type to gmx_bool.
[alexxy/gromacs.git] / include / nbsearch.h
index cdbf279139f9c6e2bb5d5dd481a038352e79555b..5dd73521ea0c562a40623af6b1795b2fc9956681 100644 (file)
@@ -72,10 +72,10 @@ gmx_ana_nbsearch_pos_init(gmx_ana_nbsearch_t *d, t_pbc *pbc,
 int
 gmx_ana_nbsearch_set_excl(gmx_ana_nbsearch_t *d, int nexcl, int excl[]);
 /** Check whether a point is within a neighborhood. */
-bool
+gmx_bool
 gmx_ana_nbsearch_is_within(gmx_ana_nbsearch_t *d, rvec x);
 /** Check whether a position is within a neighborhood. */
-bool
+gmx_bool
 gmx_ana_nbsearch_pos_is_within(gmx_ana_nbsearch_t *d,
                                struct gmx_ana_pos_t *p, int i);
 /** Calculates the minimun distance from the reference points. */
@@ -86,14 +86,14 @@ real
 gmx_ana_nbsearch_pos_mindist(gmx_ana_nbsearch_t *d,
                              struct gmx_ana_pos_t *p, int i);
 /** Finds the first reference position within the cutoff. */
-bool
+gmx_bool
 gmx_ana_nbsearch_first_within(gmx_ana_nbsearch_t *d, rvec x, int *jp);
 /** Finds the first reference position within the cutoff. */
-bool
+gmx_bool
 gmx_ana_nbsearch_pos_first_within(gmx_ana_nbsearch_t *d,
                                   struct gmx_ana_pos_t *p, int i, int *jp);
 /** Finds the next reference position within the cutoff. */
-bool
+gmx_bool
 gmx_ana_nbsearch_next_within(gmx_ana_nbsearch_t *d, int *jp);
 
 #ifdef __cplusplus