1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336
|
// $Id$
//
// Copyright (C) 2004-2006 Rational Discovery LLC
//
// @@ All Rights Reserved @@
// This file is part of the RDKit.
// The contents are covered by the terms of the BSD license
// which is included in the file license.txt, found at the root
// of the RDKit source tree.
//
#include "ForceField.h"
#include "Contrib.h"
#include <RDGeneral/Invariant.h>
#include <Numerics/Optimizer/BFGSOpt.h>
namespace ForceFieldsHelper {
class calcEnergy {
public:
calcEnergy(ForceFields::ForceField *ffHolder) : mp_ffHolder(ffHolder){};
double operator()(double *pos) const { return mp_ffHolder->calcEnergy(pos); }
private:
ForceFields::ForceField *mp_ffHolder;
};
class calcGradient {
public:
calcGradient(ForceFields::ForceField *ffHolder) : mp_ffHolder(ffHolder){};
double operator()(double *pos, double *grad) const {
double res = 1.0;
// the contribs to the gradient function use +=, so we need
// to zero the grad out before moving on:
for (unsigned int i = 0;
i < mp_ffHolder->numPoints() * mp_ffHolder->dimension(); i++) {
grad[i] = 0.0;
}
mp_ffHolder->calcGrad(pos, grad);
#if 1
// FIX: this hack reduces the gradients so that the
// minimizer is more efficient.
double maxGrad = -1e8;
double gradScale = 0.1;
for (unsigned int i = 0;
i < mp_ffHolder->numPoints() * mp_ffHolder->dimension(); i++) {
grad[i] *= gradScale;
if (grad[i] > maxGrad) maxGrad = grad[i];
}
// this is a continuation of the same hack to avoid
// some potential numeric instabilities:
if (maxGrad > 10.0) {
while (maxGrad * gradScale > 10.0) {
gradScale *= .5;
}
for (unsigned int i = 0;
i < mp_ffHolder->numPoints() * mp_ffHolder->dimension(); i++) {
grad[i] *= gradScale;
}
}
res = gradScale;
#endif
return res;
}
private:
ForceFields::ForceField *mp_ffHolder;
};
}
namespace ForceFields {
ForceField::~ForceField() {
d_numPoints = 0;
d_positions.clear();
d_contribs.clear();
delete[] dp_distMat;
dp_distMat = nullptr;
}
ForceField::ForceField(const ForceField &other)
: d_dimension(other.d_dimension),
df_init(false),
d_numPoints(other.d_numPoints),
dp_distMat(nullptr) {
d_contribs.clear();
BOOST_FOREACH (const ContribPtr &contrib, other.d_contribs) {
ForceFieldContrib *ncontrib = contrib->copy();
ncontrib->dp_forceField = this;
d_contribs.push_back(ContribPtr(ncontrib));
}
};
double ForceField::distance(unsigned int i, unsigned int j, double *pos) {
PRECONDITION(df_init, "not initialized");
URANGE_CHECK(i, d_numPoints);
URANGE_CHECK(j, d_numPoints);
if (j < i) {
int tmp = j;
j = i;
i = tmp;
}
unsigned int idx = i + j * (j + 1) / 2;
CHECK_INVARIANT(idx < d_matSize, "Bad index");
double &res = dp_distMat[idx];
if (res < 0.0) {
// we need to calculate this distance:
if (!pos) {
res = 0.0;
for (unsigned int idx = 0; idx < d_dimension; ++idx) {
double tmp =
(*(this->positions()[i]))[idx] - (*(this->positions()[j]))[idx];
res += tmp * tmp;
}
} else {
res = 0.0;
#if 0
for (unsigned int idx = 0; idx < d_dimension; idx++) {
double tmp = pos[d_dimension * i + idx] - pos[d_dimension * j + idx];
res += tmp * tmp;
}
#else
double *pi = &(pos[d_dimension * i]), *pj = &(pos[d_dimension * j]);
for (unsigned int idx = 0; idx < d_dimension; ++idx, ++pi, ++pj) {
double tmp = *pi - *pj;
res += tmp * tmp;
}
#endif
}
res = sqrt(res);
}
return res;
}
double ForceField::distance(unsigned int i, unsigned int j, double *pos) const {
PRECONDITION(df_init, "not initialized");
URANGE_CHECK(i, d_numPoints);
URANGE_CHECK(j, d_numPoints);
if (j < i) {
int tmp = j;
j = i;
i = tmp;
}
double res;
if (!pos) {
res = 0.0;
for (unsigned int idx = 0; idx < d_dimension; ++idx) {
double tmp =
(*(this->positions()[i]))[idx] - (*(this->positions()[j]))[idx];
res += tmp * tmp;
}
} else {
res = 0.0;
#if 0
for (unsigned int idx = 0; idx < d_dimension; idx++) {
double tmp = pos[d_dimension * i + idx] - pos[d_dimension * j + idx];
res += tmp * tmp;
}
#else
double *pi = &(pos[d_dimension * i]), *pj = &(pos[d_dimension * j]);
for (unsigned int idx = 0; idx < d_dimension; ++idx, ++pi, ++pj) {
double tmp = *pi - *pj;
res += tmp * tmp;
}
#endif
}
res = sqrt(res);
return res;
}
void ForceField::initialize() {
// clean up if we have used this already:
df_init = false;
delete[] dp_distMat;
dp_distMat = nullptr;
d_numPoints = d_positions.size();
d_matSize = d_numPoints * (d_numPoints + 1) / 2;
dp_distMat = new double[d_matSize];
this->initDistanceMatrix();
df_init = true;
}
int ForceField::minimize(unsigned int maxIts, double forceTol,
double energyTol) {
return minimize(0, nullptr, maxIts, forceTol, energyTol);
}
int ForceField::minimize(unsigned int snapshotFreq,
RDKit::SnapshotVect *snapshotVect, unsigned int maxIts,
double forceTol, double energyTol) {
PRECONDITION(df_init, "not initialized");
PRECONDITION(static_cast<unsigned int>(d_numPoints) == d_positions.size(),
"size mismatch");
if (d_contribs.empty()) return 0;
unsigned int numIters = 0;
unsigned int dim = this->d_numPoints * d_dimension;
double finalForce;
auto *points = new double[dim];
this->scatter(points);
ForceFieldsHelper::calcEnergy eCalc(this);
ForceFieldsHelper::calcGradient gCalc(this);
int res =
BFGSOpt::minimize(dim, points, forceTol, numIters, finalForce, eCalc,
gCalc, snapshotFreq, snapshotVect, energyTol, maxIts);
this->gather(points);
delete[] points;
return res;
}
double ForceField::calcEnergy(std::vector<double> *contribs) const {
PRECONDITION(df_init, "not initialized");
double res = 0.0;
if (d_contribs.empty()) return res;
if (contribs) {
contribs->clear();
contribs->reserve(d_contribs.size());
}
unsigned int N = d_positions.size();
auto *pos = new double[d_dimension * N];
this->scatter(pos);
// now loop over the contribs
for (const auto &d_contrib : d_contribs) {
double e = d_contrib->getEnergy(pos);
res += e;
if (contribs) {
contribs->push_back(e);
}
}
delete[] pos;
return res;
}
double ForceField::calcEnergy(double *pos) {
PRECONDITION(df_init, "not initialized");
PRECONDITION(pos, "bad position vector");
double res = 0.0;
this->initDistanceMatrix();
if (d_contribs.empty()) return res;
// now loop over the contribs
for (ContribPtrVect::const_iterator contrib = d_contribs.begin();
contrib != d_contribs.end(); contrib++) {
double E = (*contrib)->getEnergy(pos);
res += E;
}
return res;
}
void ForceField::calcGrad(double *grad) const {
PRECONDITION(df_init, "not initialized");
PRECONDITION(grad, "bad gradient vector");
if (d_contribs.empty()) return;
unsigned int N = d_positions.size();
auto *pos = new double[d_dimension * N];
this->scatter(pos);
for (const auto &d_contrib : d_contribs) {
d_contrib->getGrad(pos, grad);
}
// zero out gradient values for any fixed points:
for (int d_fixedPoint : d_fixedPoints) {
CHECK_INVARIANT(static_cast<unsigned int>(d_fixedPoint) < d_numPoints,
"bad fixed point index");
unsigned int idx = d_dimension * d_fixedPoint;
for (unsigned int di = 0; di < this->dimension(); ++di) {
grad[idx + di] = 0.0;
}
}
delete[] pos;
}
void ForceField::calcGrad(double *pos, double *grad) {
PRECONDITION(df_init, "not initialized");
PRECONDITION(pos, "bad position vector");
PRECONDITION(grad, "bad gradient vector");
if (d_contribs.empty()) return;
for (ContribPtrVect::const_iterator contrib = d_contribs.begin();
contrib != d_contribs.end(); contrib++) {
(*contrib)->getGrad(pos, grad);
}
for (INT_VECT::const_iterator it = d_fixedPoints.begin();
it != d_fixedPoints.end(); it++) {
CHECK_INVARIANT(static_cast<unsigned int>(*it) < d_numPoints,
"bad fixed point index");
unsigned int idx = d_dimension * (*it);
for (unsigned int di = 0; di < this->dimension(); ++di) {
grad[idx + di] = 0.0;
}
}
}
void ForceField::scatter(double *pos) const {
PRECONDITION(df_init, "not initialized");
PRECONDITION(pos, "bad position vector");
unsigned int tab = 0;
for (auto d_position : d_positions) {
for (unsigned int di = 0; di < this->dimension(); ++di) {
pos[tab + di] = (*d_position)[di]; //->x;
}
tab += this->dimension();
}
POSTCONDITION(tab == this->dimension() * d_positions.size(), "bad index");
}
void ForceField::gather(double *pos) {
PRECONDITION(df_init, "not initialized");
PRECONDITION(pos, "bad position vector");
unsigned int tab = 0;
for (auto &d_position : d_positions) {
for (unsigned int di = 0; di < this->dimension(); ++di) {
(*d_position)[di] = pos[tab + di];
}
tab += this->dimension();
}
}
void ForceField::initDistanceMatrix() {
PRECONDITION(d_numPoints, "no points");
PRECONDITION(dp_distMat, "no distance matrix");
PRECONDITION(static_cast<unsigned int>(d_numPoints * (d_numPoints + 1) / 2) <=
d_matSize,
"matrix size mismatch");
for (unsigned int i = 0; i < d_numPoints * (d_numPoints + 1) / 2; i++) {
dp_distMat[i] = -1.0;
}
}
}
|