/* -------------------------------------------------------------------------- * * OpenMM * * -------------------------------------------------------------------------- * * This is part of the OpenMM molecular simulation toolkit originating from * * Simbios, the NIH National Center for Physics-Based Simulation of * * Biological Structures at Stanford, funded under the NIH Roadmap for * * Medical Research, grant U54 GM072970. See https://simtk.org. * * * * Portions copyright (c) 2013 Stanford University and the Authors. * * Authors: Peter Eastman * * Contributors: * * * * Permission is hereby granted, free of charge, to any person obtaining a * * copy of this software and associated documentation files (the "Software"), * * to deal in the Software without restriction, including without limitation * * the rights to use, copy, modify, merge, publish, distribute, sublicense, * * and/or sell copies of the Software, and to permit persons to whom the * * Software is furnished to do so, subject to the following conditions: * * * * The above copyright notice and this permission notice shall be included in * * all copies or substantial portions of the Software. * * * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, * * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL * * THE AUTHORS, CONTRIBUTORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, * * DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR * * OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE * * USE OR OTHER DEALINGS IN THE SOFTWARE. * * -------------------------------------------------------------------------- */ /** * This tests all the CPU implementation of neighbor list construction. */ #include "openmm/internal/AssertionUtilities.h" #include "CpuNeighborList.h" #include "sfmt/SFMT.h" #include #include #include using namespace OpenMM; using namespace std; void testNeighborList(bool periodic) { const int numParticles = 500; const float cutoff = 2.0f; const float boxSize = 20.0f; OpenMM_SFMT::SFMT sfmt; init_gen_rand(0, sfmt); vector positions(4*numParticles); for (int i = 0; i < 4*numParticles; i++) positions[i] = boxSize*genrand_real2(sfmt); vector > exclusions(numParticles); for (int i = 0; i < numParticles; i++) { int num = min(i+1, 10); for (int j = 0; j < num; j++) { exclusions[i].insert(i-j); exclusions[i-j].insert(i); } } CpuNeighborList neighborList; float box[3] = {boxSize, boxSize, boxSize}; neighborList.computeNeighborList(numParticles, positions, exclusions, box, periodic, cutoff); // Convert the neighbor list to a set for faster lookup. set > neighbors; for (int i = 0; i < (int) neighborList.getNeighbors().size(); i++) { pair entry = neighborList.getNeighbors()[i]; ASSERT(neighbors.find(entry) == neighbors.end() && neighbors.find(make_pair(entry.second, entry.first)) == neighbors.end()); // No duplicates neighbors.insert(entry); } // Check each particle pair and figure out whether they should be in the neighbor list. for (int i = 0; i < numParticles; i++) for (int j = 0; j <= i; j++) { bool shouldInclude = (exclusions[i].find(j) == exclusions[i].end()); float dx = positions[4*i]-positions[4*j]; float dy = positions[4*i+1]-positions[4*j+1]; float dz = positions[4*i+2]-positions[4*j+2]; if (periodic) { dx -= floor(dx/boxSize+0.5f)*boxSize; dy -= floor(dy/boxSize+0.5f)*boxSize; dz -= floor(dz/boxSize+0.5f)*boxSize; } if (dx*dx + dy*dy + dz*dz > cutoff*cutoff) shouldInclude = false; bool isIncluded = (neighbors.find(make_pair(i, j)) != neighbors.end() || neighbors.find(make_pair(j, i)) != neighbors.end()); ASSERT_EQUAL(shouldInclude, isIncluded); } } int main() { try { testNeighborList(false); testNeighborList(true); } catch(const exception& e) { cout << "exception: " << e.what() << endl; return 1; } cout << "Done" << endl; return 0; }