From d84b6ba7d6f4bd4b3cd0fca89eb6068970b03b2b Mon Sep 17 00:00:00 2001 From: Sebastian Eibl <sebastian.eibl@fau.de> Date: Fri, 5 Feb 2021 13:57:28 +0100 Subject: [PATCH] [BUGFIX] msvc error --- src/mesa_pd/kernel/cnt/VBondContact.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/mesa_pd/kernel/cnt/VBondContact.h b/src/mesa_pd/kernel/cnt/VBondContact.h index f245aca1e..2153daa69 100644 --- a/src/mesa_pd/kernel/cnt/VBondContact.h +++ b/src/mesa_pd/kernel/cnt/VBondContact.h @@ -94,7 +94,7 @@ void VBondContact::operator()(const size_t p_idx1, // Fix for the issue of segment's undefined sides real_t sign = ac.getSegmentID(p_idx1) <= ac.getSegmentID(p_idx2) ? 1_r : -1_r; - if (((isPeriodic_[0]) && (std::abs(ac.getSegmentID(p_idx2) - ac.getSegmentID(p_idx1)) == maxSegments_[0] - 1)) or + if (((isPeriodic_[0]) && (std::abs(ac.getSegmentID(p_idx2) - ac.getSegmentID(p_idx1)) == maxSegments_[0] - 1)) || ((isPeriodic_[1]) && (std::abs(ac.getSegmentID(p_idx2) - ac.getSegmentID(p_idx1)) == maxSegments_[1] - 1))) sign = -sign; // special case for periodic fibers -- GitLab