Skip to content
Snippets Groups Projects
Commit 0b44bdbc authored by Robert Klöfkorn's avatar Robert Klöfkorn
Browse files

Fixed bug in newSize of LagrangeMapper<1>.

[[Imported from SVN: r524]]
parent 981949d4
Branches
Tags
No related merge requests found
......@@ -58,12 +58,12 @@ namespace Dune {
virtual int newSize(int level) const
{
int s=0;
/*
int s=0;
for(int i=0; i<numCodims; i++)
s+= (dofCodim_[i] * indexSet_.size(20,i));
*/
return s;
return this->size(level);
}
};
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment