1
0
mirror of https://git.dev.opencascade.org/repos/occt.git synced 2025-04-05 18:16:23 +03:00

0027475: Incomplete direction for Powell method in math_GlobOptMin

Directions are changed to be valid orthogonal set.
This commit is contained in:
aml 2016-05-06 14:57:20 +03:00 committed by bugmaster
parent 18151f1aa1
commit aa1b48c7dd

View File

@ -313,7 +313,7 @@ Standard_Boolean math_GlobOptMin::computeLocalExtremum(const math_Vector& thePnt
{ {
math_Matrix m(1, myN, 1, myN, 0.0); math_Matrix m(1, myN, 1, myN, 0.0);
for(i = 1; i <= myN; i++) for(i = 1; i <= myN; i++)
m(1, 1) = 1.0; m(i, i) = 1.0;
math_Powell powell(*myFunc, 1e-10); math_Powell powell(*myFunc, 1e-10);
powell.Perform(*myFunc, thePnt, m); powell.Perform(*myFunc, thePnt, m);