<h3>Specific improvements</h3>
<ol>
+ <li> Fixed: The specialization of DoFAccessor for zero-dimensional objects,
+ i.e., for vertices as created by accessing the faces of one-dimensional
+ cells, had a member function DoFAccessor::child() that was declared but not
+ implemented. This is now fixed.
+ <br>
+ (Wolfgang Bangerth, 2015/07/01)
+ </li>
+
<li> Improved: Functions::Monomial::gradient function now works when both base and exponent
are equal to zero for one or more components of the monomial.
Also, an assertion is added to avoid exponentiation of negative base numbers with real exponents.
*/
/**
- * Return an iterator pointing to the the @p c-th child.
+ * Return an iterator pointing to the @p c-th child.
*/
TriaIterator<DoFAccessor<structdim,DH, level_dof_access> >
child (const unsigned int c) const;
*/
/**
- * Return an iterator pointing to the the @p c-th child.
+ * Return an invalid iterator of a type that represents pointing to a child
+ * of the current object. The object is invalid because points (as represented
+ * by the current class) do not have children.
*/
TriaIterator<DoFAccessor<0,DH<1,spacedim>, level_dof_access > >
child (const unsigned int c) const;
+template <template <int, int> class DH, int spacedim, bool level_dof_access>
+inline
+TriaIterator<DoFAccessor<0,DH<1,spacedim>, level_dof_access > >
+DoFAccessor<0,DH<1,spacedim>, level_dof_access>::child (const unsigned int i) const
+{
+ return TriaIterator<DoFAccessor<0,DH<1,spacedim>, level_dof_access > >();
+}
+
+
+
+
+
/*------------------------- Functions: DoFCellAccessor -----------------------*/