From a63792a07abe6a3482d1face4c315620315f7b21 Mon Sep 17 00:00:00 2001 From: Axel Kohlmeyer Date: Fri, 3 Jan 2020 01:40:20 -0500 Subject: [PATCH] need to explicitly run pair_init_check() inside kspace_init_check() for hybrid styles --- src/USER-INTEL/fix_intel.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/USER-INTEL/fix_intel.cpp b/src/USER-INTEL/fix_intel.cpp index be9d0c49b0..3d59a49acd 100644 --- a/src/USER-INTEL/fix_intel.cpp +++ b/src/USER-INTEL/fix_intel.cpp @@ -529,6 +529,7 @@ void FixIntel::kspace_init_check() intel_pair = 1; else if (force->pair_match("^hybrid", 0) != NULL) { _hybrid_nonpair = 1; + pair_init_check(); // need to run this here explicitly, since pair->init() was not run yet. if (_pair_intel_count) intel_pair = 1; }