Skip to content
Snippets Groups Projects
Commit 713cb6aa authored by Jonathan Youett's avatar Jonathan Youett
Browse files

Use base class constructors to add construction from given maxtrix

parent 384a6174
No related branches found
No related tags found
No related merge requests found
...@@ -41,11 +41,9 @@ class TruncatedCompressedMGTransfer : ...@@ -41,11 +41,9 @@ class TruncatedCompressedMGTransfer :
public: public:
typedef typename Base::TransferOperatorType TransferOperatorType; typedef typename Base::TransferOperatorType TransferOperatorType;
/** \brief Default constructor */ /** \brief Default constructor */
TruncatedCompressedMGTransfer() using Base::Base;
{}
/** \brief Restrict level fL of f and store the result in level cL of t */ /** \brief Restrict level fL of f and store the result in level cL of t */
void restrict(const VectorType& f, VectorType &t) const; void restrict(const VectorType& f, VectorType &t) const;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment