InputIterator entries,
const bool C_style_indexing = true);
+ /**
+ * Reinitialize the object. Passes down to the base class
+ * by converting the arguments to the data type requested by the base class.
+ */
+ void
+ reinit(const size_type size1,
+ const size_type size2,
+ const size_type size3,
+ const bool omit_default_initialization = false);
+
+ using TableBase<3, T>::reinit;
+
/**
* Access operator. Generate an object that accesses the requested two-
* dimensional subobject of this three-dimensional table. Range checks are
+template <typename T>
+inline void
+Table<3, T>::reinit(const size_type size1,
+ const size_type size2,
+ const size_type size3,
+ const bool omit_default_initialization)
+{
+ this->TableBase<3, T>::reinit(TableIndices<3>(size1, size2, size3),
+ omit_default_initialization);
+}
+
+
+
template <typename T>
inline dealii::internal::TableBaseAccessors::Accessor<3, T, true, 2>
Table<3, T>::operator[](const size_type i) const