Files
eigen/unsupported/Eigen/src/NonLinear/dogleg.h

158 lines
3.4 KiB
C
Raw Normal View History

template <typename Scalar>
void ei_dogleg(int n, const Scalar *r__, int /* lr*/ ,
const Scalar *diag, const Scalar *qtb, Scalar delta, Scalar *x,
Scalar *wa1, Scalar *wa2)
{
/* Local variables */
2009-08-22 07:27:17 +02:00
int i, j, k, l, jj, jp1;
Scalar sum, temp, alpha, bnorm;
Scalar gnorm, qnorm, epsmch;
Scalar sgnorm;
/* Parameter adjustments */
--wa2;
--wa1;
--x;
--qtb;
--diag;
--r__;
/* Function Body */
/* epsmch is the machine precision. */
epsmch = epsilon<Scalar>();
/* first, calculate the gauss-newton direction. */
jj = n * (n + 1) / 2 + 1;
2009-08-22 07:27:17 +02:00
for (k = 1; k <= n; ++k) {
j = n - k + 1;
jp1 = j + 1;
jj -= k;
l = jj + 1;
sum = 0.;
if (n < jp1) {
goto L20;
}
2009-08-22 07:27:17 +02:00
for (i = jp1; i <= n; ++i) {
sum += r__[l] * x[i];
++l;
/* L10: */
}
L20:
temp = r__[jj];
if (temp != 0.) {
goto L40;
}
l = j;
2009-08-22 07:27:17 +02:00
for (i = 1; i <= j; ++i) {
/* Computing MAX */
2009-08-22 07:27:17 +02:00
temp = std::max(temp,ei_abs(r__[l]));
l = l + n - i;
/* L30: */
}
temp = epsmch * temp;
if (temp == 0.) {
temp = epsmch;
}
L40:
x[j] = (qtb[j] - sum) / temp;
/* L50: */
}
/* test whether the gauss-newton direction is acceptable. */
2009-08-22 07:27:17 +02:00
for (j = 1; j <= n; ++j) {
wa1[j] = 0.;
wa2[j] = diag[j] * x[j];
/* L60: */
}
qnorm = Map< Matrix< Scalar, Dynamic, 1 > >(&wa2[1],n).stableNorm();
if (qnorm <= delta) {
/* goto L140; */
return;
}
/* the gauss-newton direction is not acceptable. */
/* next, calculate the scaled gradient direction. */
l = 1;
2009-08-22 07:27:17 +02:00
for (j = 1; j <= n; ++j) {
temp = qtb[j];
2009-08-22 07:27:17 +02:00
for (i = j; i <= n; ++i) {
wa1[i] += r__[l] * temp;
++l;
/* L70: */
}
wa1[j] /= diag[j];
/* L80: */
}
/* calculate the norm of the scaled gradient and test for */
/* the special case in which the scaled gradient is zero. */
gnorm = Map< Matrix< Scalar, Dynamic, 1 > >(&wa1[1],n).stableNorm();
sgnorm = 0.;
alpha = delta / qnorm;
if (gnorm == 0.) {
goto L120;
}
/* calculate the point along the scaled gradient */
/* at which the quadratic is minimized. */
2009-08-22 07:27:17 +02:00
for (j = 1; j <= n; ++j) {
wa1[j] = wa1[j] / gnorm / diag[j];
/* L90: */
}
l = 1;
2009-08-22 07:27:17 +02:00
for (j = 1; j <= n; ++j) {
sum = 0.;
2009-08-22 07:27:17 +02:00
for (i = j; i <= n; ++i) {
sum += r__[l] * wa1[i];
++l;
/* L100: */
}
wa2[j] = sum;
/* L110: */
}
temp = Map< Matrix< Scalar, Dynamic, 1 > >(&wa2[1],n).stableNorm();
sgnorm = gnorm / temp / temp;
/* test whether the scaled gradient direction is acceptable. */
alpha = 0.;
if (sgnorm >= delta) {
goto L120;
}
/* the scaled gradient direction is not acceptable. */
/* finally, calculate the point along the dogleg */
/* at which the quadratic is minimized. */
bnorm = Map< Matrix< Scalar, Dynamic, 1 > >(&qtb[1],n).stableNorm();
temp = bnorm / gnorm * (bnorm / qnorm) * (sgnorm / delta);
/* Computing 2nd power */
2009-08-22 07:27:17 +02:00
temp = temp - delta / qnorm * ei_abs2(sgnorm / delta) + ei_sqrt(ei_abs2(temp - delta / qnorm) + (1.-ei_abs2(delta / qnorm)) * (1.-ei_abs2(sgnorm / delta)));
/* Computing 2nd power */
2009-08-22 07:27:17 +02:00
alpha = delta / qnorm * (1. - ei_abs2(sgnorm / delta)) / temp;
L120:
/* form appropriate convex combination of the gauss-newton */
/* direction and the scaled gradient direction. */
temp = (1. - alpha) * std::min(sgnorm,delta);
2009-08-22 07:27:17 +02:00
for (j = 1; j <= n; ++j) {
x[j] = temp * wa1[j] + alpha * x[j];
/* L130: */
}
/* L140: */
return;
/* last card of subroutine dogleg. */
} /* dogleg_ */