/usr/include/trilinos/AnasaziEigensolver.hpp is in libtrilinos-anasazi-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 | // @HEADER
// ***********************************************************************
//
// Anasazi: Block Eigensolvers Package
// Copyright 2004 Sandia Corporation
//
// Under 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 ANASAZI_EIGENSOLVER_HPP
#define ANASAZI_EIGENSOLVER_HPP
/*! \file AnasaziEigensolver.hpp
\brief Pure virtual base class which describes the basic interface to the iterative eigensolver.
*/
#include "AnasaziConfigDefs.hpp"
#include "AnasaziTypes.hpp"
#include "AnasaziEigensolverDecl.hpp"
#include "AnasaziStatusTestDecl.hpp"
#include "AnasaziEigenproblem.hpp"
#include "AnasaziSortManager.hpp"
#include "AnasaziOutputManager.hpp"
#include "AnasaziOrthoManager.hpp"
#include "Teuchos_ParameterList.hpp"
#include "Teuchos_RCP.hpp"
#include "Teuchos_Array.hpp"
namespace Anasazi {
template<class ScalarType, class MV, class OP>
class Eigensolver {
public:
//! @name Constructors/Destructor
//@{
//! Default Constructor.
Eigensolver() {};
//! Basic Constructor.
/*! This constructor, implemented by all Anasazi eigensolvers, takes an Anasazi::Eigenproblem,
Anasazi::SortManager, Anasazi::OutputManager, and Teuchos::ParameterList as input. These
four arguments are sufficient enough for constructing any Anasazi::Eigensolver object.
*/
Eigensolver( const Teuchos::RCP<Eigenproblem<ScalarType,MV,OP> > &problem,
const Teuchos::RCP<SortManager<ScalarType> > &sorter,
const Teuchos::RCP<OutputManager<ScalarType> > &printer,
const Teuchos::RCP<StatusTest<ScalarType,MV,OP> > &tester,
const Teuchos::RCP<OrthoManager<ScalarType,MV> > &ortho,
Teuchos::ParameterList ¶ms );
//! Destructor.
virtual ~Eigensolver() {};
//@}
//! @name Solver methods
//@{
/*! \brief This method performs eigensolvers iterations until the status test
indicates the need to stop or an error occurs (in which case, an exception is thrown).
*/
virtual void iterate() = 0;
/*! \brief Initialize the solver with the initial vectors from the eigenproblem
* or random data.
*/
virtual void initialize() = 0;
//@}
//! @name Status methods
//@{
//! \brief Get the current iteration count.
virtual int getNumIters() const = 0;
//! \brief Reset the iteration count.
virtual void resetNumIters() = 0;
/*! \brief Get the Ritz vectors from the previous iteration. These are indexed using getRitzIndex().
*
* For a description of the indexing scheme, see getRitzIndex().
*/
virtual Teuchos::RCP<const MV> getRitzVectors() = 0;
//! \brief Get the Ritz values from the previous iteration.
virtual std::vector<Value<ScalarType> > getRitzValues() = 0;
/*! \brief Get the index used for indexing the compressed storage used for Ritz vectors for real, non-Hermitian problems.
*
* index has length numVecs, where each entry is 0, +1, or -1. These have the following interpretation:
* - index[i] == 0: signifies that the corresponding eigenvector is stored as the i column of Evecs. This will usually be the
* case when ScalarType is complex, an eigenproblem is Hermitian, or a real, non-Hermitian eigenproblem has a real eigenvector.
* - index[i] == +1: signifies that the corresponding eigenvector is stored in two vectors: the real part in the i column of Evecs and the <i><b>positive</b></i> imaginary part in the i+1 column of Evecs.
* - index[i] == -1: signifies that the corresponding eigenvector is stored in two vectors: the real part in the i-1 column of Evecs and the <i><b>negative</b></i> imaginary part in the i column of Evecs
*/
virtual std::vector<int> getRitzIndex() = 0;
//! \brief Get the current residual norms
/*! \return A vector of length blockSize containing the norms of the residuals,
according to the orthogonalization manager norm() method.
*/
virtual std::vector<typename Teuchos::ScalarTraits<ScalarType>::magnitudeType> getResNorms() = 0;
//! Get the current residual 2-norms
//! \return A vector of length blockSize containing the 2-norms of the residuals.
virtual std::vector<typename Teuchos::ScalarTraits<ScalarType>::magnitudeType> getRes2Norms() = 0;
//! Get the 2-norms of the Ritz residuals.
//! \return A vector of length blockSize containing the 2-norms of the Ritz residuals.
virtual std::vector<typename Teuchos::ScalarTraits<ScalarType>::magnitudeType> getRitzRes2Norms() = 0;
//! Get the dimension of the search subspace used to generate the current eigenvectors and eigenvalues.
virtual int getCurSubspaceDim() const = 0;
//! Get the maximum dimension allocated for the search subspace.
virtual int getMaxSubspaceDim() const = 0;
//@}
//! @name Accessor methods
//@{
//! Set a new StatusTest for the solver.
virtual void setStatusTest(Teuchos::RCP<StatusTest<ScalarType,MV,OP> > test) = 0;
//! Get the current StatusTest used by the solver.
virtual Teuchos::RCP<StatusTest<ScalarType,MV,OP> > getStatusTest() const = 0;
//! Get a constant reference to the eigenvalue problem.
virtual const Eigenproblem<ScalarType,MV,OP>& getProblem() const = 0;
//! Get the blocksize to be used by the iterative solver in solving this eigenproblem.
virtual int getBlockSize() const = 0;
//! \brief Set the blocksize to be used by the iterative solver in solving this eigenproblem.
virtual void setBlockSize(int blockSize) = 0;
//! Set the auxiliary vectors for the solver.
virtual void setAuxVecs(const Teuchos::Array<Teuchos::RCP<const MV> > &auxvecs) = 0;
//! Get the auxiliary vectors for the solver.
virtual Teuchos::Array<Teuchos::RCP<const MV> > getAuxVecs() const = 0;
//! States whether the solver has been initialized or not.
virtual bool isInitialized() const = 0;
//@}
//! @name Output methods
//@{
//! This method requests that the solver print out its current status to screen.
virtual void currentStatus(std::ostream &os) = 0;
//@}
};
} // end Anasazi namespace
#endif /* ANASAZI_EIGENSOLVER_HPP */
|