Commit 3c2e2613 authored by Peter Eastman's avatar Peter Eastman
Browse files

Fixed compilation error in kernel

parent d54938ac
...@@ -5,7 +5,7 @@ ...@@ -5,7 +5,7 @@
unsigned int includeInteraction = (!isExcluded); unsigned int includeInteraction = (!isExcluded);
#endif #endif
real tempForce = 0.0f; real tempForce = 0.0f;
real2 pairSigmaEpsilon = sigmaEpsilon[atomType1+atomType2*NUM_TYPES]; float2 pairSigmaEpsilon = sigmaEpsilon[atomType1+atomType2*NUM_TYPES];
real sigma = pairSigmaEpsilon.x; real sigma = pairSigmaEpsilon.x;
real epsilon = pairSigmaEpsilon.y; real epsilon = pairSigmaEpsilon.y;
real softcore = 0.0f; real softcore = 0.0f;
......
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