00001 /*@HEADER 00002 // *********************************************************************** 00003 // 00004 // Ifpack: Object-Oriented Algebraic Preconditioner Package 00005 // Copyright (2002) Sandia Corporation 00006 // 00007 // Under terms of Contract DE-AC04-94AL85000, there is a non-exclusive 00008 // license for use of this work by or on behalf of the U.S. Government. 00009 // 00010 // Redistribution and use in source and binary forms, with or without 00011 // modification, are permitted provided that the following conditions are 00012 // met: 00013 // 00014 // 1. Redistributions of source code must retain the above copyright 00015 // notice, this list of conditions and the following disclaimer. 00016 // 00017 // 2. Redistributions in binary form must reproduce the above copyright 00018 // notice, this list of conditions and the following disclaimer in the 00019 // documentation and/or other materials provided with the distribution. 00020 // 00021 // 3. Neither the name of the Corporation nor the names of the 00022 // contributors may be used to endorse or promote products derived from 00023 // this software without specific prior written permission. 00024 // 00025 // THIS SOFTWARE IS PROVIDED BY SANDIA CORPORATION "AS IS" AND ANY 00026 // EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 00027 // IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR 00028 // PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL SANDIA CORPORATION OR THE 00029 // CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, 00030 // EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, 00031 // PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR 00032 // PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF 00033 // LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING 00034 // NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS 00035 // SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 00036 // 00037 // Questions? Contact Michael A. Heroux (maherou@sandia.gov) 00038 // 00039 // *********************************************************************** 00040 //@HEADER 00041 */ 00042 00043 #ifndef IFPACK_DIAG_PRECONDITIONER_H 00044 #define IFPACK_DIAG_PRECONDITIONER_H 00045 00046 #include "Ifpack_ConfigDefs.h" 00047 #include "Epetra_Operator.h" 00048 #include "Epetra_Vector.h" 00049 class Epetra_BlockMap; 00050 class Epetra_Map; 00051 class Epetra_MultiVector; 00052 class Epetra_Comm; 00053 00055 /* 00056 Ifpack_DiagPreconditioner: a class to wrap a vector as diagonal preconditioner. The preconditioner is simply defined by 00057 \f[ 00058 z_i = D_i r_i, 00059 \f] 00060 where \f$r,z\f$ are the vector to be preconditioned and the preconditioned vector, and \f$D_i\f$ is the i-th element of the scaling vector. 00061 00062 \author Marzio Sala, ETHZ/D-INFK 00063 00064 \date Last updated on 17-Apr-06 00065 00066 */ 00067 class Ifpack_DiagPreconditioner : public Epetra_Operator 00068 { 00069 public: 00070 00072 Ifpack_DiagPreconditioner(const Epetra_Map& DomainMap, 00073 const Epetra_Map& RangeMap, 00074 const Epetra_Vector& diag); 00075 00077 ~Ifpack_DiagPreconditioner(); 00078 00079 int SetUseTranspose(bool UseTranspose_in) 00080 { 00081 UseTranspose_ = UseTranspose_in; 00082 return(0); 00083 } 00084 00085 int Apply(const Epetra_MultiVector& X, Epetra_MultiVector& Y) const; 00086 00087 int ApplyInverse(const Epetra_MultiVector& X, Epetra_MultiVector& Y) const; 00088 00089 double NormInf() const 00090 { 00091 return(-1.0); 00092 } 00093 00094 const char* Label() const 00095 { 00096 return("Ifpack_DiagPreconditioner"); 00097 } 00098 00099 bool UseTranspose() const 00100 { 00101 return(UseTranspose_); 00102 } 00103 00104 bool HasNormInf() const 00105 { 00106 return(false); 00107 } 00108 00109 const Epetra_Comm& Comm() const 00110 { 00111 return(diag_.Comm()); 00112 } 00113 00114 const Epetra_Map& OperatorDomainMap() const 00115 { 00116 return(RangeMap_); 00117 } 00118 00119 const Epetra_Map& OperatorRangeMap() const 00120 { 00121 return(DomainMap_); 00122 } 00123 00124 const Epetra_BlockMap& Map() const 00125 { 00126 return(diag_.Map()); 00127 } 00128 00129 private: 00130 bool UseTranspose_; 00131 const Epetra_Map& DomainMap_; 00132 const Epetra_Map& RangeMap_; 00133 const Epetra_Vector& diag_; 00134 }; 00135 00136 #endif
1.7.6.1