Skip to content
Snippets Groups Projects
Commit 39503c76 authored by graeser's avatar graeser
Browse files

Update

parent ff42b7bf
No related branches found
No related tags found
No related merge requests found
...@@ -129,18 +129,17 @@ void assembleLocalRHS( ...@@ -129,18 +129,17 @@ void assembleLocalRHS(
} }
template<class GridView, class RHSFunction> template<class GridView, class Matrix, class Vector, class RHSFunction>
void assemblePoissonProblemPQ1( void assemblePoissonProblemPQ1(
const GridView& gridView, const GridView& gridView,
Dune::BCRSMatrix<double>& matrix, Matrix& matrix,
Dune::BlockVector<double>& rhs, Vector& rhs,
const RHSFunction& rhsFunction) const RHSFunction& rhsFunction)
{ {
static const int dim = GridView::dimension; static const int dim = GridView::dimension;
const auto& indexSet = gridView.indexSet(); const auto& indexSet = gridView.indexSet();
std::size_t size = indexSet.size(dim); std::size_t size = indexSet.size(dim);
using Matrix = Dune::BCRSMatrix<double>;
using ElementMatrix = Dune::Matrix<double>; using ElementMatrix = Dune::Matrix<double>;
using ElementRhs = Dune::BlockVector<double>; using ElementRhs = Dune::BlockVector<double>;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment