Go to the source code of this file.
Functions | |
template<class S> | |
void | scalar_product (const vector< S > &_x, const vector< S > &_y, S &_s) |
template<class S> | |
void | scalar_product (const vector< S > &_x, const vector< S > &_y, vector< S > &_s) |
template<class S> | |
void | add_scale (vector< S > &_x, const vector< S > &_y, const S _s) |
template<class S> | |
void | add_scale (vector< S > &_x, const vector< S > &_y, const vector< S > &_s) |
template<class S> | |
void | sub_scale (vector< S > &_x, const vector< S > &_y, const S _s) |
template<class S> | |
void | sub_scale (vector< S > &_x, const vector< S > &_y, const vector< S > &_s) |
template<class S> | |
void | scale_add (vector< S > &_x, const vector< S > &_y, const S _s) |
template<class S> | |
void | scale_add (vector< S > &_x, const vector< S > &_y, const vector< S > &_s) |
template<class T, class S> | |
void | element_accumulation (const vector< T > &_hdr, vector< T > &_con, vector< T > &_row, vector< T > &_col, vector< S > &_ele) |
template<class T, class S> | |
void | diagonal (const vector< T > &_con, const vector< T > &_row, const vector< T > &_col, const vector< S > &_ele, vector< S > &_dia) |
|
The add_scale procedure calculates the sum of two packed vectors, scaling the second packed vector. x += y * s
|
|
The add_scale procedure calculates the sum of two vectors, scaling the second vector. x += y * s
|
|
The diagonal procedure extracts the diagonal from the local finite element matrix.
|
|
The element_accumulation procedure accumulates the local finite element matrix and calculates the set of global node numbers for the current process.
|
|
The scalar_product procedure calculates the scalar product for two packed vectors.
|
|
The scalar_product procedure calculates the scalar product for two vectors.
|
|
The scale_add procedure calculates the sum of two packed vectors, scaling the first packed vector. x = x * s + y
|
|
The scale_add procedure calculates the sum of two vectors, scaling the first vector. x = x * s + y
|
|
The sub_scale procedure calculates the difference of two packed vectors, scaling the second packed vector. x -= y * s
|
|
The sub_scale procedure calculates the difference of two vectors, scaling the second vector. x -= y * s
|