From: Daniel Arndt Date: Tue, 7 Jul 2020 20:16:06 +0000 (-0400) Subject: Fix trilinos/68 X-Git-Tag: v9.3.0-rc1~1320^2 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=refs%2Fpull%2F10668%2Fhead;p=dealii.git Fix trilinos/68 --- diff --git a/tests/trilinos/68.cc b/tests/trilinos/68.cc index 53e6ccf048..606477ca69 100644 --- a/tests/trilinos/68.cc +++ b/tests/trilinos/68.cc @@ -83,6 +83,8 @@ test(TrilinosWrappers::SparseMatrix &m) m.clear_row(N / 2, rnd); + Assert(m.el(N / 2, N / 2) == rnd, ExcInternalError()); + deallog << m.frobenius_norm() << ' ' << std::sqrt(norm_sqr) << std::endl; deallog << m.n_nonzero_elements() << ' ' << nnz << std::endl; diff --git a/tests/trilinos/68.output b/tests/trilinos/68.output index cdb4bb75ce..bf77d2a368 100644 --- a/tests/trilinos/68.output +++ b/tests/trilinos/68.output @@ -1,6 +1,6 @@ DEAL::7.15267e+09 7.15267e+09 DEAL::32 32 -DEAL::6.85012e+09 6.96869e+09 +DEAL::6.96869e+09 6.96869e+09 DEAL::32 32 DEAL::OK