This file is indexed.

/usr/include/trilinos/EpetraExt_TimedEpetraOperator.hpp is in libtrilinos-dev 10.4.0.dfsg-1ubuntu2.

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
// Questions? Contact Christopher W. Miller(cmiller@math.umd.edu).
// 
// ***********************************************************************
// @HEADER

#ifndef EPETRAEXT_TIMED_EPETRA_OP_HPP
#define EPETRAEXT_TIMED_EPETRA_OP_HPP

#include "Teuchos_RCP.hpp"
#include "Epetra_Operator.h"
#include "Epetra_MultiVector.h"
#include <Teuchos_Time.hpp>
#include <EpetraExt_ConfigDefs.h>

namespace EpetraExt {
    
  /*! 
   * \brief Class allows for timing the action and inverse action of an
   * Epetra_Opetator.
   */
  class Epetra_Timed_Operator : public Epetra_Operator {
      
  public:

    //! Constructor 
    Epetra_Timed_Operator(const Teuchos::RCP<Epetra_Operator>& A_);
    
    //! Destructor
    virtual ~Epetra_Timed_Operator();

    //! Set to true if the transpose of the operator is requested
    int SetUseTranspose(bool useTranspose);
    
    /*! 
     * \brief Returns the result of a Epetra_Operator applied to a 
     * Epetra_MultiVector Input in Result as described above.
     */
    virtual int Apply(const Epetra_MultiVector& Input, 
                      Epetra_MultiVector& Result) const;

    /*! 
     * \brief Returns the result of the inverse of the operator applied to a 
     * Epetra_MultiVector Input in Result as described above.
     */
    virtual int ApplyInverse(const Epetra_MultiVector& X, 
                             Epetra_MultiVector& Y) const;
    
    //! Returns an approximate infinity norm of the operator matrix.
    virtual double NormInf() const;
    
    //! Returns a character 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;
    
    /*!
     * \brief Returns the total time applying this operator.
     */
    virtual double ApplyTime() const{return this->ApplyTimer->totalElapsedTime(false);};

    /*!
     * \brief Returns the total time applying the inverse of this operator.
     */
    virtual double ApplyInverseTime() const{return this->ApplyInverseTimer->totalElapsedTime(false);};

    /*!
     * \brief Returns a pointer to the underlying Epetra_Operator
     */
    virtual Teuchos::RCP<const Epetra_Operator> ReturnOperator() const{return this->A;};

  private:
    
    //! Private to prohibit copying
    Epetra_Timed_Operator(const Epetra_Timed_Operator&);
    
    //! Private to prohibit copying
    Epetra_Timed_Operator & operator=(const Epetra_Timed_Operator&);
    
  protected:
    
    //! Stores the base operator
    Teuchos::RCP<Epetra_Operator> A;

    //! Keeps track of the apply time 
    Teuchos::RCP<Teuchos::Time> ApplyTimer;

    //! Keeps track of the apply inverse time
    Teuchos::RCP<Teuchos::Time> ApplyInverseTimer;

  }; // class Epetra_Timed_Operator
  
} // namespace EpetraExt

#endif // EPETRAEXT_TIMED_EPETRA_OP_HPP