"platforms/opencl/vscode:/vscode.git/clone" did not exist on "8ac164930170af8ff7460e448abb721b3ba526e7"
Commit d9e73e43 authored by Christopher Bruns's avatar Christopher Bruns
Browse files

Hack particular gccxml location for one particular nightly build machine.

Incorporate Normal Mode Langevin openmm code from Chris Sweet as a plugin.  (compiles on windows, but no actual testing done)
parent cfcebe26
#include "OpenMM.h"
#include <vector>
#include <string>
using namespace OpenMM;
using namespace std;
void testLoadNMLPlugin()
{
Platform::loadPluginsFromDirectory(Platform::getDefaultPluginsDirectory());
vector<string> kernelName;
kernelName.push_back("IntegrateNMLStepKernel");
// Was NormalModeLangevin plugin loaded?
const Platform& platform = Platform::findPlatform(kernelName); // throws if no platform with kernel
}
int main()
{
testLoadNMLPlugin();
return 0;
}
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment