Unverified Commit 27bcb657 authored by Peter Eastman's avatar Peter Eastman Committed by GitHub
Browse files

updateParametersInContext() can change tabulated functions (#3307)

* updateParametersInContext() can change tabulated functions

* Fixed error in building C wrappers

* updateParametersInContext() can change tabulated functions for CustomCentroidBondForce

* CustomNonbondedForce can update tabulated functions

* CustomGBForce can update tabulated functions

* CustomManyParticleForce can update tabulated functions

* CustomHbondForce can update tabulated functions
parent d83c2724
......@@ -78,7 +78,21 @@ class WrapperGenerator:
'std::vector<double> OpenMM::NoseHooverChain::getYoshidaSuzukiWeights',
'const std::vector<int>& OpenMM::NoseHooverIntegrator::getAllThermostatedIndividualParticles',
'const std::vector<std::tuple<int, int, double> >& OpenMM::NoseHooverIntegrator::getAllThermostatedPairs',
'virtual void OpenMM::NoseHooverIntegrator::stateChanged'
'virtual void OpenMM::NoseHooverIntegrator::stateChanged',
'virtual bool OpenMM::TabulatedFunction::operator==',
'bool OpenMM::Continuous1DFunction::operator==',
'bool OpenMM::Continuous2DFunction::operator==',
'bool OpenMM::Continuous3DFunction::operator==',
'bool OpenMM::Discrete1DFunction::operator==',
'bool OpenMM::Discrete2DFunction::operator==',
'bool OpenMM::Discrete3DFunction::operator==',
'virtual bool OpenMM::TabulatedFunction::operator!=',
'bool OpenMM::Continuous1DFunction::operator!=',
'bool OpenMM::Continuous2DFunction::operator!=',
'bool OpenMM::Continuous3DFunction::operator!=',
'bool OpenMM::Discrete1DFunction::operator!=',
'bool OpenMM::Discrete2DFunction::operator!=',
'bool OpenMM::Discrete3DFunction::operator!='
]
self.hideClasses = ['Kernel', 'KernelImpl', 'KernelFactory', 'ContextImpl', 'SerializationNode', 'SerializationProxy']
self.nodeByID={}
......
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