Commit b2c970f4 authored by Peter Eastman's avatar Peter Eastman
Browse files

Removed debugging code that accidentally got left in

parent 5281aba4
...@@ -106,7 +106,7 @@ __kernel void computeNonbonded(__global float4* forceBuffers, __global float* en ...@@ -106,7 +106,7 @@ __kernel void computeNonbonded(__global float4* forceBuffers, __global float* en
localData[get_local_id(0)].fz = 0.0f; localData[get_local_id(0)].fz = 0.0f;
#ifdef USE_CUTOFF #ifdef USE_CUTOFF
unsigned int flags = interactionFlags[pos]; unsigned int flags = interactionFlags[pos];
if (!hasExclusions && flags != 0xFFFFFFFF && flags == 0) { if (!hasExclusions && flags != 0xFFFFFFFF) {
if (flags == 0) { if (flags == 0) {
// No interactions in this tile. // No interactions in this tile.
} }
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment