fix typo in evalSolverSugarFunction()

This commit is contained in:
Naumov Maks 2014-02-08 10:40:51 +00:00
parent ff8d81762d
commit 9e71ecbeec

View File

@ -120,7 +120,7 @@ void evalSolverSugarFunction( const POLYNOMIAL& pols, const ROOTS& roots, const
bool found = false; bool found = false;
for( size_t j=0; j<calc_realRoots.size()&& !found; ++j ) for( size_t j=0; j<calc_realRoots.size()&& !found; ++j )
{ {
if( internal::isApprox( calc_realRoots[i], real_roots[j] ), psPrec ){ if( internal::isApprox( calc_realRoots[i], real_roots[j], psPrec ) ){
found = true; } found = true; }
} }
VERIFY( found ); VERIFY( found );