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

rename method assembleMatrix to assembleHessianApproximation

[[Imported from SVN: r5664]]
parent e649589f
No related branches found
No related tags found
No related merge requests found
......@@ -100,10 +100,16 @@ public:
DUNE_THROW(Dune::NotImplemented, "assembleGradient");
}
void assembleMatrix(const TargetSpace& x,
Dune::FieldMatrix<double,size,size>& matrix) const
void assembleHessianApproximation(const TargetSpace& x,
Dune::FieldMatrix<double,size,size>& matrix) const
{
DUNE_THROW(Dune::NotImplemented, "assembleHessianApproximation");
}
void assembleHessian(const TargetSpace& x,
Dune::FieldMatrix<double,size,size>& matrix) const
{
DUNE_THROW(Dune::NotImplemented, "assembleMatrix");
DUNE_THROW(Dune::NotImplemented, "assembleHessian");
}
const std::vector<TargetSpace> coefficients_;
......
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