Skip to content
Snippets Groups Projects
Commit 44bbb0cc authored by Robert Kloefkorn's avatar Robert Kloefkorn
Browse files

bug fix for limitSteps.

parent d50d7324
No related branches found
No related tags found
No related merge requests found
......@@ -281,8 +281,8 @@ namespace Dune {
times[ 2 ] = adaptTime ;
times[ 3 ] = lbTime ;
times[ 4 ] = timeStepTime ;
for(size_t i=5; i<limitSteps.size(); ++i)
times[ i ] = limitSteps[ i ];
for(size_t i=0; i<limitSteps.size(); ++i)
times[ i+5 ] = limitSteps[ i ];
maxDofs_ = std::max( double(maxDofs), maxDofs_ );
......
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