EgtNumKernel 2.3g1 :

- versione x64 compilata con Clang-cl/LLVM
- modifiche varie per eliminare warning più gravi di questo compilatore.
This commit is contained in:
DarioS
2021-07-20 18:13:21 +02:00
parent 485fcd6fbc
commit eeab41af4e
4 changed files with 9 additions and 6 deletions
+2 -1
View File
@@ -1007,7 +1007,7 @@ Cpoly::fxshft( const int l2, double* zr, double* zi, bool* pbConv)
// Test for convergence unless stage 3 has failed once or this
// is the last H Polynomial
if ( ! ( bBol || ! bTest || j == 12))
if ( ! ( bBol || ! bTest || j == 12)) {
if ( cmod( tr - otr, ti - oti) < 0.5 * cmod( *zr, *zi)) {
if ( bPasd) {
// The weak convergence test has been passwed twice, start the third stage
@@ -1038,6 +1038,7 @@ Cpoly::fxshft( const int l2, double* zr, double* zi, bool* pbConv)
}
else
bPasd = false ;
}
}
// Attempt an iteration with final H polynomial from second stage