Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
tsoc
openmm
Commits
a043fea5
"platforms/reference/vscode:/vscode.git/clone" did not exist on "34a604b8f3ef3c0b3036d0882d829bd14360fa3b"
Commit
a043fea5
authored
Jan 17, 2009
by
Mark Friedrichs
Browse files
Turned off diagnostics
parent
5c58568b
Changes
5
Show whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
6 additions
and
6 deletions
+6
-6
platforms/brook/src/BrookIntegrateVerletStepKernel.cpp
platforms/brook/src/BrookIntegrateVerletStepKernel.cpp
+1
-1
platforms/brook/src/BrookLangevinDynamics.cpp
platforms/brook/src/BrookLangevinDynamics.cpp
+1
-1
platforms/brook/src/BrookPlatform.cpp
platforms/brook/src/BrookPlatform.cpp
+1
-1
platforms/brook/src/BrookRandomNumberGenerator.cpp
platforms/brook/src/BrookRandomNumberGenerator.cpp
+1
-1
platforms/brook/src/BrookVerletDynamics.cpp
platforms/brook/src/BrookVerletDynamics.cpp
+2
-2
No files found.
platforms/brook/src/BrookIntegrateVerletStepKernel.cpp
View file @
a043fea5
...
...
@@ -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"
;
// ---------------------------------------------------------------------------------------
...
...
platforms/brook/src/BrookLangevinDynamics.cpp
View file @
a043fea5
...
...
@@ -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-01
f
;
...
...
platforms/brook/src/BrookPlatform.cpp
View file @
a043fea5
...
...
@@ -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
);
...
...
platforms/brook/src/BrookRandomNumberGenerator.cpp
View file @
a043fea5
...
...
@@ -477,7 +477,7 @@ int BrookRandomNumberGenerator::_loadRandomNumberStreamsFixedValue( void ){
// ---------------------------------------------------------------------------------------
static
const
std
::
string
methodName
=
"
\n
BrookRandomNumberGenerator::_loadRandomNumberStreamsFixedValue"
;
int
printOn
=
1
;
int
printOn
=
0
;
// ---------------------------------------------------------------------------------------
...
...
platforms/brook/src/BrookVerletDynamics.cpp
View file @
a043fea5
...
...
@@ -468,7 +468,7 @@ int BrookVerletDynamics::update( BrookStreamImpl& positionStream, BrookStreamImp
// ---------------------------------------------------------------------------------------
static
std
::
string
methodName
=
"
\n
BrookVerletDynamics::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-01
f
;
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment