From: wolf Date: Wed, 18 Aug 1999 08:45:15 +0000 (+0000) Subject: Doc update. X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=33c7929962ab46a41f3fcfa509d0330ede1dc9b9;p=dealii-svn.git Doc update. git-svn-id: https://svn.dealii.org/trunk@1708 0785d39b-7218-0410-832d-ea1e28bc413d --- diff --git a/deal.II/deal.II/include/numerics/time_dependent.h b/deal.II/deal.II/include/numerics/time_dependent.h index 5903a36af4..4c58be489b 100644 --- a/deal.II/deal.II/include/numerics/time_dependent.h +++ b/deal.II/deal.II/include/numerics/time_dependent.h @@ -457,6 +457,18 @@ class TimeDependent * There is another function, * #add_timestep#, which inserts a * time step at the end of the list. + * + * Note that this function does not + * change the timestep numbers stored + * within the other timestep objects, + * nor does it set the timestep number + * of this new timestep. This is only + * done upon calling the #start_sweep# + * function. In not changing the timestep + * numbers, it is simpler to operate + * on a space-time triangulation since + * one can always use the timestep numbers + * that were used in the previous sweep. */ void insert_timestep (TimeStepBase *new_timestep, const unsigned int position); @@ -477,6 +489,19 @@ class TimeDependent * Deletion of the object by the * destructor is done through this * function also. + * + * Note that this function does + * not change the timestep + * numbers stored within the + * other timestep objects. This + * is only done upon calling the + * #start_sweep# function. In not + * changing the timestep numbers, + * it is simpler to operate on a + * space-time triangulation since + * one can always use the + * timestep numbers that were + * used in the previous sweep. */ void delete_timestep (const unsigned int position);