From ef33691092bd120ee1ca8ca83655d49aacf94d8e Mon Sep 17 00:00:00 2001 From: Wolfgang Bangerth Date: Sun, 29 Nov 2020 22:17:45 -0700 Subject: [PATCH] Adjust test. --- tests/lac/is_block_matrix.cc | 46 ++++++++++++++++++++++++++---------- 1 file changed, 33 insertions(+), 13 deletions(-) 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; } -- 2.39.5