Skip to content
Snippets Groups Projects
Commit 9a996678 authored by Christian Engwer's avatar Christian Engwer
Browse files

hide implementations from doxygen, doxygen fails to parse these

[[Imported from SVN: r1121]]
parent a1b0319a
No related branches found
No related tags found
No related merge requests found
......@@ -538,6 +538,8 @@ namespace Dune
initializer.createMatrix();
}
#ifndef DOXYGEN
template<class B, class TA, int n, int m>
bool SuperLUMatrix<BCRSMatrix<FieldMatrix<B,n,m>,TA> >::operator==(const BCRSMatrix<FieldMatrix<B,n,m>,TA>& mat) const
{
......@@ -557,12 +559,16 @@ namespace Dune
return true;
}
#endif // DOYXGEN
template<class B, class TA, int n, int m>
bool operator==(SuperLUMatrix<BCRSMatrix<FieldMatrix<B,n,m>,TA> >& sla, BCRSMatrix<FieldMatrix<B,n,m>,TA>& a)
{
return a==sla;
}
#ifndef DOXYGEN
template<class B, class TA, int n, int m>
SuperLUMatrix<BCRSMatrix<FieldMatrix<B,n,m>,TA> >::SuperLUMatrix()
: N_(0), M_(0), Nnz_(0), values(0), rowindex(0), colstart(0)
......@@ -670,6 +676,8 @@ namespace Dune
N_=M_=Nnz_=0;
}
#endif // DOXYGEN
}
#endif
#endif
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