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
551c5b03
"vscode:/vscode.git/clone" did not exist on "1ce5d91d9dedfdc273066fafa1a618bf05c25b85"
Commit
551c5b03
authored
Feb 21, 2017
by
Andy Simmonett
Browse files
Small fixes to LJPME testing.
parent
1945dd6c
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
8 additions
and
1 deletion
+8
-1
tests/TestDispersionPME.h
tests/TestDispersionPME.h
+8
-1
No files found.
tests/TestDispersionPME.h
View file @
551c5b03
...
...
@@ -28,6 +28,10 @@
* OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE *
* USE OR OTHER DEALINGS IN THE SOFTWARE. *
* -------------------------------------------------------------------------- */
#ifdef _MSC_VER
// Prevent Windows from defining macros that interfere with other code.
#define NOMINMAX
#endif
#include "openmm/internal/AssertionUtilities.h"
#include "openmm/Context.h"
...
...
@@ -1208,7 +1212,10 @@ void testDMFDpmeEnergiesForcesWithExclusions() {
ASSERT_EQUAL_TOL
(
refenergy
,
energy
,
1E-4
);
for
(
int
n
=
0
;
n
<
numAtoms
;
++
n
)
ASSERT_EQUAL_VEC
(
refforces
[
n
],
forces
[
n
],
5E-4
);
// The forces on atom 3 are much smaller in magnitude to the others,
// which causes problems for testing in single precision
if
(
n
!=
3
)
ASSERT_EQUAL_VEC
(
refforces
[
n
],
forces
[
n
],
5E-4
);
}
...
...
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