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
85280838
"vscode:/vscode.git/clone" did not exist on "f0d34aabcb7bdcb3a05d022e7d11b3bf4ccf8ee8"
Commit
85280838
authored
Jun 10, 2009
by
Michael Sherman
Browse files
remove debugging printfs
parent
28a5f81b
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
0 additions
and
4 deletions
+0
-4
examples/wrappers/OpenMM_CWrapper.cpp
examples/wrappers/OpenMM_CWrapper.cpp
+0
-4
No files found.
examples/wrappers/OpenMM_CWrapper.cpp
View file @
85280838
...
@@ -28,8 +28,6 @@
...
@@ -28,8 +28,6 @@
#include "OpenMM.h"
#include "OpenMM.h"
using
namespace
OpenMM
;
using
namespace
OpenMM
;
#include <iostream>
static
inline
Vec3
toVec3
(
const
OpenMM_Vec3
src
)
{
static
inline
Vec3
toVec3
(
const
OpenMM_Vec3
src
)
{
return
Vec3
(
src
[
0
],
src
[
1
],
src
[
2
]);
return
Vec3
(
src
[
0
],
src
[
1
],
src
[
2
]);
...
@@ -160,14 +158,12 @@ void openmm_string_set_(OpenMM_String*& os, const char* in, int len) {
...
@@ -160,14 +158,12 @@ void openmm_string_set_(OpenMM_String*& os, const char* in, int len) {
// OpenMM::Platform //
// OpenMM::Platform //
//////////////////////
//////////////////////
void
OpenMM_Platform_loadPluginsFromDirectory
(
const
char
*
dir
)
{
void
OpenMM_Platform_loadPluginsFromDirectory
(
const
char
*
dir
)
{
printf
(
"loadPlugins(0x%x)
\n
"
,
dir
);
OpenMM
::
Platform
::
loadPluginsFromDirectory
(
std
::
string
(
dir
));
OpenMM
::
Platform
::
loadPluginsFromDirectory
(
std
::
string
(
dir
));
}
}
const
char
*
OpenMM_Platform_getDefaultPluginsDirectory
()
{
const
char
*
OpenMM_Platform_getDefaultPluginsDirectory
()
{
static
std
::
string
dir
;
static
std
::
string
dir
;
dir
=
OpenMM
::
Platform
::
getDefaultPluginsDirectory
();
dir
=
OpenMM
::
Platform
::
getDefaultPluginsDirectory
();
const
char
*
out
=
dir
.
c_str
();
const
char
*
out
=
dir
.
c_str
();
printf
(
"def plugins dir=0x%x '%s'
\n
"
,
out
,
out
);
return
dir
.
c_str
();
return
dir
.
c_str
();
}
}
...
...
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