From 2cb87bc9a2e3758f342ec6f47b8265d52f05f0bf Mon Sep 17 00:00:00 2001 From: "W. Michael Brown" Date: Thu, 8 Jun 2023 21:47:30 -0700 Subject: [PATCH] Intel package should not reset atom sort frequency if it is 0 (disabled). --- src/INTEL/fix_intel.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/INTEL/fix_intel.cpp b/src/INTEL/fix_intel.cpp index ef6bfc3408..59224cc511 100644 --- a/src/INTEL/fix_intel.cpp +++ b/src/INTEL/fix_intel.cpp @@ -411,7 +411,7 @@ bool FixIntel::pair_hybrid_check() void FixIntel::pair_init_check(const bool cdmessage) { #ifdef INTEL_VMASK - atom->sortfreq = 1; + if (atom->sortfreq) atom->sortfreq = 1; #endif _nbor_pack_width = 1;