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

bugfix in the measuring code: 1d-ness was hardwired

[[Imported from SVN: r7366]]
parent ae768bdf
No related merge requests found
......@@ -283,7 +283,7 @@ void RiemannianTrustRegionSolver<GridType,TargetSpace>::solve()
for (int j=0; j<innerIterations_; j++) {
// read iteration from file
CorrectionType intermediateSol(grid_->size(1));
CorrectionType intermediateSol(grid_->size(gridDim));
intermediateSol = 0;
char iSolFilename[100];
sprintf(iSolFilename, "tmp/mgHistory/intermediatesolution_%04d", j);
......
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