<h3>Specific improvements</h3>
<ol>
+ <li> Fixed: The CellData class now has a default constructor that
+ sets the material and boundary indicators to zero. This fixes certain
+ internal errors with the Intel ICC compiler.
+ <br>
+ (Wolfgang Bangerth, 2013/11/13)
+ </li>
+
<li> New: There is now a framework for coloring graphs, with functions
in namespace GraphColoring.
<br>
types::boundary_id boundary_id;
types::material_id material_id;
};
+
+ /**
+ * Default constructor. Sets the vertex indices to invalid values and the boundary or material
+ * id the default value (zero).
+ */
+ CellData ();
};
#ifndef DOXYGEN
+
+template <int structdim>
+inline
+CellData<structdim>::CellData ()
+{
+ for (unsigned int i=0; i<GeometryInfo<structdim>::vertices_per_cell; ++i)
+ vertices[i] = numbers::invalid_unsigned_int;
+
+ material_id = 0;
+}
+
+
+
namespace internal
{
namespace Triangulation
In the beginning the Universe was created. This has made a lot of
people very angry and has been widely regarded as a bad move.
Douglas Adams