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

Method assembleMatrix has been renamed to 'assembleGradientAndHessian'

[[Imported from SVN: r9579]]
parent f8f468aa
No related branches found
No related tags found
No related merge requests found
......@@ -189,7 +189,8 @@ int main (int argc, char *argv[]) try
MatrixIndexSet indices(exactSolution.size(), exactSolution.size());
rodAssembler.getNeighborsPerVertex(indices);
indices.exportIdx(hessian);
rodAssembler.assembleMatrix(exactSolution, hessian);
BlockVector<FieldVector<double,6> > dummyRhs(x.size());
rodAssembler.assembleGradientAndHessian(exactSolution, dummyRhs, hessian);
double error = std::numeric_limits<double>::max();
......
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