diff --git a/test/Arnoldi.cpp b/test/Arnoldi.cpp index a38bfc9..4533aa5 100644 --- a/test/Arnoldi.cpp +++ b/test/Arnoldi.cpp @@ -15,6 +15,7 @@ using Matrix = Eigen::MatrixXd; using Vector = Eigen::VectorXd; using Index = Eigen::Index; +// clang-format off template void run_test(FacType& fac, const MatType& A, int m) { @@ -82,6 +83,7 @@ void run_test(FacType& fac, const MatType& A, int m) REQUIRE(resid.leftCols(k3 - 1).cwiseAbs().maxCoeff() == Approx(0.0).margin(tol)); REQUIRE((resid.template rightCols<1>() - f).cwiseAbs().maxCoeff() == Approx(0.0).margin(tol)); } +// clang-format on TEST_CASE("Arnoldi factorization of general real matrix", "[Arnoldi]") {