EgtNumKernel 1.5a5 : aggiunte versioni a 64bit.

This commit is contained in:
Dario Sassi
2014-01-17 17:23:01 +00:00
parent b6af673186
commit fd4ac6d055
7 changed files with 106 additions and 8 deletions
+1 -1
View File
@@ -203,7 +203,7 @@ Polynomial::FindRoots( DBLVECTOR& vdRoot)
int
FilterMultipleAndOutOfRangeRoots( DBLVECTOR& vRoots, double dMin, double dMax, double dEps)
{
int nZ = vRoots.size() ;
int nZ = (int) vRoots.size() ;
for ( int i = 0 ; i < nZ ;) {
if ( vRoots[i] < dMin || vRoots[i] > dMax ||
( i >= 1 && fabs( vRoots[i]- vRoots[i-1]) < dEps)) {