Remove gmx custom fixed int (e.g. gmx_int64_t) types
[alexxy/gromacs.git] / src / gromacs / ewald / tests / pmetestcommon.cpp
index d75672363dd469a77d133c8047a216d84b1c53e4..8faab8c2aff6c1cd1e9c5e9ed0bf54c6791cb512 100644 (file)
@@ -89,12 +89,12 @@ bool pmeSupportsInputForMode(const t_inputrec *inputRec, CodePath mode)
     return implemented;
 }
 
-gmx_uint64_t getSplineModuliDoublePrecisionUlps(int splineOrder)
+uint64_t getSplineModuliDoublePrecisionUlps(int splineOrder)
 {
     /* Arbitrary ulp tolerance for sine/cosine implementation. It's
      * hard to know what to pick without testing lots of
      * implementations. */
-    const gmx_uint64_t sineUlps = 10;
+    const uint64_t sineUlps = 10;
     return 4 * (splineOrder - 2) + 2 * sineUlps * splineOrder;
 }