[cig-commits] commit 2495 by heister to /var/svn/dealii/aspect

dealii.demon at gmail.com dealii.demon at gmail.com
Sat Apr 12 07:14:06 PDT 2014


Revision 2495

fix typo, oops

U   trunk/aspect/source/termination_criteria/interface.cc


http://www.dealii.org/websvn/revision.php?repname=Aspect+Repository&path=%2F&rev=2495&peg=2495

Diff:
Modified: trunk/aspect/source/termination_criteria/interface.cc
===================================================================
--- trunk/aspect/source/termination_criteria/interface.cc	2014-04-12 13:53:00 UTC (rev 2494)
+++ trunk/aspect/source/termination_criteria/interface.cc	2014-04-12 14:14:02 UTC (rev 2495)
@@ -83,7 +83,7 @@
 	      AssertThrow (current_time_step <= new_time_step,
 	        ExcMessage("Current time step must be less than or equal to time step entered into function."));
 
-	      new_time_step = std::min(current_time_step, new_timestep);
+	      new_time_step = std::min(current_time_step, new_time_step);
 	   }
       return new_time_step;
     }


More information about the CIG-COMMITS mailing list