/**
* Reinit functionality. The flag <tt>omit_zeroing_entries</tt>
- * determines whether the vector should be filled with zero (false) or
- * left untouched (true).
+ * determines whether the vector should be filled with zeros (`false`) or
+ * left in an undetermined state (`true`).
*/
void
reinit(const size_type n, const bool omit_zeroing_entries = false);
* Reinit functionality. This function destroys the old vector content
* and generates a new one based on the input partitioning. The flag
* <tt>omit_zeroing_entries</tt> determines whether the vector should be
- * filled with zero (false) or left untouched (true).
+ * filled with zeros (`false`) or left in an undetermined state (`true`).
*/
void
reinit(const IndexSet ¶llel_partitioner,
* Reinit functionality. This function destroys the old vector content
* and generates a new one based on the input partitioning. The flag
* <tt>omit_zeroing_entries</tt> determines whether the vector should be
- * filled with zero (false) or left untouched (true).
+ * filled with zeros (`false`) or left in an undetermined state (`true`).
*/
void
reinit(const IndexSet ¶llel_partitioner,
* Reinit functionality. This function sets the calling vector to the
* dimension and the parallel distribution of the input vector, but does
* not copy the elements in <tt>v</tt>. If <tt>omit_zeroing_entries</tt>
- * is not <tt>true</tt>, the elements in the vector are initialized with
+ * is <tt>false</tt>, the elements in the vector are initialized with
* zero. If it is set to <tt>true</tt>, the vector entries are in an
* unspecified state and the user has to set all elements. In the
* current implementation, this method does not touch the vector entries