From: Wolfgang Bangerth Date: Mon, 30 Nov 2020 05:17:45 +0000 (-0700) Subject: Adjust test. X-Git-Tag: v9.3.0-rc1~828^2 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=ef33691092bd120ee1ca8ca83655d49aacf94d8e;p=dealii.git Adjust test. --- diff --git a/tests/lac/is_block_matrix.cc b/tests/lac/is_block_matrix.cc index 097a71b155..a7752f5403 100644 --- a/tests/lac/is_block_matrix.cc +++ b/tests/lac/is_block_matrix.cc @@ -36,21 +36,41 @@ test() deallog << std::setprecision(2); deallog.attach(logfile); - deallog << IsBlockMatrix>::value << ' ' - << IsBlockMatrix>::value << ' ' - << IsBlockMatrix>::value << ' ' - << IsBlockMatrix>::value << std::endl; - - deallog << IsBlockMatrix>::value << ' ' - << IsBlockMatrix>::value << ' ' - << IsBlockMatrix>::value << ' ' - << IsBlockMatrix>::value << std::endl; + deallog + << internal::AffineConstraints::IsBlockMatrix>::value + << ' ' + << internal::AffineConstraints::IsBlockMatrix>::value + << ' ' + << internal::AffineConstraints::IsBlockMatrix>::value + << ' ' + << internal::AffineConstraints::IsBlockMatrix>::value + << std::endl; + + deallog << internal::AffineConstraints::IsBlockMatrix< + BlockSparseMatrix>::value + << ' ' + << internal::AffineConstraints::IsBlockMatrix< + BlockSparseMatrix>::value + << ' ' + << internal::AffineConstraints::IsBlockMatrix< + BlockSparseMatrixEZ>::value + << ' ' + << internal::AffineConstraints::IsBlockMatrix< + BlockSparseMatrixEZ>::value + << std::endl; - deallog << IsBlockSparsityPattern::value << ' ' - << IsBlockSparsityPattern::value << std::endl; + deallog << internal::AffineConstraints::IsBlockSparsityPattern< + SparsityPattern>::value + << ' ' + << internal::AffineConstraints::IsBlockSparsityPattern< + DynamicSparsityPattern>::value + << std::endl; - deallog << IsBlockSparsityPattern::value << ' ' - << IsBlockSparsityPattern::value + deallog << internal::AffineConstraints::IsBlockSparsityPattern< + BlockSparsityPattern>::value + << ' ' + << internal::AffineConstraints::IsBlockSparsityPattern< + BlockDynamicSparsityPattern>::value << std::endl; }