<code>optimize_diagonal</code> argument.
- Mapping::transform_covariant and Mapping::transform_contravariant.
- The typedef CompressedBlockSparsityPattern.
+ - The deprecated constructors of SparsityPattern iterator classes.
<br>
This release also removes the deprecated class MGDoFHandler. The
functionality of this class had previously been incorporated into
class Accessor
{
public:
- /**
- * Constructor.
- *
- * @deprecated This constructor is deprecated. Use the other constructor
- * with a global index instead.
- */
- Accessor (const SparsityPattern *matrix,
- const size_type row,
- const size_type index) DEAL_II_DEPRECATED;
-
/**
* Constructor.
*/
class Iterator
{
public:
- /**
- * Constructor. Create an iterator into the sparsity pattern @p sp for the
- * given row and the index within it.
- *
- * @deprecated This constructor is deprecated. Use the other constructor
- * with a global index instead.
- */
- Iterator (const SparsityPattern *sp,
- const size_type row,
- const size_type index) DEAL_II_DEPRECATED;
-
/**
* Constructor. Create an iterator into the sparsity pattern @p sp for the
* given global index (i.e., the index of the given element counting from
namespace SparsityPatternIterators
{
- inline
- Accessor::
- Accessor (const SparsityPattern *sparsity_pattern,
- const size_type r,
- const size_type i)
- :
- sparsity_pattern(sparsity_pattern),
- index_within_sparsity(sparsity_pattern->rowstart[r]+i)
- {}
-
-
inline
Accessor::
Accessor (const SparsityPattern *sparsity_pattern,
- inline
- Iterator::Iterator (const SparsityPattern *sparsity_pattern,
- const size_type r,
- const size_type i)
- :
- accessor(sparsity_pattern, sparsity_pattern->rowstart[r]+i)
- {}
-
-
-
inline
Iterator::Iterator (const SparsityPattern *sparsity_pattern,
const std::size_t i)