Skip to content
Snippets Groups Projects
Commit 2f73f105 authored by Oliver Sander's avatar Oliver Sander Committed by sander
Browse files

Use proper template parameter names throughout

[[Imported from SVN: r9966]]
parent 0ae63729
No related branches found
No related tags found
No related merge requests found
......@@ -22,9 +22,9 @@
#include <dune/solvers/norms/twonorm.hh>
#include <dune/solvers/norms/h1seminorm.hh>
template <class GridType, class VectorType>
void TrustRegionSolver<GridType,VectorType>::
setup(const GridType& grid,
template <class BasisType, class VectorType>
void TrustRegionSolver<BasisType,VectorType>::
setup(const typename BasisType::GridView::Grid& grid,
const FEAssembler<BasisType, VectorType>* assembler,
const SolutionType& x,
const Dune::BitSetVector<blocksize>& dirichletNodes,
......@@ -186,8 +186,8 @@ setup(const GridType& grid,
}
template <class GridType, class VectorType>
void TrustRegionSolver<GridType,VectorType>::solve()
template <class BasisType, class VectorType>
void TrustRegionSolver<BasisType,VectorType>::solve()
{
MonotoneMGStep<MatrixType,CorrectionType>* mgStep = NULL;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment