From 14fb84d442b7067c3ce827c1c0291c1fea1f3828 Mon Sep 17 00:00:00 2001 From: Oliver Sander <sander@igpm.rwth-aachen.de> Date: Mon, 22 Oct 2007 17:30:46 +0000 Subject: [PATCH] bugfix: use the fd Hessian matrix for error norm computation [[Imported from SVN: r1717]] --- rod3d.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rod3d.cc b/rod3d.cc index c2bb42f3..3ca6ab27 100644 --- a/rod3d.cc +++ b/rod3d.cc @@ -183,7 +183,7 @@ int main (int argc, char *argv[]) try MatrixIndexSet indices(exactSolution.size(), exactSolution.size()); rodAssembler.getNeighborsPerVertex(indices); indices.exportIdx(hessian); - rodAssembler.assembleMatrix(exactSolution, hessian); + rodAssembler.assembleMatrixFD(exactSolution, hessian); double error = std::numeric_limits<double>::max(); -- GitLab