Skip to content
Snippets Groups Projects
Commit 61184316 authored by Oliver Sander's avatar Oliver Sander Committed by sander
Browse files

Reduce the eps for the FD to 1e-10

That should be no problem now that we use a 50-decimal digits type
for the FD approximation.

[[Imported from SVN: r9876]]
parent 8c91c799
No related branches found
No related tags found
No related merge requests found
...@@ -326,7 +326,7 @@ assembleGradientAndHessian(const Entity& element, ...@@ -326,7 +326,7 @@ assembleGradientAndHessian(const Entity& element,
localHessian.setSize(nDofs, nDofs); localHessian.setSize(nDofs, nDofs);
localHessian = 0; localHessian = 0;
const field_type eps = 1e-4; const field_type eps = 1e-10;
std::vector<ATargetSpace> localASolution(localSolution.size()); std::vector<ATargetSpace> localASolution(localSolution.size());
std::vector<typename ATargetSpace::CoordinateType> aRaw(localSolution.size()); std::vector<typename ATargetSpace::CoordinateType> aRaw(localSolution.size());
......
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