/usr/include/trilinos/Epetra_SerialDenseSolver.h is in libtrilinos-epetra-dev 12.12.1-5.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 | /*
//@HEADER
// ************************************************************************
//
// Epetra: Linear Algebra Services Package
// Copyright 2011 Sandia Corporation
//
// Under the terms of Contract DE-AC04-94AL85000 with Sandia Corporation,
// the U.S. Government retains certain rights in this software.
//
// Redistribution and use in source and binary forms, with or without
// modification, are permitted provided that the following conditions are
// met:
//
// 1. Redistributions of source code must retain the above copyright
// notice, this list of conditions and the following disclaimer.
//
// 2. Redistributions in binary form must reproduce the above copyright
// notice, this list of conditions and the following disclaimer in the
// documentation and/or other materials provided with the distribution.
//
// 3. Neither the name of the Corporation nor the names of the
// contributors may be used to endorse or promote products derived from
// this software without specific prior written permission.
//
// THIS SOFTWARE IS PROVIDED BY SANDIA CORPORATION "AS IS" AND ANY
// EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
// IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
// PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL SANDIA CORPORATION OR THE
// CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
// EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
// PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
// PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
// LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
// NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
// SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
//
// Questions? Contact Michael A. Heroux (maherou@sandia.gov)
//
// ************************************************************************
//@HEADER
*/
#ifndef EPETRA_SERIALDENSESOLVER_H
#define EPETRA_SERIALDENSESOLVER_H
class Epetra_SerialDenseMatrix;
#include "Epetra_Object.h"
#include "Epetra_CompObject.h"
#include "Epetra_BLAS.h"
#include "Epetra_LAPACK.h"
//! Epetra_SerialDenseSolver: A class for solving dense linear problems.
/*! The Epetra_SerialDenseSolver class enables the definition, in terms of Epetra_SerialDenseMatrix
and Epetra_SerialDenseVector objects, of a dense linear problem, followed by the solution of that problem via the
most sophisticated techniques available in LAPACK.
The Epetra_SerialDenseSolver class is intended to provide full-featured support for solving linear
problems for general dense rectangular (or square) matrices. It is written on top of BLAS and LAPACK and thus has excellent
performance and numerical capabilities. Using this class, one can either perform simple factorizations and solves or
apply all the tricks available in LAPACK to get the best possible solution for very ill-conditioned problems.
<b>Epetra_SerialDenseSolver vs. Epetra_LAPACK</b>
The Epetra_LAPACK class provides access to most of the same functionality as Epetra_SerialDenseSolver.
The primary difference is that Epetra_LAPACK is a "thin" layer on top of LAPACK and Epetra_SerialDenseSolver
attempts to provide easy access to the more sophisticated aspects of solving dense linear and eigensystems.
<ul>
<li> When you should use Epetra_LAPACK: If you are simply looking for a convenient wrapper around the Fortran LAPACK
routines and you have a well-conditioned problem, you should probably use Epetra_LAPACK directly.
<li> When you should use Epetra_SerialDenseSolver: If you want to (or potentially want to) solve ill-conditioned
problems or want to work with a more object-oriented interface, you should probably use Epetra_SerialDenseSolver.
</ul>
<b>Constructing Epetra_SerialDenseSolver Objects</b>
There is a single Epetra_SerialDenseSolver constructor. However, the matrix, right hand side and solution
vectors must be set prior to executing most methods in this class.
<b>Setting vectors used for linear solves</b>
The matrix A, the left hand side X and the right hand side B (when solving AX = B, for X), can be set by appropriate set
methods. Each of these three objects must be an Epetra_SerialDenseMatrix or and Epetra_SerialDenseVector object. The
set methods are as follows:
<ul>
<li> SetMatrix() - Sets the matrix.
<li> SetVectors() - Sets the left and right hand side vector(s).
</ul>
<b>Vector and Utility Functions</b>
Once a Epetra_SerialDenseSolver is constructed, several mathematical functions can be applied to
the object. Specifically:
<ul>
<li> Factorizations.
<li> Solves.
<li> Condition estimates.
<li> Equilibration.
<li> Norms.
</ul>
<b>Counting floating point operations </b>
The Epetra_SerialDenseSolver class has Epetra_CompObject as a base class. Thus, floating point operations
are counted and accumulated in the Epetra_Flop object (if any) that was set using the SetFlopCounter()
method in the Epetra_CompObject base class.
<b>Strategies for Solving Linear Systems</b>
In many cases, linear systems can be accurately solved by simply computing the LU factorization
of the matrix and then performing a forward back solve with a given set of right hand side vectors. However,
in some instances, the factorization may be very poorly conditioned and this simple approach may not work. In
these situations, equilibration and iterative refinement may improve the accuracy, or prevent a breakdown in
the factorization.
Epetra_SerialDenseSolver will use equilibration with the factorization if, once the object
is constructed and \e before it is factored, you call the function FactorWithEquilibration(true) to force
equilibration to be used. If you are uncertain if equilibration should be used, you may call the function
ShouldEquilibrate() which will return true if equilibration could possibly help. ShouldEquilibrate() uses
guidelines specified in the LAPACK User Guide, namely if SCOND < 0.1 and AMAX < Underflow or AMAX > Overflow, to
determine if equilibration \e might be useful.
Epetra_SerialDenseSolver will use iterative refinement after a forward/back solve if you call
SolveToRefinedSolution(true). It will also compute forward and backward error estimates if you call
EstimateSolutionErrors(true). Access to the forward (back) error estimates is available via FERR() (BERR()).
Examples using Epetra_SerialDenseSolver can be found in the Epetra test directories.
*/
//=========================================================================
class EPETRA_LIB_DLL_EXPORT Epetra_SerialDenseSolver :
public Epetra_CompObject, public Epetra_BLAS,
public Epetra_LAPACK, public Epetra_Object {
public:
//! @name Constructor/Destructor Methods
//@{
//! Default constructor; matrix should be set using SetMatrix(), LHS and RHS set with SetVectors().
Epetra_SerialDenseSolver();
//! Epetra_SerialDenseSolver destructor.
virtual ~Epetra_SerialDenseSolver();
//@}
//! @name Set Methods
//@{
//! Sets the pointers for coefficient matrix
int SetMatrix(Epetra_SerialDenseMatrix & A);
//! Sets the pointers for left and right hand side vector(s).
/*! Row dimension of X must match column dimension of matrix A, row dimension of B
must match row dimension of A. X and B must have the same dimensions.
*/
int SetVectors(Epetra_SerialDenseMatrix & X, Epetra_SerialDenseMatrix & B);
//@}
//! @name Strategy modifying Methods
//@{
//! Causes equilibration to be called just before the matrix factorization as part of the call to Factor.
/*! This function must be called before the factorization is performed.
*/
void FactorWithEquilibration(bool Flag) {Equilibrate_ = Flag; return;};
//! If Flag is true, causes all subsequent function calls to work with the transpose of \e this matrix, otherwise not.
void SolveWithTranspose(bool Flag) {Transpose_ = Flag; if (Flag) TRANS_ = 'T'; else TRANS_ = 'N'; return;};
//! Causes all solves to compute solution to best ability using iterative refinement.
void SolveToRefinedSolution(bool Flag) {RefineSolution_ = Flag; return;};
//! Causes all solves to estimate the forward and backward solution error.
/*! Error estimates will be in the arrays FERR and BERR, resp, after the solve step is complete.
These arrays are accessible via the FERR() and BERR() access functions.
*/
void EstimateSolutionErrors(bool Flag) ;
//@}
//! @name Factor/Solve/Invert Methods
//@{
//! Computes the in-place LU factorization of the matrix using the LAPACK routine \e DGETRF.
/*!
\return Integer error code, set to 0 if successful.
*/
virtual int Factor(void);
//! Computes the solution X to AX = B for the \e this matrix and the B provided to SetVectors()..
/*!
\return Integer error code, set to 0 if successful.
*/
virtual int Solve(void);
//! Inverts the \e this matrix.
/*!
\return Integer error code, set to 0 if successful. Otherwise returns the LAPACK error code INFO.
*/
virtual int Invert(void);
//! Computes the scaling vector S(i) = 1/sqrt(A(i,i)) of the \e this matrix.
/*!
\return Integer error code, set to 0 if successful. Otherwise returns the LAPACK error code INFO.
*/
virtual int ComputeEquilibrateScaling(void);
//! Equilibrates the \e this matrix.
/*!
\return Integer error code, set to 0 if successful. Otherwise returns the LAPACK error code INFO.
*/
virtual int EquilibrateMatrix(void);
//! Equilibrates the current RHS.
/*!
\return Integer error code, set to 0 if successful. Otherwise returns the LAPACK error code INFO.
*/
int EquilibrateRHS(void);
//! Apply Iterative Refinement.
/*!
\return Integer error code, set to 0 if successful. Otherwise returns the LAPACK error code INFO.
*/
virtual int ApplyRefinement(void);
//! Unscales the solution vectors if equilibration was used to solve the system.
/*!
\return Integer error code, set to 0 if successful. Otherwise returns the LAPACK error code INFO.
*/
int UnequilibrateLHS(void);
//! Returns the reciprocal of the 1-norm condition number of the \e this matrix.
/*!
\param Value Out
On return contains the reciprocal of the 1-norm condition number of the \e this matrix.
\return Integer error code, set to 0 if successful. Otherwise returns the LAPACK error code INFO.
*/
virtual int ReciprocalConditionEstimate(double & Value);
//@}
//! @name Query methods
//@{
//! Returns true if transpose of \e this matrix has and will be used.
bool Transpose() {return(Transpose_);};
//! Returns true if matrix is factored (factor available via AF() and LDAF()).
bool Factored() {return(Factored_);};
//! Returns true if factor is equilibrated (factor available via AF() and LDAF()).
bool A_Equilibrated() {return(A_Equilibrated_);};
//! Returns true if RHS is equilibrated (RHS available via B() and LDB()).
bool B_Equilibrated() {return(B_Equilibrated_);};
//! Returns true if the LAPACK general rules for equilibration suggest you should equilibrate the system.
virtual bool ShouldEquilibrate() {ComputeEquilibrateScaling(); return(ShouldEquilibrate_);};
//! Returns true if forward and backward error estimated have been computed (available via FERR() and BERR()).
bool SolutionErrorsEstimated() {return(SolutionErrorsEstimated_);};
//! Returns true if matrix inverse has been computed (inverse available via AF() and LDAF()).
bool Inverted() {return(Inverted_);};
//! Returns true if the condition number of the \e this matrix has been computed (value available via ReciprocalConditionEstimate()).
bool ReciprocalConditionEstimated() {return(ReciprocalConditionEstimated_);};
//! Returns true if the current set of vectors has been solved.
bool Solved() {return(Solved_);};
//! Returns true if the current set of vectors has been refined.
bool SolutionRefined() {return(SolutionRefined_);};
//@}
//! @name Data Accessor methods
//@{
//! Returns pointer to current matrix.
Epetra_SerialDenseMatrix * Matrix() const {return(Matrix_);};
//! Returns pointer to factored matrix (assuming factorization has been performed).
Epetra_SerialDenseMatrix * FactoredMatrix() const {return(Factor_);};
//! Returns pointer to current LHS.
Epetra_SerialDenseMatrix * LHS() const {return(LHS_);};
//! Returns pointer to current RHS.
Epetra_SerialDenseMatrix * RHS() const {return(RHS_);};
//! Returns row dimension of system.
int M() const {return(M_);};
//! Returns column dimension of system.
int N() const {return(N_);};
//! Returns pointer to the \e this matrix.
double * A() const {return(A_);};
//! Returns the leading dimension of the \e this matrix.
int LDA() const {return(LDA_);};
//! Returns pointer to current RHS.
double * B() const {return(B_);};
//! Returns the leading dimension of the RHS.
int LDB() const {return(LDB_);};
//! Returns the number of current right hand sides and solution vectors.
int NRHS() const {return(NRHS_);};
//! Returns pointer to current solution.
double * X() const {return(X_);};
//! Returns the leading dimension of the solution.
int LDX() const {return(LDX_);};
//! Returns pointer to the factored matrix (may be the same as A() if factorization done in place).
double * AF() const {return(AF_);};
//! Returns the leading dimension of the factored matrix.
int LDAF() const {return(LDAF_);};
//! Returns pointer to pivot vector (if factorization has been computed), zero otherwise.
int * IPIV() const {return(IPIV_);};
//! Returns the 1-Norm of the \e this matrix (returns -1 if not yet computed).
double ANORM() const {return(ANORM_);};
//! Returns the reciprocal of the condition number of the \e this matrix (returns -1 if not yet computed).
double RCOND() const {return(RCOND_);};
//! Ratio of smallest to largest row scale factors for the \e this matrix (returns -1 if not yet computed).
/*! If ROWCND() is >= 0.1 and AMAX() is not close to overflow or underflow, then equilibration is not needed.
*/
double ROWCND() const {return(ROWCND_);};
//! Ratio of smallest to largest column scale factors for the \e this matrix (returns -1 if not yet computed).
/*! If COLCND() is >= 0.1 then equilibration is not needed.
*/
double COLCND() const {return(COLCND_);};
//! Returns the absolute value of the largest entry of the \e this matrix (returns -1 if not yet computed).
double AMAX() const {return(AMAX_);};
//! Returns a pointer to the forward error estimates computed by LAPACK.
double * FERR() const {return(FERR_);};
//! Returns a pointer to the backward error estimates computed by LAPACK.
double * BERR() const {return(BERR_);};
//! Returns a pointer to the row scaling vector used for equilibration.
double * R() const {return(R_);};
//! Returns a pointer to the column scale vector used for equilibration.
double * C() const {return(C_);};
//@}
//! @name I/O methods
//@{
//! Print service methods; defines behavior of ostream << operator.
virtual void Print(std::ostream& os) const;
//@}
protected:
void AllocateWORK() {if (WORK_==0) {LWORK_ = 4*N_; WORK_ = new double[LWORK_];} return;};
void AllocateIWORK() {if (IWORK_==0) IWORK_ = new int[N_]; return;};
void InitPointers();
void DeleteArrays();
void ResetMatrix();
void ResetVectors();
bool Equilibrate_;
bool ShouldEquilibrate_;
bool A_Equilibrated_;
bool B_Equilibrated_;
bool Transpose_;
bool Factored_;
bool EstimateSolutionErrors_;
bool SolutionErrorsEstimated_;
bool Solved_;
bool Inverted_;
bool ReciprocalConditionEstimated_;
bool RefineSolution_;
bool SolutionRefined_;
char TRANS_;
int M_;
int N_;
int Min_MN_;
int NRHS_;
int LDA_;
int LDAF_;
int LDB_;
int LDX_;
int INFO_;
int LWORK_;
int * IPIV_;
int * IWORK_;
double ANORM_;
double RCOND_;
double ROWCND_;
double COLCND_;
double AMAX_;
Epetra_SerialDenseMatrix * Matrix_;
Epetra_SerialDenseMatrix * LHS_;
Epetra_SerialDenseMatrix * RHS_;
Epetra_SerialDenseMatrix * Factor_;
double * A_;
double * FERR_;
double * BERR_;
double * AF_;
double * WORK_;
double * R_;
double * C_;
double * B_;
double * X_;
private:
// Epetra_SerialDenseSolver copy constructor (put here because we don't want user access)
Epetra_SerialDenseSolver(const Epetra_SerialDenseSolver& Source);
Epetra_SerialDenseSolver & operator=(const Epetra_SerialDenseSolver& Source);
};
#endif /* EPETRA_SERIALDENSESOLVER_H */
|