Revision | a1b2653d26eac64fb1e1f812a662e3669f5e4e1a (tree) |
---|---|
Time | 2012-11-08 12:24:36 |
Author | Katsuhiko Nishimra <ktns.87@gmai...> |
Commiter | Katsuhiko Nishimra |
Fix wrong equation number. #28764
git-svn-id: https://svn.sourceforge.jp/svnroot/molds/trunk@1110 1136aad2-a195-0410-b898-f5ea1d11b9d8
@@ -302,7 +302,7 @@ void BFGS::CalcRFOStep(double* vectorStep, | ||
302 | 302 | for(int i=0;i<dimension;i++){ |
303 | 303 | // Scale last element of eigenvector to 1/alpha because |
304 | 304 | // [vectorStep, 1] is the eigenvector of augmented Hessian. |
305 | - // See Eq. (4) in [EPW_1997]. | |
305 | + // See Eq. (7) in [EPW_1997]. | |
306 | 306 | vectorStep[i] = matrixAugmentedHessian[0][i] / matrixAugmentedHessian[0][dimension] / alpha; |
307 | 307 | if(isnan(vectorStep[i])){ |
308 | 308 | throw MolDSException(boost::format(this->errorMessageNaNInRFOStep) |