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

bugfix: vector totalConvRate was to short

[[Imported from SVN: r1618]]
parent 8ac555db
No related branches found
No related tags found
No related merge requests found
......@@ -477,7 +477,7 @@ int main (int argc, char *argv[]) try
// Store the history of total conv rates so we can filter out numerical
// dirt in the end.
std::vector<double> totalConvRate(maxDirichletNeumannSteps);
std::vector<double> totalConvRate(maxDirichletNeumannSteps+1);
totalConvRate[0] = 1;
......
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