From 471ca5f281acb593c905d592d32eb3362442c78d Mon Sep 17 00:00:00 2001 From: Peter Boyle Date: Thu, 7 Sep 2023 10:55:05 -0400 Subject: [PATCH] Power method more iterations --- Grid/algorithms/iterative/PowerMethod.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Grid/algorithms/iterative/PowerMethod.h b/Grid/algorithms/iterative/PowerMethod.h index 027ea68c..5c60993d 100644 --- a/Grid/algorithms/iterative/PowerMethod.h +++ b/Grid/algorithms/iterative/PowerMethod.h @@ -20,7 +20,7 @@ template class PowerMethod RealD evalMaxApprox = 0.0; auto src_n = src; auto tmp = src; - const int _MAX_ITER_EST_ = 50; + const int _MAX_ITER_EST_ = 100; for (int i=0;i<_MAX_ITER_EST_;i++) {