mirror of
https://github.com/paboyle/Grid.git
synced 2025-04-04 19:25:56 +01:00
do one more iteration if not all vectors converged
This commit is contained in:
parent
ee92e08edb
commit
014704856f
@ -284,6 +284,7 @@ until convergence
|
|||||||
int iter;
|
int iter;
|
||||||
for(iter = 0; iter<MaxIter; ++iter){
|
for(iter = 0; iter<MaxIter; ++iter){
|
||||||
|
|
||||||
|
notYetConverged:
|
||||||
OrthoTime=0.;
|
OrthoTime=0.;
|
||||||
|
|
||||||
std::cout<< GridLogMessage <<" **********************"<< std::endl;
|
std::cout<< GridLogMessage <<" **********************"<< std::endl;
|
||||||
@ -419,9 +420,12 @@ until convergence
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
if ( Nconv < Nstop )
|
if ( Nconv < Nstop ) {
|
||||||
std::cout << GridLogIRL << "Nconv ("<<Nconv<<") < Nstop ("<<Nstop<<")"<<std::endl;
|
std::cout << GridLogIRL << "Nconv ("<<Nconv<<") < Nstop ("<<Nstop<<")"<<std::endl;
|
||||||
|
std::cout << GridLogIRL << "starting one more iteration"<<std::endl;
|
||||||
|
iter++;
|
||||||
|
goto notYetConverged;
|
||||||
|
}
|
||||||
eval=eval2;
|
eval=eval2;
|
||||||
|
|
||||||
//Keep only converged
|
//Keep only converged
|
||||||
|
Loading…
x
Reference in New Issue
Block a user