13.1.6 Add_Values_Mathematic_Vector Procedure

The Add_Values_Mathematic_Vector procedure increments the values for the Mathematic Vector by the specified vector of value. Note that if the single value form of this procedure is used, then the same number of procedure calls must take place on every processor - this is required by internal verification calls that use global communication. If a different number of values are to be added on each processor, then the vector form should be used.

Calling syntax:

call Add_Values (MV, Value, Row, Global) ,
call Add_Values (MV, Values, Rows, Global) or
call Add_Values (MV, Values)  

Input variable:

 Values  A vector of values to be added to the Mathematic_Vector object. If the Rows variable is not present, Values must be the same size as the Mathematic_Vector. Otherwise, Values must have a size smaller than or equal to the size of the Mathematic_Vector.
 Rows  An integer vector of rows for the Values vector. [optional]
 Global  A toggle between using global or local (on this PE) indices for the Rows variable. Default is true (use global). [optional]
 Value  A single value to be added to the Mathematic_Vector object. The Row variable must be present for this form of the procedure.
 Row  The row index for the Value variable.

Input/Output variable:

 MV  The Mathematic_Vector object to be incremented.

The Add_Values_Mathematic_Vector code listing contains additional documentation.

Michael L. Hall