<ol>
+ <li> Changed: The function Vector::add() that adds a scalar number to all
+ elements of a vector has been deprecated. The same is true for the
+ Vector::ratio() function, and for the corresponding functions in other
+ vector classes.
+ <br>
+ (Wolfgang Bangerth, Bruno Turcksin, 2015/08/13)
+ </li>
+
<li> Improved: Some finite elements compute hessians analytically rather than
by finite differencing. Namely, these are finite elements that are subclasses
of FEPoly as well as FESystem with those as base elements.
* Addition of @p s to all components. Note that @p s is a scalar and
* not a vector.
*/
- void add (const Number s);
+ void add (const Number s) DEAL_II_DEPRECATED;
/**
* Simple vector addition, equal to the <tt>operator +=</tt>.
* attempt is made to catch such situations.
*/
void ratio (const Vector<Number> &a,
- const Vector<Number> &b);
+ const Vector<Number> &b) DEAL_II_DEPRECATED;
//@}
* Addition of @p s to all components. Note that @p s is a scalar and not
* a vector.
*/
- void add (const PetscScalar s);
+ void add (const PetscScalar s) DEAL_II_DEPRECATED;
/**
* Simple vector addition, equal to the <tt>operator +=</tt>.
* attempt is made to catch such situations.
*/
void ratio (const VectorBase &a,
- const VectorBase &b);
+ const VectorBase &b) DEAL_II_DEPRECATED;
/**
* Prints the PETSc vector object values using PETSc internal vector
* Addition of @p s to all components. Note that @p s is a scalar and not
* a vector.
*/
- void add (const TrilinosScalar s);
+ void add (const TrilinosScalar s) DEAL_II_DEPRECATED;
/**
* Simple vector addition, equal to the <tt>operator +=</tt>.
* attempt is made to catch such situations.
*/
void ratio (const VectorBase &a,
- const VectorBase &b);
+ const VectorBase &b) DEAL_II_DEPRECATED;
//@}
*
* @dealiiOperationIsMultithreaded
*/
- void add (const Number s);
+ void add (const Number s) DEAL_II_DEPRECATED;
/**
* Simple vector addition, equal to the <tt>operator +=</tt>.
* @dealiiOperationIsMultithreaded
*/
void ratio (const Vector<Number> &a,
- const Vector<Number> &b);
+ const Vector<Number> &b) DEAL_II_DEPRECATED;
/**
* This function does nothing but is there for compatibility with the @p