MFEM
v3.3
Finite element discretization library
|
#include <vector.hpp>
Public Member Functions | |
Vector () | |
Default constructor for Vector. Sets size = 0 and data = NULL. More... | |
Vector (const Vector &) | |
Copy constructor. Allocates a new data array and copies the data. More... | |
Vector (int s) | |
Creates vector of size s. More... | |
Vector (double *_data, int _size) | |
Creates a vector referencing an array of doubles, owned by someone else. More... | |
void | Load (std::istream **in, int np, int *dim) |
Reads a vector from multiple files. More... | |
void | Load (std::istream &in, int Size) |
Load a vector from an input stream. More... | |
void | Load (std::istream &in) |
Load a vector from an input stream, reading the size from the stream. More... | |
void | SetSize (int s) |
Resize the vector to size s. More... | |
void | SetData (double *d) |
void | SetDataAndSize (double *d, int s) |
Set the Vector data and size. More... | |
void | NewDataAndSize (double *d, int s) |
Set the Vector data and size, deleting the old data, if owned. More... | |
void | MakeDataOwner () |
void | Destroy () |
Destroy a vector. More... | |
int | Size () const |
Returns the size of the vector. More... | |
int | Capacity () const |
Return the size of the currently allocated data array. More... | |
double * | GetData () const |
operator double * () | |
Conversion to double * . More... | |
operator const double * () const | |
Conversion to const double * . More... | |
bool | OwnsData () const |
void | StealData (double **p) |
Changes the ownership of the data; after the call the Vector is empty. More... | |
double * | StealData () |
Changes the ownership of the data; after the call the Vector is empty. More... | |
double & | Elem (int i) |
Access Vector entries. Index i = 0 .. size-1. More... | |
const double & | Elem (int i) const |
Read only access to Vector entries. Index i = 0 .. size-1. More... | |
double & | operator() (int i) |
Access Vector entries using () for 0-based indexing. More... | |
const double & | operator() (int i) const |
Read only access to Vector entries using () for 0-based indexing. More... | |
double | operator* (const double *) const |
Dot product with a double * array. More... | |
double | operator* (const Vector &v) const |
Return the inner-product. More... | |
Vector & | operator= (const double *v) |
Vector & | operator= (const Vector &v) |
Redefine '=' for vector = vector. More... | |
Vector & | operator= (double value) |
Redefine '=' for vector = constant. More... | |
Vector & | operator*= (double c) |
Vector & | operator/= (double c) |
Vector & | operator-= (double c) |
Vector & | operator-= (const Vector &v) |
Vector & | operator+= (const Vector &v) |
Vector & | Add (const double a, const Vector &Va) |
(*this) += a * Va More... | |
Vector & | Set (const double a, const Vector &x) |
(*this) = a * x More... | |
void | SetVector (const Vector &v, int offset) |
void | Neg () |
(*this) = -(*this) More... | |
void | Swap (Vector &other) |
Swap the contents of two Vectors. More... | |
void | median (const Vector &lo, const Vector &hi) |
v = median(v,lo,hi) entrywise. Implementation assumes lo <= hi. More... | |
void | GetSubVector (const Array< int > &dofs, Vector &elemvect) const |
void | GetSubVector (const Array< int > &dofs, double *elem_data) const |
void | SetSubVector (const Array< int > &dofs, const double value) |
Set the entries listed in dofs to the given value . More... | |
void | SetSubVector (const Array< int > &dofs, const Vector &elemvect) |
void | SetSubVector (const Array< int > &dofs, double *elem_data) |
void | AddElementVector (const Array< int > &dofs, const Vector &elemvect) |
Add (element) subvector to the vector. More... | |
void | AddElementVector (const Array< int > &dofs, double *elem_data) |
void | AddElementVector (const Array< int > &dofs, const double a, const Vector &elemvect) |
void | SetSubVectorComplement (const Array< int > &dofs, const double val) |
Set all vector entries NOT in the 'dofs' array to the given 'val'. More... | |
void | Print (std::ostream &out=std::cout, int width=8) const |
Prints vector to stream out. More... | |
void | Print_HYPRE (std::ostream &out) const |
Prints vector to stream out in HYPRE_Vector format. More... | |
void | Randomize (int seed=0) |
Set random values in the vector. More... | |
double | Norml2 () const |
Returns the l2 norm of the vector. More... | |
double | Normlinf () const |
Returns the l_infinity norm of the vector. More... | |
double | Norml1 () const |
Returns the l_1 norm of the vector. More... | |
double | Normlp (double p) const |
Returns the l_p norm of the vector. More... | |
double | Max () const |
Returns the maximal element of the vector. More... | |
double | Min () const |
Returns the minimal element of the vector. More... | |
double | Sum () const |
Return the sum of the vector entries. More... | |
double | DistanceTo (const double *p) const |
Compute the Euclidean distance to another vector. More... | |
int | CheckFinite () const |
virtual | ~Vector () |
Destroys vector. More... | |
Vector (N_Vector nv) | |
Construct a wrapper Vector from SUNDIALS N_Vector. More... | |
virtual N_Vector | ToNVector () |
Return a new wrapper SUNDIALS N_Vector of type SUNDIALS_NVEC_SERIAL. More... | |
virtual void | ToNVector (N_Vector &nv) |
Update an existing wrapper SUNDIALS N_Vector to point to this Vector. More... | |
Protected Attributes | |
int | size |
int | allocsize |
double * | data |
Friends | |
void | add (const Vector &v1, const Vector &v2, Vector &v) |
Set v = v1 + v2. More... | |
void | add (const Vector &v1, double alpha, const Vector &v2, Vector &v) |
Set v = v1 + alpha * v2. More... | |
void | add (const double a, const Vector &x, const Vector &y, Vector &z) |
z = a * (x + y) More... | |
void | add (const double a, const Vector &x, const double b, const Vector &y, Vector &z) |
z = a * x + b * y More... | |
void | subtract (const Vector &v1, const Vector &v2, Vector &v) |
Set v = v1 - v2. More... | |
void | subtract (const double a, const Vector &x, const Vector &y, Vector &z) |
z = a * (x - y) More... | |
Vector data type.
Definition at line 36 of file vector.hpp.
|
inline |
Default constructor for Vector. Sets size = 0 and data = NULL.
Definition at line 46 of file vector.hpp.
mfem::Vector::Vector | ( | const Vector & | v | ) |
Copy constructor. Allocates a new data array and copies the data.
Definition at line 31 of file vector.cpp.
|
inlineexplicit |
Creates vector of size s.
Definition at line 296 of file vector.hpp.
|
inline |
Creates a vector referencing an array of doubles, owned by someone else.
The pointer _data can be NULL. The data array can be replaced later with SetData().
Definition at line 58 of file vector.hpp.
|
inlinevirtual |
Destroys vector.
Definition at line 368 of file vector.hpp.
|
explicit |
Construct a wrapper Vector from SUNDIALS N_Vector.
Definition at line 763 of file vector.cpp.
(*this) += a * Va
Definition at line 205 of file vector.cpp.
Add (element) subvector to the vector.
Definition at line 550 of file vector.cpp.
void mfem::Vector::AddElementVector | ( | const Array< int > & | dofs, |
double * | elem_data | ||
) |
Definition at line 565 of file vector.cpp.
void mfem::Vector::AddElementVector | ( | const Array< int > & | dofs, |
const double | a, | ||
const Vector & | elemvect | ||
) |
Definition at line 582 of file vector.cpp.
|
inline |
Return the size of the currently allocated data array.
It is always true that Capacity() >= Size().
Definition at line 110 of file vector.hpp.
|
inline |
Count the number of entries in the Vector for which isfinite is false, i.e. the entry is a NaN or +/-Inf.
Definition at line 254 of file vector.hpp.
|
inline |
Destroy a vector.
Definition at line 329 of file vector.hpp.
double mfem::Vector::DistanceTo | ( | const double * | p | ) | const |
Compute the Euclidean distance to another vector.
Definition at line 756 of file vector.cpp.
double & mfem::Vector::Elem | ( | int | i | ) |
Access Vector entries. Index i = 0 .. size-1.
Definition at line 80 of file vector.cpp.
const double & mfem::Vector::Elem | ( | int | i | ) | const |
Read only access to Vector entries. Index i = 0 .. size-1.
Definition at line 85 of file vector.cpp.
|
inline |
Definition at line 114 of file vector.hpp.
Definition at line 462 of file vector.cpp.
void mfem::Vector::GetSubVector | ( | const Array< int > & | dofs, |
double * | elem_data | ||
) | const |
Definition at line 481 of file vector.cpp.
void mfem::Vector::Load | ( | std::istream ** | in, |
int | np, | ||
int * | dim | ||
) |
Reads a vector from multiple files.
Definition at line 50 of file vector.cpp.
void mfem::Vector::Load | ( | std::istream & | in, |
int | Size | ||
) |
Load a vector from an input stream.
Definition at line 70 of file vector.cpp.
|
inline |
Load a vector from an input stream, reading the size from the stream.
Definition at line 68 of file vector.hpp.
|
inline |
Definition at line 100 of file vector.hpp.
double mfem::Vector::Max | ( | ) | const |
Returns the maximal element of the vector.
Definition at line 718 of file vector.cpp.
v = median(v,lo,hi) entrywise. Implementation assumes lo <= hi.
Definition at line 445 of file vector.cpp.
double mfem::Vector::Min | ( | ) | const |
Returns the minimal element of the vector.
Definition at line 731 of file vector.cpp.
void mfem::Vector::Neg | ( | ) |
(*this) = -(*this)
Definition at line 256 of file vector.cpp.
|
inline |
Set the Vector data and size, deleting the old data, if owned.
The Vector does not assume ownership of the new data. The new size is also used as the new Capacity().
Definition at line 94 of file vector.hpp.
double mfem::Vector::Norml1 | ( | ) | const |
Returns the l_1 norm of the vector.
Definition at line 682 of file vector.cpp.
double mfem::Vector::Norml2 | ( | ) | const |
Returns the l2 norm of the vector.
Definition at line 667 of file vector.cpp.
double mfem::Vector::Normlinf | ( | ) | const |
Returns the l_infinity norm of the vector.
Definition at line 672 of file vector.cpp.
double mfem::Vector::Normlp | ( | double | p | ) | const |
Returns the l_p norm of the vector.
Definition at line 692 of file vector.cpp.
|
inline |
Conversion to const double *
.
Definition at line 124 of file vector.hpp.
|
inline |
Conversion to double *
.
Definition at line 119 of file vector.hpp.
|
inline |
Access Vector entries using () for 0-based indexing.
Definition at line 339 of file vector.hpp.
|
inline |
Read only access to Vector entries using () for 0-based indexing.
Definition at line 347 of file vector.hpp.
double mfem::Vector::operator* | ( | const double * | v | ) | const |
Dot product with a double *
array.
Definition at line 90 of file vector.cpp.
double mfem::Vector::operator* | ( | const Vector & | v | ) | const |
Return the inner-product.
Definition at line 105 of file vector.cpp.
Vector & mfem::Vector::operator*= | ( | double | c | ) |
Definition at line 147 of file vector.cpp.
Definition at line 190 of file vector.cpp.
Vector & mfem::Vector::operator-= | ( | double | c | ) |
Definition at line 166 of file vector.cpp.
Definition at line 175 of file vector.cpp.
Vector & mfem::Vector::operator/= | ( | double | c | ) |
Definition at line 156 of file vector.cpp.
Vector & mfem::Vector::operator= | ( | const double * | v | ) |
Definition at line 117 of file vector.cpp.
Redefine '=' for vector = vector.
Definition at line 126 of file vector.cpp.
Vector & mfem::Vector::operator= | ( | double | value | ) |
Redefine '=' for vector = constant.
Definition at line 136 of file vector.cpp.
|
inline |
Definition at line 126 of file vector.hpp.
void mfem::Vector::Print | ( | std::ostream & | out = std::cout , |
int | width = 8 |
||
) | const |
Prints vector to stream out.
Definition at line 606 of file vector.cpp.
void mfem::Vector::Print_HYPRE | ( | std::ostream & | out | ) | const |
Prints vector to stream out in HYPRE_Vector format.
Definition at line 630 of file vector.cpp.
void mfem::Vector::Randomize | ( | int | seed = 0 | ) |
Set random values in the vector.
Definition at line 648 of file vector.cpp.
(*this) = a * x
Definition at line 223 of file vector.cpp.
|
inline |
Set the Vector data.
Definition at line 80 of file vector.hpp.
|
inline |
Set the Vector data and size.
The Vector does not assume ownership of the new data. The new size is also used as the new Capacity().
Definition at line 87 of file vector.hpp.
|
inline |
Resize the vector to size s.
If the new size is less than or equal to Capacity() then the internal data array remains the same. Otherwise, the old array is deleted, if owned, and a new array of size s is allocated without copying the previous content of the Vector.
Definition at line 310 of file vector.hpp.
void mfem::Vector::SetSubVector | ( | const Array< int > & | dofs, |
const double | value | ||
) |
Set the entries listed in dofs
to the given value
.
Definition at line 498 of file vector.cpp.
Definition at line 516 of file vector.cpp.
void mfem::Vector::SetSubVector | ( | const Array< int > & | dofs, |
double * | elem_data | ||
) |
Definition at line 533 of file vector.cpp.
void mfem::Vector::SetSubVectorComplement | ( | const Array< int > & | dofs, |
const double | val | ||
) |
Set all vector entries NOT in the 'dofs' array to the given 'val'.
Definition at line 598 of file vector.cpp.
void mfem::Vector::SetVector | ( | const Vector & | v, |
int | offset | ||
) |
Definition at line 238 of file vector.cpp.
|
inline |
Returns the size of the vector.
Definition at line 106 of file vector.hpp.
|
inline |
Changes the ownership of the data; after the call the Vector is empty.
Definition at line 129 of file vector.hpp.
|
inline |
Changes the ownership of the data; after the call the Vector is empty.
Definition at line 133 of file vector.hpp.
double mfem::Vector::Sum | ( | ) | const |
Return the sum of the vector entries.
Definition at line 744 of file vector.cpp.
|
inline |
Swap the contents of two Vectors.
Definition at line 355 of file vector.hpp.
|
inlinevirtual |
Return a new wrapper SUNDIALS N_Vector of type SUNDIALS_NVEC_SERIAL.
The returned N_Vector must be destroyed by the caller.
Reimplemented in mfem::HypreParVector.
Definition at line 265 of file vector.hpp.
|
virtual |
Update an existing wrapper SUNDIALS N_Vector to point to this Vector.
Reimplemented in mfem::HypreParVector.
Definition at line 787 of file vector.cpp.
Set v = v1 + v2.
Definition at line 264 of file vector.cpp.
Set v = v1 + alpha * v2.
Definition at line 282 of file vector.cpp.
z = a * (x + y)
Definition at line 313 of file vector.cpp.
z = a * x + b * y
Definition at line 345 of file vector.cpp.
Set v = v1 - v2.
Definition at line 390 of file vector.cpp.
z = a * (x - y)
Definition at line 412 of file vector.cpp.
|
protected |
Definition at line 40 of file vector.hpp.
|
protected |
Definition at line 41 of file vector.hpp.
|
protected |
Definition at line 40 of file vector.hpp.