From 2394920f7dc11a12294167f3638c3ed0749a88e3 Mon Sep 17 00:00:00 2001 From: Sterling Harper Date: Mon, 27 May 2019 15:03:00 -0400 Subject: [PATCH] Remove TINY_BIT to reestablish #1211 changes --- src/lattice.cpp | 6 ------ 1 file changed, 6 deletions(-) diff --git a/src/lattice.cpp b/src/lattice.cpp index 314670939d..40f30af2c7 100644 --- a/src/lattice.cpp +++ b/src/lattice.cpp @@ -835,12 +835,6 @@ const std::array HexLattice::get_indices(Position r, Direction u) const { - - // The implementation for HexLattice currently doesn't use direction - // information. As a result, we move the position slightly forward to - // determine what lattice index the particle is most likely to be in. - r += TINY_BIT * u; - // Offset the xyz by the lattice center. Position r_o {r.x - center_.x, r.y - center_.y, r.z}; if (is_3d_) {r_o.z -= center_.z;}