mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-05 18:16:23 +03:00
Coding - Resolving C6287 & C6282 warnings
Removing redundant code and incorrect operator
This commit is contained in:
parent
6cb0b9b4e3
commit
09a69618da
@ -108,7 +108,7 @@ FEmTool_ProfileMatrix::FEmTool_ProfileMatrix(const TColStd_Array1OfInteger& Firs
|
|||||||
SMA--;
|
SMA--;
|
||||||
const Standard_Real * PM = &ProfileMatrix->Value(1);
|
const Standard_Real * PM = &ProfileMatrix->Value(1);
|
||||||
PM--;
|
PM--;
|
||||||
|
IsDecomp = Standard_False;
|
||||||
for(j = 1; j <= RowNumber(); j++) {
|
for(j = 1; j <= RowNumber(); j++) {
|
||||||
DiagAddr = profile(2, j);
|
DiagAddr = profile(2, j);
|
||||||
Kj = j - profile(1, j);
|
Kj = j - profile(1, j);
|
||||||
@ -118,7 +118,7 @@ FEmTool_ProfileMatrix::FEmTool_ProfileMatrix(const TColStd_Array1OfInteger& Firs
|
|||||||
|
|
||||||
a = PM[DiagAddr] - Sum;
|
a = PM[DiagAddr] - Sum;
|
||||||
if(a < Eps) {
|
if(a < Eps) {
|
||||||
return IsDecomp = Standard_False;// Matrix is not positive defined
|
return Standard_False;// Matrix is not positive defined
|
||||||
}
|
}
|
||||||
a = Sqrt(a);
|
a = Sqrt(a);
|
||||||
SMA[DiagAddr] = a;
|
SMA[DiagAddr] = a;
|
||||||
@ -139,7 +139,8 @@ FEmTool_ProfileMatrix::FEmTool_ProfileMatrix(const TColStd_Array1OfInteger& Firs
|
|||||||
SMA[CurrAddr] = (PM[CurrAddr] - Sum)/a;
|
SMA[CurrAddr] = (PM[CurrAddr] - Sum)/a;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
return IsDecomp = Standard_True;
|
IsDecomp = Standard_True;
|
||||||
|
return IsDecomp;
|
||||||
}
|
}
|
||||||
|
|
||||||
//=======================================================================
|
//=======================================================================
|
||||||
|
@ -12619,8 +12619,7 @@ static int VManipulator (Draw_Interpretor& theDi,
|
|||||||
{
|
{
|
||||||
anAttachOptions.SetAdjustSize (Draw::ParseOnOffNoIterator (theArgsNb, theArgVec, anArgIter) ? 1 : 0);
|
anAttachOptions.SetAdjustSize (Draw::ParseOnOffNoIterator (theArgsNb, theArgVec, anArgIter) ? 1 : 0);
|
||||||
}
|
}
|
||||||
else if (anArg == "-enablemodes"
|
else if (anArg == "-enablemodes")
|
||||||
|| anArg == "-enablemodes")
|
|
||||||
{
|
{
|
||||||
anAttachOptions.SetEnableModes (Draw::ParseOnOffNoIterator (theArgsNb, theArgVec, anArgIter) ? 1 : 0);
|
anAttachOptions.SetEnableModes (Draw::ParseOnOffNoIterator (theArgsNb, theArgVec, anArgIter) ? 1 : 0);
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user