Commit a043fea5 authored by Mark Friedrichs's avatar Mark Friedrichs
Browse files

Turned off diagnostics

parent 5c58568b
......@@ -122,7 +122,7 @@ void BrookIntegrateVerletStepKernel::initialize( const System& system, const Ve
// ---------------------------------------------------------------------------------------
int printOn = 1;
int printOn = 0;
static const std::string methodName = "BrookIntegrateVerletStepKernel::initialize";
// ---------------------------------------------------------------------------------------
......
......@@ -1480,7 +1480,7 @@ int BrookLangevinDynamics::update( BrookStreamImpl& positionStream, BrookStreamI
// diagnostics
if( (_internalStepCount % 1000) == 0 ){
if( 0 && (_internalStepCount % 1000) == 0 ){
FILE* log1 = stderr;
float epsilon = 1.0e-01f;
......
......@@ -288,7 +288,7 @@ void BrookPlatform::_initializeKernelFactory( void ){
registerKernelFactory( CalcGBSAOBCForceKernel::Name(), factory );
registerKernelFactory( IntegrateVerletStepKernel::Name(), factory );
registerKernelFactory( IntegrateLangevinStepKernel::Name(), factory );
registerKernelFactory( IntegrateBrownianStepKernel::Name(), factory );
// registerKernelFactory( IntegrateBrownianStepKernel::Name(), factory );
//registerKernelFactory( ApplyAndersenThermostatKernel::Name(), factory );
registerKernelFactory( CalcKineticEnergyKernel::Name(), factory );
registerKernelFactory( RemoveCMMotionKernel::Name(), factory );
......
......@@ -477,7 +477,7 @@ int BrookRandomNumberGenerator::_loadRandomNumberStreamsFixedValue( void ){
// ---------------------------------------------------------------------------------------
static const std::string methodName = "\nBrookRandomNumberGenerator::_loadRandomNumberStreamsFixedValue";
int printOn = 1;
int printOn = 0;
// ---------------------------------------------------------------------------------------
......
......@@ -468,7 +468,7 @@ int BrookVerletDynamics::update( BrookStreamImpl& positionStream, BrookStreamImp
// ---------------------------------------------------------------------------------------
static std::string methodName = "\nBrookVerletDynamics::update";
static int printOn = 1;
static int printOn = 0;
FILE* log;
// ---------------------------------------------------------------------------------------
......@@ -684,7 +684,7 @@ int BrookVerletDynamics::update( BrookStreamImpl& positionStream, BrookStreamImp
// diagnostics
if( (_internalStepCount % 100) == 0 ){
if( 0 && (_internalStepCount % 100) == 0 ){
FILE* log1 = stderr;
float epsilon = 1.0e-01f;
......
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