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

0023131: Unhandled case in void CSLib::Normal(...)

Case of extrema failure is handled together with case of no solutions found.
Local variable Vsuiv is initialized by zero to avoid compiler warning.
This commit is contained in:
abv 2012-05-04 12:18:10 +04:00
parent 33bddc1caf
commit 870f239379

View File

@ -303,7 +303,7 @@ void CSLib::Normal(const Standard_Integer MaxOrder,
sup = M_PI; sup = M_PI;
} }
Standard_Boolean CS=0; Standard_Boolean CS=0;
Standard_Real Vprec=0,Vsuiv; Standard_Real Vprec = 0., Vsuiv = 0.;
//Creation of the polynom //Creation of the polynom
CSLib_NormalPolyDef Poly(Order,Ratio); CSLib_NormalPolyDef Poly(Order,Ratio);
//Find zeros of SAPS //Find zeros of SAPS
@ -311,9 +311,7 @@ void CSLib::Normal(const Standard_Integer MaxOrder,
Precision::Confusion(), Precision::Confusion(),
Precision::Confusion()); Precision::Confusion());
//If there are zeros //If there are zeros
if(FindRoots.IsDone()) if (FindRoots.IsDone() && FindRoots.NbSolutions() > 0)
{
if(FindRoots.NbSolutions()>0)
{ {
//ranking by increasing order of roots of SAPS in Sol0 //ranking by increasing order of roots of SAPS in Sol0
@ -357,14 +355,14 @@ void CSLib::Normal(const Standard_Integer MaxOrder,
} }
} }
} }
else else
{ {
//SAPS has no root, so forcedly do not change the sign //SAPS has no root, so forcedly do not change the sign
CS=Standard_False; CS=Standard_False;
Poly.Value(inf,Vsuiv); Poly.Value(inf,Vsuiv);
} }
//fin if(MFR.NbSolutions()>0) //fin if(MFR.IsDone() && MFR.NbSolutions()>0)
}//fin if(MFR>IsDone())
if(CS) if(CS)
//Polynom changes the sign //Polynom changes the sign
SP=0; SP=0;