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
7590374b
Commit
7590374b
authored
May 27, 2020
by
peastman
Browse files
Fixed error building docs
parent
6776f49e
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
3 deletions
+3
-3
.travis.yml
.travis.yml
+1
-1
openmmapi/include/openmm/Integrator.h
openmmapi/include/openmm/Integrator.h
+2
-2
No files found.
.travis.yml
View file @
7590374b
...
@@ -216,7 +216,7 @@ script:
...
@@ -216,7 +216,7 @@ script:
-
python devtools/run-ctest.py --start-time $START_TIME
-
python devtools/run-ctest.py --start-time $START_TIME
-
if [[ ! -z "${DOCS_DEPLOY}" && "${DOCS_DEPLOY}" = "true" ]]; then
-
if [[ ! -z "${DOCS_DEPLOY}" && "${DOCS_DEPLOY}" = "true" ]]; then
pip install sphinx sphinxcontrib-bibtex sphinxcontrib-lunrsearch sphinxcontrib-autodoc_doxygen;
pip install sphinx
==2.3.1
sphinxcontrib-bibtex sphinxcontrib-lunrsearch sphinxcontrib-autodoc_doxygen;
make sphinxhtml;
make sphinxhtml;
make sphinxpdf;
make sphinxpdf;
make C++ApiDocs PythonApiDocs;
make C++ApiDocs PythonApiDocs;
...
...
openmmapi/include/openmm/Integrator.h
View file @
7590374b
...
@@ -87,13 +87,13 @@ public:
...
@@ -87,13 +87,13 @@ public:
virtual
void
step
(
int
steps
)
=
0
;
virtual
void
step
(
int
steps
)
=
0
;
/**
/**
* Get which force groups to use for integration. By default, all force groups
* Get which force groups to use for integration. By default, all force groups
* are included. This is interpreted as a set
i
f bit flags: the forces from group i
* are included. This is interpreted as a set
o
f bit flags: the forces from group i
* will be included if (groups&(1<<i)) != 0.
* will be included if (groups&(1<<i)) != 0.
*/
*/
virtual
int
getIntegrationForceGroups
()
const
;
virtual
int
getIntegrationForceGroups
()
const
;
/**
/**
* Set which force groups to use for integration. By default, all force groups
* Set which force groups to use for integration. By default, all force groups
* are included. This is interpreted as a set
i
f bit flags: the forces from group i
* are included. This is interpreted as a set
o
f bit flags: the forces from group i
* will be included if (groups&(1<<i)) != 0.
* will be included if (groups&(1<<i)) != 0.
*/
*/
virtual
void
setIntegrationForceGroups
(
int
groups
);
virtual
void
setIntegrationForceGroups
(
int
groups
);
...
...
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