From 81c1186a6e8486042010daf0643c20d27f75cf82 Mon Sep 17 00:00:00 2001 From: Christoph Niethammer Date: Tue, 20 Feb 2024 17:24:55 +0100 Subject: [PATCH] Remove unused _wellSeparated member from the FastMultipoleMethod class The _wellSeparated member in the FastMultipoleMethod class is nowhere else used in the code, therefore, remove it. Signed-off-by: Christoph Niethammer --- src/bhfmm/FastMultipoleMethod.h | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/bhfmm/FastMultipoleMethod.h b/src/bhfmm/FastMultipoleMethod.h index 752389536a..c39f0260a7 100644 --- a/src/bhfmm/FastMultipoleMethod.h +++ b/src/bhfmm/FastMultipoleMethod.h @@ -46,7 +46,6 @@ class FastMultipoleMethod { public: FastMultipoleMethod() : _order(-1), _LJCellSubdivisionFactor(0), - _wellSeparated(0), _adaptive(false) {} ~FastMultipoleMethod(); @@ -92,7 +91,6 @@ class FastMultipoleMethod { private: int _order; unsigned _LJCellSubdivisionFactor; - int _wellSeparated; bool _adaptive; bool _periodic;