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

bugfix: use std::vector instead of Dune::array to store local gfe coefficients

[[Imported from SVN: r7879]]
parent 1c09cd14
No related branches found
No related tags found
No related merge requests found
......@@ -55,7 +55,7 @@ void geodesicFEFunctionAdaptor(GridType& grid, std::vector<TargetSpace>& x)
for (; eIt!=eEndIt; ++eIt) {
// Set up a local gfe function on the father element
Dune::array<TargetSpace,dim+1> coefficients;
std::vector<TargetSpace> coefficients(dim+1);
for (int i=0; i<eIt->father()->template count<dim>(); i++)
coefficients[i] = dofMap.find(idSet.subId(*eIt->father(),i,dim))->second;
......
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