Skip to content
Snippets Groups Projects
Commit b14e3a9d authored by Oliver Sander's avatar Oliver Sander
Browse files

Remove unused forward declaration

parent 9a64dc8c
No related branches found
No related tags found
1 merge request!259Implement MatrixMarket support for BCRSMatrix<double> etc
......@@ -22,11 +22,6 @@ template<class M>
void fillValues(int N, M& mat, int overlapStart, int overlapEnd, int start, int end);
template<class M, class G, class L, class C, int n>
M setupAnisotropic2d(int N, Dune::ParallelIndexSet<G,L,n>& indices,
const Dune::CollectiveCommunication<C>& p, int *nout, typename M::block_type::value_type eps=1.0);
template<class M, class G, class L, int s>
void setupPattern(int N, M& mat, Dune::ParallelIndexSet<G,L,s>& indices, int overlapStart, int overlapEnd,
int start, int end)
......@@ -154,7 +149,7 @@ void setBoundary(V& lhs, V& rhs, const G& N)
}
template<class M, class G, class L, class C, int s>
M setupAnisotropic2d(int N, Dune::ParallelIndexSet<G,L,s>& indices, const Dune::CollectiveCommunication<C>& p, int *nout, typename M::block_type::value_type eps)
M setupAnisotropic2d(int N, Dune::ParallelIndexSet<G,L,s>& indices, const Dune::CollectiveCommunication<C>& p, int *nout, typename M::block_type::value_type eps=1.0)
{
int procs=p.size(), rank=p.rank();
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment