This file is indexed.

/usr/include/trilinos/Pike_Solver_BlockJacobi.hpp is in libtrilinos-pike-dev 12.4.2-2.

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
#ifndef PIKE_SOLVER_BLOCK_JACOBI_HPP
#define PIKE_SOLVER_BLOCK_JACOBI_HPP

#include "Pike_Solver_DefaultBase.hpp"
#include "Teuchos_RCP.hpp"

namespace Teuchos { template<typename> class Comm; }

namespace pike {

  class BlockJacobi : public pike::SolverDefaultBase {
    
  public:

    BlockJacobi();
    void completeRegistration();
    void stepImplementation();

    void registerComm(const Teuchos::RCP<const Teuchos::Comm<int> >& comm);

  private:
    
    bool barrierTransfers_;
    bool barrierSolves_;
    Teuchos::RCP<const Teuchos::Comm<int> > comm_;

  };

}

#endif