"vscode:/vscode.git/clone" did not exist on "b63c08aa7961912292cf9b83efdb071a205aedd4"
Commit 5aebb617 authored by peastman's avatar peastman
Browse files

Fixed Python API for CustomNonbondedForce.addInteractionGroup()

parent 09611266
...@@ -20,6 +20,7 @@ See https://simtk.org/home/pyopenmm for details" ...@@ -20,6 +20,7 @@ See https://simtk.org/home/pyopenmm for details"
%include "std_map.i" %include "std_map.i"
%include "std_pair.i" %include "std_pair.i"
%include "std_set.i"
%include "std_vector.i" %include "std_vector.i"
namespace std { namespace std {
%template(pairii) pair<int,int>; %template(pairii) pair<int,int>;
...@@ -32,6 +33,7 @@ namespace std { ...@@ -32,6 +33,7 @@ namespace std {
%template(mapstringstring) map<string,string>; %template(mapstringstring) map<string,string>;
%template(mapstringdouble) map<string,double>; %template(mapstringdouble) map<string,double>;
%template(mapii) map<int,int>; %template(mapii) map<int,int>;
%template(seti) set<int>;
}; };
%include "windows.i" %include "windows.i"
......
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