Skip to content
Snippets Groups Projects
Commit 48f8ec3a authored by Lisa Julia Nebel's avatar Lisa Julia Nebel
Browse files

Close the ADOL-C tape even if the energy calculation throws an error in mixedlocalgfeadolcstiffness

parent 9317b310
No related branches found
No related tags found
1 merge request!52Enhancements
......@@ -122,10 +122,14 @@ energy(const typename Basis::LocalView& localView,
}
using namespace Dune::TypeTree::Indices;
energy = localEnergy_->energy(localView,
try {
energy = localEnergy_->energy(localView,
localAConfiguration0,
localAConfiguration1);
} catch (Dune::Exception &e) {
trace_off();
throw e;
}
energy >>= pureEnergy;
trace_off();
......
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