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
e3f35378
Commit
e3f35378
authored
Sep 10, 2019
by
peastman
Browse files
Fixed incorrect method signature
parent
0620a02f
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
2 deletions
+2
-2
openmmapi/include/openmm/VariableLangevinIntegrator.h
openmmapi/include/openmm/VariableLangevinIntegrator.h
+1
-1
openmmapi/include/openmm/VariableVerletIntegrator.h
openmmapi/include/openmm/VariableVerletIntegrator.h
+1
-1
No files found.
openmmapi/include/openmm/VariableLangevinIntegrator.h
View file @
e3f35378
...
...
@@ -123,7 +123,7 @@ public:
* Set the maximum step size the integrator will ever use, in ps. If this
* is 0 (the default), no limit will be applied to step sizes.
*/
double
setMaximumStepSize
(
double
size
)
{
void
setMaximumStepSize
(
double
size
)
{
maxStepSize
=
size
;
}
/**
...
...
openmmapi/include/openmm/VariableVerletIntegrator.h
View file @
e3f35378
...
...
@@ -93,7 +93,7 @@ public:
* Set the maximum step size the integrator will ever use, in ps. If this
* is 0 (the default), no limit will be applied to step sizes.
*/
double
setMaximumStepSize
(
double
size
)
{
void
setMaximumStepSize
(
double
size
)
{
maxStepSize
=
size
;
}
/**
...
...
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