From: Jonathan Robey Date: Tue, 6 Aug 2019 23:01:50 +0000 (-0600) Subject: Correct indentation X-Git-Tag: v9.2.0-rc1~1286^2~3 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=f698205fc9cd6e3c1e9587388832f5b0e31a9ad9;p=dealii.git Correct indentation --- 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;