Skip to content
Snippets Groups Projects
Commit 6b70a11f authored by Lisa Julia Nebel's avatar Lisa Julia Nebel
Browse files

Make the MatrixType public in the MixedGFEAssembler

The GeodesicFEAssemblerWrapper needs to access the MatrixType.
parent 63a1cf3d
No related branches found
No related tags found
No related merge requests found
This commit is part of merge request !48. Comments created here will be created in the context of that merge request.
......@@ -31,11 +31,11 @@ class MixedGFEAssembler {
typedef Dune::BCRSMatrix<Dune::FieldMatrix<double, blocksize1, blocksize0> > MatrixBlock10;
typedef Dune::BCRSMatrix<Dune::FieldMatrix<double, blocksize1, blocksize1> > MatrixBlock11;
typedef Dune::MultiTypeBlockMatrix<Dune::MultiTypeBlockVector<MatrixBlock00,MatrixBlock01>,
Dune::MultiTypeBlockVector<MatrixBlock10,MatrixBlock11> > MatrixType;
protected:
public:
typedef Dune::MultiTypeBlockMatrix<Dune::MultiTypeBlockVector<MatrixBlock00,MatrixBlock01>,
Dune::MultiTypeBlockVector<MatrixBlock10,MatrixBlock11> > MatrixType;
const Basis basis_;
MixedLocalGeodesicFEStiffness<Basis,
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment