deallog << std::setprecision(2);
deallog.attach(logfile);
- deallog << IsBlockMatrix<SparseMatrix<double>>::value << ' '
- << IsBlockMatrix<SparseMatrix<float>>::value << ' '
- << IsBlockMatrix<SparseMatrixEZ<double>>::value << ' '
- << IsBlockMatrix<SparseMatrixEZ<float>>::value << std::endl;
-
- deallog << IsBlockMatrix<BlockSparseMatrix<double>>::value << ' '
- << IsBlockMatrix<BlockSparseMatrix<float>>::value << ' '
- << IsBlockMatrix<BlockSparseMatrixEZ<double>>::value << ' '
- << IsBlockMatrix<BlockSparseMatrixEZ<float>>::value << std::endl;
+ deallog
+ << internal::AffineConstraints::IsBlockMatrix<SparseMatrix<double>>::value
+ << ' '
+ << internal::AffineConstraints::IsBlockMatrix<SparseMatrix<float>>::value
+ << ' '
+ << internal::AffineConstraints::IsBlockMatrix<SparseMatrixEZ<double>>::value
+ << ' '
+ << internal::AffineConstraints::IsBlockMatrix<SparseMatrixEZ<float>>::value
+ << std::endl;
+
+ deallog << internal::AffineConstraints::IsBlockMatrix<
+ BlockSparseMatrix<double>>::value
+ << ' '
+ << internal::AffineConstraints::IsBlockMatrix<
+ BlockSparseMatrix<float>>::value
+ << ' '
+ << internal::AffineConstraints::IsBlockMatrix<
+ BlockSparseMatrixEZ<double>>::value
+ << ' '
+ << internal::AffineConstraints::IsBlockMatrix<
+ BlockSparseMatrixEZ<float>>::value
+ << std::endl;
- deallog << IsBlockSparsityPattern<SparsityPattern>::value << ' '
- << IsBlockSparsityPattern<DynamicSparsityPattern>::value << std::endl;
+ deallog << internal::AffineConstraints::IsBlockSparsityPattern<
+ SparsityPattern>::value
+ << ' '
+ << internal::AffineConstraints::IsBlockSparsityPattern<
+ DynamicSparsityPattern>::value
+ << std::endl;
- deallog << IsBlockSparsityPattern<BlockSparsityPattern>::value << ' '
- << IsBlockSparsityPattern<BlockDynamicSparsityPattern>::value
+ deallog << internal::AffineConstraints::IsBlockSparsityPattern<
+ BlockSparsityPattern>::value
+ << ' '
+ << internal::AffineConstraints::IsBlockSparsityPattern<
+ BlockDynamicSparsityPattern>::value
<< std::endl;
}