/usr/include/trilinos/AnasaziEigensolver.hpp is in libtrilinos-anasazi-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 | // @HEADER
// ***********************************************************************
//
// Anasazi: Block Eigensolvers Package
// Copyright (2004) 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.
//
// This library is free software; you can redistribute it and/or modify
// it under the terms of the GNU Lesser General Public License as
// published by the Free Software Foundation; either version 2.1 of the
// License, or (at your option) any later version.
//
// This library is distributed in the hope that it will be useful, but
// WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
// Lesser General Public License for more details.
//
// You should have received a copy of the GNU Lesser General Public
// License along with this library; if not, write to the Free Software
// Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301
// USA
// 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 */
|