*/
typedef typename BlockType::real_type real_type;
- /**
- * A variable that indicates whether this vector supports distributed data
- * storage. If true, then this vector also needs an appropriate compress()
- * function that allows communicating recent set or add operations to
- * individual elements to be communicated to other processors.
- *
- * For the current class, the variable equals the value declared for the
- * type of the individual blocks.
- *
- * @deprecated instead of using this variable, please use the type trait value
- * <code>is_serial_vector< VectorType >::value</code>
- */
- static const bool supports_distributed_data DEAL_II_DEPRECATED = !is_serial_vector<BlockType>::value;
-
/**
* Default constructor.
*/
typedef types::global_dof_index size_type;
typedef typename numbers::NumberTraits<Number>::real_type real_type;
- /**
- * A variable that indicates whether this vector supports distributed
- * data storage. If true, then this vector also needs an appropriate
- * compress() function that allows communicating recent set or add
- * operations to individual elements to be communicated to other
- * processors.
- *
- * For the current class, the variable equals true, since it does
- * support parallel data storage.
- *
- * @deprecated instead of using this variable, please use the type trait
- * value <code>is_serial_vector< VectorType >::value</code>
- */
- static const bool supports_distributed_data DEAL_II_DEPRECATED = true;
-
/**
* @name 1: Basic Object-handling
*/
*/
typedef types::global_dof_index size_type;
- /**
- * A variable that indicates whether this vector supports distributed
- * data storage. If true, then this vector also needs an appropriate
- * compress() function that allows communicating recent set or add
- * operations to individual elements to be communicated to other
- * processors.
- *
- * For the current class, the variable equals true, since it does
- * support parallel data storage.
- *
- * @deprecated instead of using this variable, please use the type trait
- * value <code>is_serial_vector< VectorType >::value</code>
- */
- static const bool supports_distributed_data DEAL_II_DEPRECATED = true;
-
/**
* Default constructor. Initialize the vector as empty.
*/
*/
typedef types::global_dof_index size_type;
- /**
- * A variable that indicates whether this vector supports distributed data
- * storage. If true, then this vector also needs an appropriate compress()
- * function that allows communicating recent set or add operations to
- * individual elements to be communicated to other processors.
- *
- * For the current class, the variable equals false, since it does not
- * support parallel data storage. If you do need parallel data storage,
- * use PETScWrappers::MPI::Vector.
- *
- * @deprecated instead of using this variable, please use the type trait
- * value <code>is_serial_vector< VectorType >::value</code>
- */
- static const bool supports_distributed_data DEAL_II_DEPRECATED = false;
-
/**
* Default constructor. Initialize the vector as empty.
*/
*/
typedef dealii::types::global_dof_index size_type;
- /**
- * A variable that indicates whether this vector supports distributed
- * data storage. If true, then this vector also needs an appropriate
- * compress() function that allows communicating recent set or add
- * operations to individual elements to be communicated to other
- * processors.
- *
- * For the current class, the variable equals true, since it does
- * support parallel data storage.
- *
- * @deprecated instead of using this variable, please use the type trait
- * value <code>is_serial_vector< VectorType >::value</code>
- */
- static const bool supports_distributed_data DEAL_II_DEPRECATED = true;
-
/**
* @name Basic constructors and initialization.
*/
*/
typedef dealii::types::global_dof_index size_type;
- /**
- * A variable that indicates whether this vector supports distributed data
- * storage. If true, then this vector also needs an appropriate compress()
- * function that allows communicating recent set or add operations to
- * individual elements to be communicated to other processors.
- *
- * For the current class, the variable equals false, since it does not
- * support parallel data storage. If you do need parallel data storage,
- * use TrilinosWrappers::MPI::Vector.
- *
- * @deprecated instead of using this variable, please use the type trait
- * value <code>is_serial_vector< VectorType >::value</code>
- */
- static const bool supports_distributed_data DEAL_II_DEPRECATED = false;
-
/**
* Default constructor that generates an empty (zero size) vector. The
* function <tt>reinit()</tt> will have to give the vector the correct
*/
typedef typename numbers::NumberTraits<Number>::real_type real_type;
- /**
- * A variable that indicates whether this vector supports distributed data
- * storage. If true, then this vector also needs an appropriate compress()
- * function that allows communicating recent set or add operations to
- * individual elements to be communicated to other processors.
- *
- * For the current class, the variable equals false, since it does not
- * support parallel data storage.
- *
- * @deprecated instead of using this variable, please use the type trait value
- * <code>is_serial_vector< VectorType >::value</code>
- */
- static const bool supports_distributed_data DEAL_II_DEPRECATED = false;
-
public:
/**