/usr/include/trilinos/LOCA_Epetra_AugmentedOp.H is in libtrilinos-nox-dev 12.10.1-3.
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 | //@HEADER
// ************************************************************************
//
// LOCA: Library of Continuation Algorithms Package
// Copyright (2005) Sandia Corporation
//
// Under terms of Contract DE-AC04-94AL85000, there is a non-exclusive
// license for use of this work by or on behalf of the U.S. Government.
//
// 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 Roger Pawlowski (rppawlo@sandia.gov) or
// Eric Phipps (etphipp@sandia.gov), Sandia National Laboratories.
// ************************************************************************
// CVS Information
// $Source$
// $Author$
// $Date$
// $Revision$
// ************************************************************************
//@HEADER
#ifndef LOCA_EPETRA_AUGMENTEDOP_H
#define LOCA_EPETRA_AUGMENTEDOP_H
#include "Teuchos_RCP.hpp"
#include "Epetra_Operator.h" // base class
#include "Epetra_LocalMap.h" // class data element
#include "Epetra_MultiVector.h" // class data element
#include "NOX_Common.H" // for std::string data member
#include "NOX_Abstract_MultiVector.H" // for DenseMatrix
#include "Teuchos_LAPACK.hpp" // class data element
// Forward declarations
namespace LOCA {
class GlobalData;
}
namespace LOCA {
namespace Epetra {
/*!
* \brief %Epetra operator representing a \f$n+m\f$ bordered matrix.
*/
/*!
* The %LOCA::Epetra::AugmentedOp is an Epetra_Operator representing the
* \f$n+m\f$ bordered matrix
* \f[
* \begin{bmatrix}
* J & A \\
* B^T & C
* \end{bmatrix}
* \f]
* where \f$J\f$ is an Epetra_Operator representing an \f$n\times n\f$
* matrix, and \f$A\f$ and \f$B\f$ are length \f$n\f$ Epetra_MultiVector's
* with \f$m\f$ columns, and \f$C\f$ is an \f$m\times m\f$ dense matrix.
* It is assumed the Epetra_Map's for \f$A\f$, \f$B\f$, and
* \f$J\f$ are the same and the corresponding map for the bordered
* matrix is constructed from this map by storing the additional components
* on processor 0. The buildEpetraAugmentedMultiVec() method can be used
* to construct an Epetra_MultiVector using this map, a supplied
* length \f$n\f$ Epetra_MultiVector and an \f$m\times m\f$ matrix, while
* setEpetraAugmentedMultiVec() splits an extended multivector into its
* length \f$n\f$ and \f$m\f$ components. The
* Apply() method performs the \f$n+m\times n+m\f$ matrix multiplication
* while ApplyInverse() uses a block-elimination algorithm to compute
* the inverse using the ApplyInverse() method of the underlying operator
* \f$J\f$. In this way, linear systems of the form
* \f[
* \begin{bmatrix}
* J & A \\
* B^T & C
* \end{bmatrix}
* \begin{bmatrix}
* X \\
* Y
* \end{bmatrix} =
* \begin{bmatrix}
* F \\
* G
* \end{bmatrix}
* \f]
* can be solved in a matrix-free mode using the Apply() method. This
* operator can also represent a preconditioner of the form
* \f[
* \begin{bmatrix}
* M & A \\
* B^T & C
* \end{bmatrix}
* \f]
* using the ApplyInvese() method, where \f$M\f$ is a preconditioner
* for \f$J\f$. Note that if \f$J\f$ is nearly singular, the
* preconditioner should not be too good because otherwise the
* preconditining operation represented by ApplyInverse() becomes unstable.
*/
class AugmentedOp : public Epetra_Operator {
public:
//! Constructor
/*!
* Builds the bordered operator using the supplied operator \em jac
* and Epetra_Vector's \em a and \em b. It is assumed \em a, \em b,
* and \em jac all have the same map.
*/
AugmentedOp(const Teuchos::RCP<LOCA::GlobalData>& global_data,
const Teuchos::RCP<Epetra_Operator>& jac,
const Teuchos::RCP<const Epetra_MultiVector>& a,
const Teuchos::RCP<const Epetra_MultiVector>& b,
const Teuchos::RCP<const NOX::Abstract::MultiVector::DenseMatrix> c);
//! Destructor
virtual ~AugmentedOp();
//! If set true, transpose of this operator will be applied.
/*!
* Note that is only valid if the underlying operator \f$J\f$
* supports a transpose.
*/
virtual int SetUseTranspose(bool UseTranspose);
/*!
* \brief Returns the result of a Epetra_Operator applied to a
* Epetra_MultiVector Input in Result.
*/
/*!
* Computes the extended matrix-vector product
* \f[
* \begin{bmatrix}
* J & A \\
* B^T & C
* \end{bmatrix}
* \begin{bmatrix}
* X \\
* Y
* \end{bmatrix} =
* \begin{bmatrix}
* JX + AY \\
* B^T X + CY
* \end{bmatrix}
* \f]
* or its transpose if UseTranpose() is \em true.
*/
virtual int Apply(const Epetra_MultiVector& Input,
Epetra_MultiVector& Result) const;
/*!
* \brief Returns the result of a Epetra_Operator inverse applied to
* an Epetra_MultiVector Input in Result.
*/
/*!
* Solves the extended system
* \f[
* \begin{bmatrix}
* J & A \\
* B^T & C
* \end{bmatrix}
* \begin{bmatrix}
* X \\
* Y
* \end{bmatrix} =
* \begin{bmatrix}
* F \\
* G
* \end{bmatrix}
* \f]
* using the following block-elimination algorithm:
* \f[
* \begin{split}
* X_1 &= J^{-1} F, \\
* X_2 &= J^{-1} A, \\
* Y &= (C-B^T X_2)^{-1}(G-B^T X_1), \\
* X &= X_1 - X_2 Y
* \end{split}
* \f]
* If UseTranpose() is \em true, the tranpose of the system is solved.
*/
virtual int ApplyInverse(const Epetra_MultiVector& X,
Epetra_MultiVector& Y) const;
//! Returns the infinity norm of the bordered matrix.
/*!
* This is defined only if %NormInf() of the underlying operator \f$J\f$
* is defined and is given by
* \f$\|J\|_\infty+\|A\|_\infty+\|B\|_\infty\f$.
*/
virtual double NormInf() const;
//! Returns a character std::string describing the operator
virtual const char* Label () const;
//! Returns the current UseTranspose setting.
virtual bool UseTranspose() const;
/*!
* \brief Returns true if the \e this object can provide an
* approximate Inf-norm, false otherwise.
*/
virtual bool HasNormInf() const;
/*!
* \brief Returns a reference to the Epetra_Comm communicator
* associated with this operator.
*/
virtual const Epetra_Comm & Comm() const;
/*!
* \brief Returns the Epetra_Map object associated with the
* domain of this matrix operator.
*/
virtual const Epetra_Map& OperatorDomainMap () const;
/*!
* \brief Returns the Epetra_Map object associated with the
* range of this matrix operator.
*/
virtual const Epetra_Map& OperatorRangeMap () const;
//! Initialiazes operator for a solve
virtual void init(const Epetra_MultiVector& x);
/*!
* \brief Builds an extended vector from components
*/
/*!
* Builds an extended vector using the map representing the bordered
* matrix. If \em doCopy is \em true, the contents of \em x are
* copied into the extended vector, otherwise only space for the
* extended vector is created.
*/
virtual Teuchos::RCP<Epetra_MultiVector>
buildEpetraAugmentedMultiVec(
const Epetra_MultiVector& x,
const NOX::Abstract::MultiVector::DenseMatrix *y,
bool doCopy) const;
/*!
* \brief Sets components from extended vector
*/
/*!
* Splits the extended vector \em augMultiVec into components \em x and
* \em y by copying values out of \em extVec.
*/
virtual void
setEpetraAugmentedMultiVec(Epetra_MultiVector& x,
NOX::Abstract::MultiVector::DenseMatrix& y,
const Epetra_MultiVector& augMultiVec) const;
protected:
//! Builds extended domain, range maps
void buildExtendedMap(const Epetra_BlockMap& map,
Epetra_Map*& extMapPtr, bool buildImporter,
bool haveParam);
//! Converts a block map to an equivalent point map
int blockMap2PointMap(const Epetra_BlockMap& BlockMap,
Epetra_Map*& PointMap) const;
private:
//! Private to prohibit copying
AugmentedOp(const AugmentedOp&);
//! Private to prohibit copying
AugmentedOp& operator=(const AugmentedOp&);
protected:
//! LOCA global data object
Teuchos::RCP<LOCA::GlobalData> globalData;
//! Label for operator
std::string label;
//! Stores operator representing \f$J\f$
Teuchos::RCP<Epetra_Operator> jacOperator;
//! Stores underlying domain map
const Epetra_BlockMap& underlyingMap;
//! Stores comm
const Epetra_Comm& underlyingComm;
//! Local map for generating Epetra matrices
Epetra_LocalMap localMap;
//! Stores pointer to a multivector
Teuchos::RCP<const Epetra_MultiVector> a;
//! Stores pointer to b multivector
Teuchos::RCP<const Epetra_MultiVector> b;
//! Stores c matrix
Epetra_MultiVector c;
//! Stores underlying vector local length
int underlyingLength;
//! Number of constraints
int numConstraints;
//! Stores extended domain map
Epetra_Map* extendedMapPtr;
//! Stores extended turning point map for importing param component
Epetra_Map* extendedImportMapPtr;
//! Stores importer object for importing param component
Epetra_Import* extendedImporter;
//! Stores imported input multivector
Epetra_MultiVector* importedInput;
//! Stores parameter component of result multivector
Epetra_MultiVector* result_y;
//! Stores temporary multivector used in ApplyInverse()
Epetra_MultiVector* tmp;
//! Flag indicating whether we have the parameter component
bool haveParamComponent;
//! Flag indicating whether to use transpose of operator
bool useTranspose;
//! LAPACK Wrappers
Teuchos::LAPACK<int,double> dlapack;
};
} // namespace Epetra
} // namespace LOCA
#endif
|