Epetra Package Browser (Single Doxygen Collection)  Development
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
Epetra_Vector.h
Go to the documentation of this file.
1 /*
2 //@HEADER
3 // ************************************************************************
4 //
5 // Epetra: Linear Algebra Services Package
6 // Copyright 2011 Sandia Corporation
7 //
8 // Under the terms of Contract DE-AC04-94AL85000 with Sandia Corporation,
9 // the U.S. Government retains certain rights in this software.
10 //
11 // Redistribution and use in source and binary forms, with or without
12 // modification, are permitted provided that the following conditions are
13 // met:
14 //
15 // 1. Redistributions of source code must retain the above copyright
16 // notice, this list of conditions and the following disclaimer.
17 //
18 // 2. Redistributions in binary form must reproduce the above copyright
19 // notice, this list of conditions and the following disclaimer in the
20 // documentation and/or other materials provided with the distribution.
21 //
22 // 3. Neither the name of the Corporation nor the names of the
23 // contributors may be used to endorse or promote products derived from
24 // this software without specific prior written permission.
25 //
26 // THIS SOFTWARE IS PROVIDED BY SANDIA CORPORATION "AS IS" AND ANY
27 // EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
28 // IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
29 // PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL SANDIA CORPORATION OR THE
30 // CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
31 // EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
32 // PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
33 // PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
34 // LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
35 // NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
36 // SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
37 //
38 // Questions? Contact Michael A. Heroux (maherou@sandia.gov)
39 //
40 // ************************************************************************
41 //@HEADER
42 */
43 
44 #ifndef EPETRA_VECTOR_H
45 #define EPETRA_VECTOR_H
46 
47 #if defined(Epetra_SHOW_DEPRECATED_WARNINGS)
48 #ifdef __GNUC__
49 #warning "The Epetra package is deprecated"
50 #endif
51 #endif
52 
53 
54 
55 #include "Epetra_ConfigDefs.h"
56 #include "Epetra_MultiVector.h"
57 class Epetra_Map;
58 
60 
149 //=========================================================================
150 class EPETRA_LIB_DLL_EXPORT Epetra_Vector : public Epetra_MultiVector {
151 
152  public:
153 
155 
156 
173  Epetra_Vector(const Epetra_BlockMap& Map, bool zeroOut = true);
174 
176 
177  Epetra_Vector(const Epetra_Vector& Source);
178 
180 
192  Epetra_Vector(Epetra_DataAccess CV, const Epetra_BlockMap& Map, double *V);
193 
195 
209  Epetra_Vector(Epetra_DataAccess CV, const Epetra_MultiVector& Source, int Index);
210 
212  virtual ~Epetra_Vector ();
214 
216 
217 
219 
232 #ifndef EPETRA_NO_32BIT_GLOBAL_INDICES
233  int ReplaceGlobalValues(int NumEntries, const double * Values, const int * Indices);
234 #endif
235 #ifndef EPETRA_NO_64BIT_GLOBAL_INDICES
236  int ReplaceGlobalValues(int NumEntries, const double * Values, const long long * Indices);
237 #endif
238 
240 
253  int ReplaceMyValues(int NumEntries, const double * Values, const int * Indices);
254 
256 
269  int SumIntoGlobalValues(int NumEntries, const double * Values, const int * Indices);
270 
272 
285  int SumIntoMyValues(int NumEntries, const double * Values, const int * Indices);
286 
287  // Blockmap Versions
288 
290 
308  int ReplaceGlobalValues(int NumEntries, int BlockOffset, const double * Values, const int * Indices);
309 
311 
329  int ReplaceMyValues(int NumEntries, int BlockOffset, const double * Values, const int * Indices);
330 
332 
350  int SumIntoGlobalValues(int NumEntries, int BlockOffset, const double * Values, const int * Indices);
351 
353 
371  int SumIntoMyValues(int NumEntries, int BlockOffset, const double * Values, const int * Indices);
373 
375 
376 
377  //Let the compiler know we intend to overload the base-class ExtractCopy
378  //function, rather than hide it.
380 
382 
388  int ExtractCopy(double *V) const;
389 
390  //Let the compiler know we intend to overload the base-class ExtractView
391  //function, rather than hide it.
393 
395 
401  int ExtractView(double **V) const;
403 
405 
406 
408 
411  double& operator [] (int index)
412  {
413 #ifdef HAVE_EPETRA_ARRAY_BOUNDS_CHECK
415  !( 0 <= index && index < this->MyLength() ), -99,
416  "Epetra_Vector::operator[](int): "
417  "The index = " << index << " does not fall in the range"
418  "[0,"<<this->MyLength()<<")"
419  );
420 #endif
421  return Values_[index];
422  }
424 
427  const double& operator [] (int index) const
428  {
429 #ifdef HAVE_EPETRA_ARRAY_BOUNDS_CHECK
431  !( 0 <= index && index < this->MyLength() ), -99,
432  "Epetra_Vector::operator[](int) const: "
433  "The index = " << index << " does not fall in the range"
434  "[0,"<<this->MyLength()<<")"
435  );
436 #endif
437  return Values_[index];
438  }
440 
442 
443 
444  //Let the compiler know we intend to overload the base-class ResetView
445  //function, rather than hide it.
447 
449 
468  int ResetView(double * Values_in) {EPETRA_CHK_ERR(Epetra_MultiVector::ResetView(&Values_in)); return(0);};
470  private:
471 
472  int ChangeValues(int NumEntries, int BlockOffset, const double * Values, const int * Indices, bool IndicesGlobal, bool SumInto);
473 #ifndef EPETRA_NO_64BIT_GLOBAL_INDICES
474  int ChangeValues(int NumEntries, int BlockOffset, const double * Values, const long long * Indices, bool IndicesGlobal, bool SumInto);
475 #endif
476 
477  template<typename int_type>
478  int TChangeValues(int NumEntries, int BlockOffset, const double * Values, const int_type * Indices, bool IndicesGlobal, bool SumInto);
479 };
480 
481 #endif /* EPETRA_VECTOR_H */
Epetra_MultiVector: A class for constructing and using dense multi-vectors, vectors and matrices in p...
Epetra_Map: A class for partitioning vectors and matrices.
Definition: Epetra_Map.h:127
int ResetView(double *Values_in)
Reset the view of an existing vector to point to new user data.
int MyLength() const
Returns the local vector length on the calling processor of vectors in the multi-vector.
#define EPETRA_CHK_ERR(a)
Epetra_Vector: A class for constructing and using dense vectors on a parallel computer.
int ExtractCopy(double *A, int MyLDA) const
Put multi-vector values into user-provided two-dimensional array.
int ResetView(double **ArrayOfPointers)
Reset the view of an existing multivector to point to new user data.
int ExtractView(double **A, int *MyLDA) const
Set user-provided addresses of A and MyLDA.
Epetra_BlockMap: A class for partitioning block element vectors and matrices.
#define EPETRA_TEST_FOR_EXCEPTION(throw_exception_test, errCode, msg)
Macro for testing for and throwing and int exception for objects derived from Epetra_Object.
double *& operator[](int i)
Vector access function.
Epetra_DataAccess