From 98985dd5d09fb791a888b3bf2afaa78d548ad12c Mon Sep 17 00:00:00 2001 From: Yixuan Qiu Date: Tue, 1 Aug 2023 17:53:06 +0800 Subject: [PATCH] increase number of iterations --- test/GenEigsRealShift.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/GenEigsRealShift.cpp b/test/GenEigsRealShift.cpp index 858f92b..0165704 100644 --- a/test/GenEigsRealShift.cpp +++ b/test/GenEigsRealShift.cpp @@ -40,8 +40,8 @@ template void run_test(const MatType& mat, Solver& eigs, SortRule selection, bool allow_fail = false) { eigs.init(); - // maxit = 200 to reduce running time for failed cases - int nconv = eigs.compute(selection, 200); + // maxit = 300 to reduce running time for failed cases + int nconv = eigs.compute(selection, 300); int niter = eigs.num_iterations(); int nops = eigs.num_operations();