[dune-fem] Bug in jacobianAll

Agnese, Marco m.agnese13 at imperial.ac.uk
Wed Mar 4 19:25:08 CET 2015


Ok I found the issue.
In my code I was creating the local matrix calling 

op.localMatrix(*entityIterator,*entityIterator); 

With the copyable entities is not allowed any more. The solution is to do

const Entity& entity(*entityIterator);
op.localMatrix(entity,entity);

Cheers,
Marco.



More information about the dune-fem mailing list