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(
}
template<class GridView, class RHSFunction>
template<class GridView, class Matrix, class Vector, class RHSFunction>
void assemblePoissonProblemPQ1(
const GridView& gridView,
Dune::BCRSMatrix<double>& matrix,
Dune::BlockVector<double>& rhs,
Matrix& matrix,
Vector& rhs,
const RHSFunction& rhsFunction)
{
static const int dim = GridView::dimension;
const auto& indexSet = gridView.indexSet();
std::size_t size = indexSet.size(dim);
using Matrix = Dune::BCRSMatrix<double>;
using ElementMatrix = Dune::Matrix<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