Skip to content
Snippets Groups Projects
Commit e8066c6c authored by Oliver Sander's avatar Oliver Sander Committed by sander@PCPOOL.MI.FU-BERLIN.DE
Browse files

resize() is now called setSize()

[[Imported from SVN: r1074]]
parent 1bf3fc7d
No related branches found
No related tags found
No related merge requests found
...@@ -67,7 +67,7 @@ assembleMatrix(const BlockVector<FieldVector<double, blocksize> >& sol, ...@@ -67,7 +67,7 @@ assembleMatrix(const BlockVector<FieldVector<double, blocksize> >& sol,
= Dune::LagrangeShapeFunctions<double, double, gridDim>::general(it->geometry().type(), elementOrder); = Dune::LagrangeShapeFunctions<double, double, gridDim>::general(it->geometry().type(), elementOrder);
const int numOfBaseFct = baseSet.size(); const int numOfBaseFct = baseSet.size();
mat.resize(numOfBaseFct, numOfBaseFct); mat.setSize(numOfBaseFct, numOfBaseFct);
// Extract local solution // Extract local solution
BlockVector<FieldVector<double, blocksize> > localSolution(numOfBaseFct); BlockVector<FieldVector<double, blocksize> > localSolution(numOfBaseFct);
......
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