diff --git a/src/NCollection/NCollection_CellFilter.hxx b/src/NCollection/NCollection_CellFilter.hxx index 9c6dfac4d1..fdc923cbcb 100644 --- a/src/NCollection/NCollection_CellFilter.hxx +++ b/src/NCollection/NCollection_CellFilter.hxx @@ -291,8 +291,8 @@ protected: //! Assignment operator: ensure that list is not deleted twice void operator = (const Cell& theOther) { - Standard_Integer myDim = Standard_Integer(theOther.index.Size()); - for(Standard_Integer anIdx = 0; anIdx < myDim; anIdx++) + Standard_Integer aDim = Standard_Integer(theOther.index.Size()); + for(Standard_Integer anIdx = 0; anIdx < aDim; anIdx++) index[anIdx] = theOther.index[anIdx]; Objects = theOther.Objects; @@ -311,8 +311,8 @@ protected: //! Compare cell with other one Standard_Boolean IsEqual (const Cell& theOther) const { - Standard_Integer myDim = Standard_Integer(theOther.index.Size()); - for (int i=0; i < myDim; i++) + Standard_Integer aDim = Standard_Integer(theOther.index.Size()); + for (int i=0; i < aDim; i++) if ( index[i] != theOther.index[i] ) return Standard_False; return Standard_True; } @@ -321,10 +321,10 @@ protected: Standard_Integer HashCode (const Standard_Integer theUpper) const { // number of bits per each dimension in the hash code - Standard_Integer myDim = Standard_Integer(index.Size()); - const Standard_Size aShiftBits = (BITS(long)-1) / myDim; + Standard_Integer aDim = Standard_Integer(index.Size()); + const Standard_Size aShiftBits = (BITS(long)-1) / aDim; long aCode=0; - for (int i=0; i < myDim; i++) + for (int i=0; i < aDim; i++) aCode = ( aCode << aShiftBits ) ^ index[i]; return (unsigned)aCode % theUpper; } diff --git a/src/math/math_GlobOptMin.cxx b/src/math/math_GlobOptMin.cxx index 7261b6351d..99e968d3d2 100644 --- a/src/math/math_GlobOptMin.cxx +++ b/src/math/math_GlobOptMin.cxx @@ -266,11 +266,11 @@ Standard_Boolean math_GlobOptMin::computeLocalExtremum(const math_Vector& thePnt //Newton method if (dynamic_cast(myFunc)) { - math_MultipleVarFunctionWithHessian* myTmp = + math_MultipleVarFunctionWithHessian* aTmp = dynamic_cast (myFunc); - math_NewtonMinimum newtonMinimum(*myTmp); + math_NewtonMinimum newtonMinimum(*aTmp); newtonMinimum.SetBoundary(myGlobA, myGlobB); - newtonMinimum.Perform(*myTmp, thePnt); + newtonMinimum.Perform(*aTmp, thePnt); if (newtonMinimum.IsDone()) { @@ -283,10 +283,10 @@ Standard_Boolean math_GlobOptMin::computeLocalExtremum(const math_Vector& thePnt // BFGS method used. if (dynamic_cast(myFunc)) { - math_MultipleVarFunctionWithGradient* myTmp = + math_MultipleVarFunctionWithGradient* aTmp = dynamic_cast (myFunc); - math_BFGS bfgs(myTmp->NbVariables()); - bfgs.Perform(*myTmp, thePnt); + math_BFGS bfgs(aTmp->NbVariables()); + bfgs.Perform(*aTmp, thePnt); if (bfgs.IsDone()) { bfgs.Location(theOutPnt);