From cdc28161848baa719ddb56fb72e293adc94d9840 Mon Sep 17 00:00:00 2001
From: bangerth
Date: Tue, 28 Feb 2012 10:27:53 +0000
Subject: [PATCH] Minor editorial changes.
git-svn-id: https://svn.dealii.org/trunk@25182 0785d39b-7218-0410-832d-ea1e28bc413d
---
deal.II/doc/news/changes.h | 28 +++++++++++++++++++++++-----
1 file changed, 23 insertions(+), 5 deletions(-)
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.
-- 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.
+
- 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
-- 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.
-
+ - 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)
--
2.39.5