Replace gmx_large_int_t with gmx_int64_t
[alexxy/gromacs.git] / src / gromacs / legacyheaders / types / nlistheuristics.h
index 41db81a45fc3225326dd87561ff51af6dab2ab8f..07fcd641e2fe9c1f4491e4b5d6fac4f905416dd7 100644 (file)
@@ -46,9 +46,9 @@ extern "C" {
 
 typedef struct {
     gmx_bool        bGStatEveryStep;
-    gmx_large_int_t step_ns;
-    gmx_large_int_t step_nscheck;
-    gmx_large_int_t nns;
+    gmx_int64_t     step_ns;
+    gmx_int64_t     step_nscheck;
+    gmx_int64_t     nns;
     matrix          scale_tot;
     int             nabnsb;
     double          s1;
@@ -58,14 +58,14 @@ typedef struct {
     double          lt_runav2;
 } gmx_nlheur_t;
 
-void reset_nlistheuristics(gmx_nlheur_t *nlh, gmx_large_int_t step);
+void reset_nlistheuristics(gmx_nlheur_t *nlh, gmx_int64_t step);
 
 void init_nlistheuristics(gmx_nlheur_t *nlh,
-                          gmx_bool bGStatEveryStep, gmx_large_int_t step);
+                          gmx_bool bGStatEveryStep, gmx_int64_t step);
 
-void update_nliststatistics(gmx_nlheur_t *nlh, gmx_large_int_t step);
+void update_nliststatistics(gmx_nlheur_t *nlh, gmx_int64_t step);
 
-void set_nlistheuristics(gmx_nlheur_t *nlh, gmx_bool bReset, gmx_large_int_t step);
+void set_nlistheuristics(gmx_nlheur_t *nlh, gmx_bool bReset, gmx_int64_t step);
 
 #ifdef __cplusplus
 }