From f698205fc9cd6e3c1e9587388832f5b0e31a9ad9 Mon Sep 17 00:00:00 2001 From: Jonathan Robey Date: Tue, 6 Aug 2019 17:01:50 -0600 Subject: [PATCH] Correct indentation --- tests/lac/block_matrices_05.cc | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/tests/lac/block_matrices_05.cc b/tests/lac/block_matrices_05.cc index 8a3a2f1c7d..d85fd20551 100644 --- a/tests/lac/block_matrices_05.cc +++ b/tests/lac/block_matrices_05.cc @@ -53,15 +53,16 @@ main() for (unsigned int i = 0; i < bsm.m(); ++i) for (unsigned int j = 0; j < bsm.n(); ++j) - { - bsm.add(i, j, 1.0); - } + { + bsm.add(i, j, 1.0); + } - const double accuracy = 1e-12; + const double accuracy = 1e-12; const double correct_frob_norm = 10.0; - const double frob_norm = bsm.frobenius_norm(); + const double frob_norm = bsm.frobenius_norm(); - Assert(std::fabs(frob_norm - correct_frob_norm) < accuracy, ExcInternalError()); + Assert(std::fabs(frob_norm - correct_frob_norm) < accuracy, + ExcInternalError()); deallog << "OK" << std::endl; deallog << std::flush; -- 2.39.5