From aa1b48c7ddb04fdaa38cefcc6a540f7ff0cdd6f6 Mon Sep 17 00:00:00 2001 From: aml Date: Fri, 6 May 2016 14:57:20 +0300 Subject: [PATCH] 0027475: Incomplete direction for Powell method in math_GlobOptMin Directions are changed to be valid orthogonal set. --- src/math/math_GlobOptMin.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/math/math_GlobOptMin.cxx b/src/math/math_GlobOptMin.cxx index abe10831c9..8008ab33da 100644 --- a/src/math/math_GlobOptMin.cxx +++ b/src/math/math_GlobOptMin.cxx @@ -313,7 +313,7 @@ Standard_Boolean math_GlobOptMin::computeLocalExtremum(const math_Vector& thePnt { math_Matrix m(1, myN, 1, myN, 0.0); for(i = 1; i <= myN; i++) - m(1, 1) = 1.0; + m(i, i) = 1.0; math_Powell powell(*myFunc, 1e-10); powell.Perform(*myFunc, thePnt, m);