From: bangerth Date: Tue, 28 Feb 2012 10:27:53 +0000 (+0000) Subject: Minor editorial changes. X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=cdc28161848baa719ddb56fb72e293adc94d9840;p=dealii-svn.git Minor editorial changes. git-svn-id: https://svn.dealii.org/trunk@25182 0785d39b-7218-0410-832d-ea1e28bc413d --- diff --git a/deal.II/doc/news/changes.h b/deal.II/doc/news/changes.h index 14b3ec7851..d30b5b3b8b 100644 --- a/deal.II/doc/news/changes.h +++ b/deal.II/doc/news/changes.h @@ -24,7 +24,17 @@ inconvenience this causes.

    -
  1. Changed: The the argument material_id of the estimate-functions of the KellyErrorEstimator class are now of type types::material_id_type with the default value types::invalid_material_id instead of type unsigned int with the default value numbers::invalid_unsigned_int. The member functions Triangulation::set_boundary and Triangulation::get_boundary now take a types::boundary_id_t instead of an unsigned int. +
  2. Changed: The argument material_id of the estimate-functions of +the KellyErrorEstimator class is now of type types::material_id_type +with default value types::invalid_material_id, instead of type +unsigned int with default value numbers::invalid_unsigned_int. This +should not make a difference to most users unless you specified the +argument's default value by hand. +
    +The member functions Triangulation::set_boundary and +Triangulation::get_boundary now take a types::boundary_id_t instead of +an unsigned int as argument. This now matches the actual data type +used for boundary indicators.
    (Wolfgang Bangerth, Christian Goll 2012/02/27)
@@ -36,10 +46,18 @@ inconvenience this causes.

General

    -
  1. Changed: Material and Boundary indicators have been both of the type unsigned char. Throughout the library, we changed their datatype to types::material_id_t resp. types::boundary_id_t, both typedefs of unsigned char. Internal faces are now characterized by types::internal_face_boundary_id(=static_cast(-1)) instead of 255, -so we get rid of that mysterious numberin the source code. -Material_ids are also assumed to lie in the range from 0 to types::invalid_material_id-1 (where types::invalid_material_id = static_cast(-1)). With this change, it is now much easier to extend the range of boundary or material ids, if needed. - +
  2. Changed: Material and Boundary indicators have been both of the +type unsigned char. Throughout the library, we changed their datatype +to types::material_id_t +resp. types::boundary_id_t, both typedefs of unsigned +char. Internal faces are now characterized by +types::internal_face_boundary_id(=static_cast(-1)) +instead of 255, so we get rid of that mysterious number in the source +code. Material_ids are also assumed to lie in the range from 0 to +types::invalid_material_id-1 (where types::invalid_material_id = +static_cast(-1)). With this change, it is now +much easier to extend the range of boundary or material ids, if +needed.
    (Wolfgang Bangerth, Christian Goll 2012/02/27)