Commit 0d29e962 authored by Mark Friedrichs's avatar Mark Friedrichs
Browse files

Initialized prevTemp, prevFriction, prevStepSize

parent c3c6724a
......@@ -455,6 +455,9 @@ private:
class CudaIntegrateLangevinStepKernel : public IntegrateLangevinStepKernel {
public:
CudaIntegrateLangevinStepKernel(std::string name, const Platform& platform, CudaPlatform::PlatformData& data) : IntegrateLangevinStepKernel(name, platform), data(data) {
prevTemp = -1.0;
prevFriction = -1.0;
prevStepSize = -1.0;
}
~CudaIntegrateLangevinStepKernel();
/**
......
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