IFPACK  Development
 All Classes Namespaces Files Functions Variables Enumerations Friends Pages
Ifpack_ILU.h
1 /*@HEADER
2 // ***********************************************************************
3 //
4 // Ifpack: Object-Oriented Algebraic Preconditioner Package
5 // Copyright (2002) Sandia Corporation
6 //
7 // Under terms of Contract DE-AC04-94AL85000, there is a non-exclusive
8 // license for use of this work by or on behalf of the U.S. Government.
9 //
10 // Redistribution and use in source and binary forms, with or without
11 // modification, are permitted provided that the following conditions are
12 // met:
13 //
14 // 1. Redistributions of source code must retain the above copyright
15 // notice, this list of conditions and the following disclaimer.
16 //
17 // 2. Redistributions in binary form must reproduce the above copyright
18 // notice, this list of conditions and the following disclaimer in the
19 // documentation and/or other materials provided with the distribution.
20 //
21 // 3. Neither the name of the Corporation nor the names of the
22 // contributors may be used to endorse or promote products derived from
23 // this software without specific prior written permission.
24 //
25 // THIS SOFTWARE IS PROVIDED BY SANDIA CORPORATION "AS IS" AND ANY
26 // EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
27 // IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
28 // PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL SANDIA CORPORATION OR THE
29 // CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
30 // EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
31 // PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
32 // PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
33 // LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
34 // NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
35 // SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
36 //
37 // Questions? Contact Michael A. Heroux (maherou@sandia.gov)
38 //
39 // ***********************************************************************
40 //@HEADER
41 */
42 
43 #ifndef IFPACK_ILU_H
44 #define IFPACK_ILU_H
45 
46 #include "Ifpack_ConfigDefs.h"
47 #include "Ifpack_Preconditioner.h"
48 #include "Ifpack_Condest.h"
49 #include "Ifpack_ScalingType.h"
50 #include "Ifpack_IlukGraph.h"
51 #include "Epetra_CompObject.h"
52 #include "Epetra_MultiVector.h"
53 #include "Epetra_Vector.h"
54 #include "Epetra_CrsGraph.h"
55 #include "Epetra_CrsMatrix.h"
56 #include "Epetra_BlockMap.h"
57 #include "Epetra_Map.h"
58 #include "Epetra_Object.h"
59 #include "Epetra_Comm.h"
60 #include "Epetra_RowMatrix.h"
61 #include "Epetra_Time.h"
62 #include "Teuchos_RefCountPtr.hpp"
63 
64 namespace Teuchos {
65  class ParameterList;
66 }
67 
69 
84 
85 public:
86  // @{ Constructors and destructors.
89 
92  {
93  Destroy();
94  }
95 
96  // @}
97  // @{ Construction methods
98 
100  int Initialize();
101 
103  bool IsInitialized() const
104  {
105  return(IsInitialized_);
106  }
107 
109 
117  int Compute();
118 
120  bool IsComputed() const
121  {
122  return(IsComputed_);
123  }
124 
126  /* This method is only available if the Teuchos package is enabled.
127  This method recognizes four parameter names: relax_value,
128  absolute_threshold, relative_threshold and overlap_mode. These names are
129  case insensitive, and in each case except overlap_mode, the ParameterEntry
130  must have type double. For overlap_mode, the ParameterEntry must have
131  type Epetra_CombineMode.
132  */
133  int SetParameters(Teuchos::ParameterList& parameterlist);
134 
136 
145  int SetUseTranspose(bool UseTranspose_in) {UseTranspose_ = UseTranspose_in; return(0);};
146  // @}
147 
148  // @{ Mathematical functions.
149  // Applies the matrix to X, returns the result in Y.
150  int Apply(const Epetra_MultiVector& X,
151  Epetra_MultiVector& Y) const
152  {
153  return(Multiply(false,X,Y));
154  }
155 
156  int Multiply(bool Trans, const Epetra_MultiVector& X,
157  Epetra_MultiVector& Y) const;
158 
160 
173  int ApplyInverse(const Epetra_MultiVector& X, Epetra_MultiVector& Y) const;
174 
176  double Condest(const Ifpack_CondestType CT = Ifpack_Cheap,
177  const int MaxIters = 1550,
178  const double Tol = 1e-9,
179  Epetra_RowMatrix* Matrix_in = 0);
180 
182  double Condest() const
183  {
184  return(Condest_);
185  }
186 
187  // @}
188  // @{ Query methods
189 
191  const Epetra_CrsMatrix & L() const {return(*L_);};
192 
194  const Epetra_Vector & D() const {return(*D_);};
195 
197  const Epetra_CrsMatrix & U() const {return(*U_);};
198 
200  const char* Label() const {return(Label_);}
201 
203  int SetLabel(const char* Label_in)
204  {
205  strcpy(Label_,Label_in);
206  return(0);
207  }
208 
210  double NormInf() const {return(0.0);};
211 
213  bool HasNormInf() const {return(false);};
214 
216  bool UseTranspose() const {return(UseTranspose_);};
217 
219  const Epetra_Map & OperatorDomainMap() const {return(U_->OperatorDomainMap());};
220 
222  const Epetra_Map & OperatorRangeMap() const{return(L_->OperatorRangeMap());};
223 
225  const Epetra_Comm & Comm() const{return(Comm_);};
226 
228  const Epetra_RowMatrix& Matrix() const
229  {
230  return(*A_);
231  }
232 
234  virtual std::ostream& Print(std::ostream& os) const;
235 
237  virtual int NumInitialize() const
238  {
239  return(NumInitialize_);
240  }
241 
243  virtual int NumCompute() const
244  {
245  return(NumCompute_);
246  }
247 
249  virtual int NumApplyInverse() const
250  {
251  return(NumApplyInverse_);
252  }
253 
255  virtual double InitializeTime() const
256  {
257  return(InitializeTime_);
258  }
259 
261  virtual double ComputeTime() const
262  {
263  return(ComputeTime_);
264  }
265 
267  virtual double ApplyInverseTime() const
268  {
269  return(ApplyInverseTime_);
270  }
271 
273  virtual double InitializeFlops() const
274  {
275  return(0.0);
276  }
277 
278  virtual double ComputeFlops() const
279  {
280  return(ComputeFlops_);
281  }
282 
283  virtual double ApplyInverseFlops() const
284  {
285  return(ApplyInverseFlops_);
286  }
287 
288 private:
289 
290  // @}
291  // @{ Private methods
292 
294  Ifpack_ILU(const Ifpack_ILU& RHS) :
295  Comm_(RHS.Comm()),
296  Time_(RHS.Comm())
297  {}
298 
300  Ifpack_ILU& operator=(const Ifpack_ILU& /* RHS */)
301  {
302  return(*this);
303  }
304 
306  void Destroy();
307 
309 
319  int Solve(bool Trans, const Epetra_MultiVector& X, Epetra_MultiVector& Y) const;
320 
321  int ComputeSetup();
322  int InitAllValues(const Epetra_RowMatrix & A, int MaxNumEntries);
323 
325  int LevelOfFill() const {return LevelOfFill_;}
326 
328  double RelaxValue() const {return RelaxValue_;}
329 
331  double AbsoluteThreshold() const {return Athresh_;}
332 
334  double RelativeThreshold() const {return Rthresh_;}
335 
336 #ifndef EPETRA_NO_32BIT_GLOBAL_INDICES
337  int NumGlobalRows() const {return(Graph().NumGlobalRows());};
339 
341  int NumGlobalCols() const {return(Graph().NumGlobalCols());};
342 
344  int NumGlobalNonzeros() const {return(L().NumGlobalNonzeros()+U().NumGlobalNonzeros());};
345 
347  virtual int NumGlobalBlockDiagonals() const {return(Graph().NumGlobalBlockDiagonals());};
348 #endif
349 
350  long long NumGlobalRows64() const {return(Graph().NumGlobalRows64());};
351 
352  long long NumGlobalCols64() const {return(Graph().NumGlobalCols64());};
353 
354  long long NumGlobalNonzeros64() const {return(L().NumGlobalNonzeros64()+U().NumGlobalNonzeros64());};
355 
356  virtual long long NumGlobalBlockDiagonals64() const {return(Graph().NumGlobalBlockDiagonals64());};
357 
359  int NumMyRows() const {return(Graph().NumMyRows());};
360 
362  int NumMyCols() const {return(Graph().NumMyCols());};
363 
365  int NumMyNonzeros() const {return(L().NumMyNonzeros()+U().NumMyNonzeros());};
366 
368  virtual int NumMyBlockDiagonals() const {return(Graph().NumMyBlockDiagonals());};
369 
371  virtual int NumMyDiagonals() const {return(NumMyDiagonals_);};
372 
374 #ifndef EPETRA_NO_32BIT_GLOBAL_INDICES
375  int IndexBase() const {return(Graph().IndexBase());};
376 #endif
377  long long IndexBase64() const {return(Graph().IndexBase64());};
378 
380  const Ifpack_IlukGraph & Graph() const {return(*Graph_);};
381 
384  {
385  return(*A_);
386  }
387 
388  // @}
389  // @{ Internal data
390 
392  Teuchos::RefCountPtr<Epetra_RowMatrix> A_;
393  Teuchos::RefCountPtr<Ifpack_IlukGraph> Graph_;
394  Teuchos::RefCountPtr<Epetra_CrsGraph> CrsGraph_;
395  Teuchos::RefCountPtr<Epetra_Map> IlukRowMap_;
396  Teuchos::RefCountPtr<Epetra_Map> IlukDomainMap_;
397  Teuchos::RefCountPtr<Epetra_Map> IlukRangeMap_;
398  const Epetra_Map * U_DomainMap_;
399  const Epetra_Map * L_RangeMap_;
400  const Epetra_Comm & Comm_;
402  Teuchos::RefCountPtr<Epetra_CrsMatrix> L_;
404  Teuchos::RefCountPtr<Epetra_CrsMatrix> U_;
405  Teuchos::RefCountPtr<Epetra_CrsGraph> L_Graph_;
406  Teuchos::RefCountPtr<Epetra_CrsGraph> U_Graph_;
408  Teuchos::RefCountPtr<Epetra_Vector> D_;
409  bool UseTranspose_;
410 
411  int NumMyDiagonals_;
412  bool Allocated_;
413  bool ValuesInitialized_;
414  bool Factored_;
416  double RelaxValue_;
418  double Athresh_;
420  double Rthresh_;
422  double Condest_;
424  int LevelOfFill_;
426  bool IsInitialized_;
428  bool IsComputed_;
430  char Label_[160];
432  int NumInitialize_;
434  int NumCompute_;
436  mutable int NumApplyInverse_;
438  double InitializeTime_;
440  double ComputeTime_;
442  mutable double ApplyInverseTime_;
444  double ComputeFlops_;
446  mutable double ApplyInverseFlops_;
448  mutable Epetra_Time Time_;
449 
450 };
451 
452 #endif /* IFPACK_ILU_H */
int ApplyInverse(const Epetra_MultiVector &X, Epetra_MultiVector &Y) const
Returns the result of a Epetra_Operator inverse applied to an Epetra_MultiVector X in Y...
Definition: Ifpack_ILU.cpp:575
virtual double InitializeFlops() const
Returns the number of flops in the initialization phase.
Definition: Ifpack_ILU.h:273
virtual int NumCompute() const
Returns the number of calls to Compute().
Definition: Ifpack_ILU.h:243
bool HasNormInf() const
Returns false because this class cannot compute an Inf-norm.
Definition: Ifpack_ILU.h:213
virtual double ComputeFlops() const
Returns the number of flops in the computation phase.
Definition: Ifpack_ILU.h:278
int SetUseTranspose(bool UseTranspose_in)
If set true, transpose of this operator will be applied.
Definition: Ifpack_ILU.h:145
const Epetra_Map & OperatorDomainMap() const
Returns the Epetra_Map object associated with the domain of this operator.
Definition: Ifpack_ILU.h:219
bool UseTranspose() const
Returns the current UseTranspose setting.
Definition: Ifpack_ILU.h:216
Ifpack_IlukGraph: A class for constructing level filled graphs for use with ILU(k) class precondition...
const Epetra_RowMatrix & Matrix() const
Returns a reference to the matrix to be preconditioned.
Definition: Ifpack_ILU.h:228
const Epetra_Comm & Comm() const
Returns the Epetra_BlockMap object associated with the range of this matrix operator.
Definition: Ifpack_ILU.h:225
const Epetra_Map & OperatorRangeMap() const
Returns the Epetra_Map object associated with the range of this operator.
Definition: Ifpack_ILU.h:222
Ifpack_ILU: A class for constructing and using an incomplete lower/upper (ILU) factorization of a giv...
Definition: Ifpack_ILU.h:83
const Epetra_CrsMatrix & U() const
Returns the address of the L factor associated with this factored matrix.
Definition: Ifpack_ILU.h:197
virtual double ComputeTime() const
Returns the time spent in Compute().
Definition: Ifpack_ILU.h:261
~Ifpack_ILU()
Destructor.
Definition: Ifpack_ILU.h:91
int SetLabel(const char *Label_in)
Sets label for this object.
Definition: Ifpack_ILU.h:203
bool IsComputed() const
If factor is completed, this query returns true, otherwise it returns false.
Definition: Ifpack_ILU.h:120
int Compute()
Compute ILU factors L and U using the specified graph, diagonal perturbation thresholds and relaxatio...
Definition: Ifpack_ILU.cpp:334
virtual double ApplyInverseTime() const
Returns the time spent in ApplyInverse().
Definition: Ifpack_ILU.h:267
Ifpack_ScalingType enumerable type.
int SetParameters(Teuchos::ParameterList &parameterlist)
Set parameters using a Teuchos::ParameterList object.
Definition: Ifpack_ILU.cpp:100
Ifpack_Preconditioner: basic class for preconditioning in Ifpack.
int Initialize()
Initialize the preconditioner, does not touch matrix values.
Definition: Ifpack_ILU.cpp:239
const Epetra_CrsMatrix & L() const
Returns the address of the L factor associated with this factored matrix.
Definition: Ifpack_ILU.h:191
virtual double InitializeTime() const
Returns the time spent in Initialize().
Definition: Ifpack_ILU.h:255
virtual double ApplyInverseFlops() const
Returns the number of flops in the application of the preconditioner.
Definition: Ifpack_ILU.h:283
bool IsInitialized() const
Returns true if the preconditioner has been successfully initialized.
Definition: Ifpack_ILU.h:103
double Condest() const
Returns the computed estimated condition number, or -1.0 if not computed.
Definition: Ifpack_ILU.h:182
virtual std::ostream & Print(std::ostream &os) const
Prints on stream basic information about this object.
Definition: Ifpack_ILU.cpp:634
Ifpack_ILU(Epetra_RowMatrix *A)
Constructor.
Definition: Ifpack_ILU.cpp:65
double NormInf() const
Returns 0.0 because this class cannot compute Inf-norm.
Definition: Ifpack_ILU.h:210
const char * Label() const
Returns a character string describing the operator.
Definition: Ifpack_ILU.h:200
virtual int NumApplyInverse() const
Returns the number of calls to ApplyInverse().
Definition: Ifpack_ILU.h:249
virtual int NumInitialize() const
Returns the number of calls to Initialize().
Definition: Ifpack_ILU.h:237
const Epetra_Vector & D() const
Returns the address of the D factor associated with this factored matrix.
Definition: Ifpack_ILU.h:194