From: wolf Date: Mon, 29 Mar 1999 16:10:26 +0000 (+0000) Subject: Next doc update -- forgot one thing. X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=218c7fa0ced7601d9d924e529cda3b3d077a5c50;p=dealii-svn.git Next doc update -- forgot one thing. git-svn-id: https://svn.dealii.org/trunk@1064 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 4f49260427..fe4bd3f26d 100644 --- a/deal.II/deal.II/include/numerics/time_dependent.h +++ b/deal.II/deal.II/include/numerics/time_dependent.h @@ -1376,6 +1376,10 @@ struct TimeStepBase_Tria::Flags * scheme is adopted to allow for stricter corrections in later sweeps * while the relaxations may be more generous in the first sweeps. * + * There is a static variable #default_correction_relaxations# which you + * can use as a default value. It is an empty list and thus defines no + * relaxations. + * * \item #cell_number_correction_steps#: Usually, if you want the number of * cells to be corrected, the target corridor for the cell number is computed * and some additional cells are flagged or flags are removed. But since @@ -1422,6 +1426,12 @@ struct TimeStepBase_Tria::RefinementFlags */ typedef vector > > CorrectionRelaxations; + /** + * Default values for the relaxations: + * no relaxations. + */ + static CorrectionRelaxations default_correction_relaxations; + /** * Constructor. The default values are * chosen such that almost no restriction @@ -1531,13 +1541,6 @@ struct TimeStepBase_Tria::RefinementFlags DeclException1 (ExcInvalidValue, int, << "The following value does not fulfil the requirements: " << arg1); - - private: - /** - * Default values for the relaxations: - * no relaxations. - */ - static CorrectionRelaxations default_correction_relaxations; };