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

remove obsolete method assembleHessianApproximation

[[Imported from SVN: r7353]]
parent d5824fdb
No related branches found
No related tags found
No related merge requests found
......@@ -47,22 +47,6 @@ public:
orthonormalFrame.mv(embeddedGradient,gradient);
}
void assembleEmbeddedHessianApproximation(const TargetSpace& x,
Dune::FieldMatrix<double,embeddedSize,embeddedSize>& matrix) const
{
for (int i=0; i<embeddedSize; i++)
for (int j=0; j<embeddedSize; j++)
matrix[i][j] = (i==j);
}
void assembleHessianApproximation(const TargetSpace& x,
Dune::FieldMatrix<double,size,size>& matrix) const
{
for (int i=0; i<size; i++)
for (int j=0; j<size; j++)
matrix[i][j] = (i==j);
}
void assembleEmbeddedHessian(const TargetSpace& x,
Dune::FieldMatrix<double,embeddedSize,embeddedSize>& matrix) const
{
......
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