From: heister Date: Thu, 6 Jun 2013 21:46:13 +0000 (+0000) Subject: add typedefs for tests X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=7d9f81609f304cfbb1bb195905e1ef72e4889e30;p=dealii-svn.git add typedefs for tests git-svn-id: https://svn.dealii.org/branches/branch_unify_linear_algebra@29788 0785d39b-7218-0410-832d-ea1e28bc413d --- diff --git a/tests/gla/gla.h b/tests/gla/gla.h index 512eaf8d03..d071575836 100644 --- a/tests/gla/gla.h +++ b/tests/gla/gla.h @@ -9,6 +9,7 @@ class LA_PETSc public: typedef LinearAlgebraPETSc::MPI::Vector Vector; typedef LinearAlgebraPETSc::MPI::SparseMatrix SparseMatrix; + typedef LinearAlgebraPETSc::MPI::BlockVector BlockVector; typedef LinearAlgebraPETSc::MPI::BlockSparseMatrix BlockSparseMatrix; }; }; @@ -21,6 +22,7 @@ class LA_Trilinos public: typedef LinearAlgebraTrilinos::MPI::Vector Vector; typedef LinearAlgebraTrilinos::MPI::SparseMatrix SparseMatrix; + typedef LinearAlgebraTrilinos::MPI::BlockVector BlockVector; typedef LinearAlgebraTrilinos::MPI::BlockSparseMatrix BlockSparseMatrix; }; };