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

Rename assemble() to assembleHessian()

[[Imported from SVN: r6209]]
parent 6305fde2
No related branches found
No related tags found
No related merge requests found
......@@ -126,7 +126,7 @@ assembleMatrix(const std::vector<TargetSpace>& sol,
localSolution[i] = sol[indexSet.subIndex(*it,i,gridDim)];
// setup matrix
localStiffness_->assemble(*it, localSolution);
localStiffness_->assembleHessian(*it, localSolution);
// Add element matrix to global stiffness matrix
for(int i=0; i<numOfBaseFct; i++) {
......
......@@ -102,7 +102,7 @@ public:
This default implementation used finite-difference approximations to compute the second derivatives
*/
virtual void assemble(const Entity& e,
virtual void assembleHessian(const Entity& e,
const std::vector<TargetSpace>& localSolution);
virtual RT energy (const Entity& e,
......@@ -158,7 +158,7 @@ assembleGradient(const Entity& element,
template <class GridView, class TargetSpace>
void LocalGeodesicFEStiffness<GridView,TargetSpace>::
assemble(const Entity& element,
assembleHessian(const Entity& element,
const std::vector<TargetSpace>& localSolution)
{
// 1 degree of freedom per element vertex
......@@ -338,7 +338,7 @@ public:
This default implementation used finite-difference approximations to compute the second derivatives
*/
virtual void assemble(const Entity& e,
virtual void assembleHessian(const Entity& e,
const std::vector<TargetSpace>& localSolution);
virtual RT energy (const Entity& e,
......@@ -484,7 +484,7 @@ assembleGradient(const Entity& element,
// ///////////////////////////////////////////////////////////
template <class GridType, int dim>
void LocalGeodesicFEStiffness<GridType,UnitVector<dim> >::
assemble(const Entity& element,
assembleHessian(const Entity& element,
const std::vector<TargetSpace>& localSolution)
{
// 1 degree of freedom per element vertex
......
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