*
* 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 = BlockType::supports_distributed_data;
+ static const bool supports_distributed_data DEAL_II_DEPRECATED = BlockType::supports_distributed_data;
/**
* Default constructor.
*
* 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 = true;
+ static const bool supports_distributed_data DEAL_II_DEPRECATED = true;
/**
* @name 1: Basic Object-handling
*
* 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 = true;
+ static const bool supports_distributed_data DEAL_II_DEPRECATED = true;
/**
* Default constructor. Initialize the vector as empty.
* 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 = false;
+ static const bool supports_distributed_data DEAL_II_DEPRECATED = false;
/**
* Default constructor. Initialize the vector as empty.
*
* 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 = true;
+ static const bool supports_distributed_data DEAL_II_DEPRECATED = true;
/**
* @name Basic constructors and initialization.
* 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 = false;
+ static const bool supports_distributed_data DEAL_II_DEPRECATED = false;
/**
* Default constructor that generates an empty (zero size) vector. The
*
* 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 = false;
+ static const bool supports_distributed_data DEAL_II_DEPRECATED = false;
public: