Skip to content
Snippets Groups Projects
Commit 33793999 authored by Adrian Burri's avatar Adrian Burri
Browse files

Removed default argument in constructor of RestProlOperator

[[Imported from SVN: r1641]]
parent 5901622f
No related branches found
No related tags found
No related merge requests found
......@@ -277,8 +277,8 @@ namespace Dune {
//***********************************************************************
/** \brief ???
* \todo Please doc me!
/** \brief I suppose it does the restriction/prolongation for FV
*
*/
template <class DiscreteFunctionType>
class RestProlOperatorFV
......@@ -289,9 +289,9 @@ namespace Dune {
typedef typename DiscreteFunctionType::DomainType DomainType;
typedef BaryCenterQuad < RangeFieldType , DomainType , 0 > BaryQuadType;
public:
//! ???
RestProlOperatorFV ( DiscreteFunctionType & df , GeometryType eltype = tetrahedron ) : df_ (df) ,
vati_ ( df_.newLocalFunction() ) , sohn_ ( df_.newLocalFunction() ) , quad_(eltype) , weight_(-1.0)
//! Constructor
RestProlOperatorFV ( DiscreteFunctionType & df , GeometryType eltype ) : df_ (df) ,
vati_ ( df_.newLocalFunction() ) , sohn_ ( df_.newLocalFunction() ) , quad_(eltype) , weight_(-1.0)
{}
template <class EntityType>
......
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