From 2c816435b2a9addd4a8cff95ff7a078aeb472297 Mon Sep 17 00:00:00 2001 From: Artem Zhmurov Date: Tue, 27 Oct 2020 08:55:20 +0300 Subject: [PATCH] Remove unused velocity scaling enum value The velocities are never scaled by a full matrix, hence the extra value in the enumeration is not needed. Having extra possible value in the templated parameter may hurt the compilation time. --- src/gromacs/mdlib/leapfrog_gpu.h | 1 - 1 file changed, 1 deletion(-) diff --git a/src/gromacs/mdlib/leapfrog_gpu.h b/src/gromacs/mdlib/leapfrog_gpu.h index 7554e6e793..8bcf5e37a5 100644 --- a/src/gromacs/mdlib/leapfrog_gpu.h +++ b/src/gromacs/mdlib/leapfrog_gpu.h @@ -86,7 +86,6 @@ enum class VelocityScalingType { None, //!< Do not apply velocity scaling (not a PR-coupling run or step) Diagonal, //!< Apply velocity scaling using a diagonal matrix - Full //!< Apply velocity scaling using a full matrix }; class LeapFrogGpu -- 2.22.0