This file is indexed.

/usr/include/trilinos/IOContFileUtils.H 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
#ifndef I_O_CONT_FILE_UTILS_H
#define I_O_CONT_FILE_UTILS_H

#include "Teuchos_ParameterList.hpp"

// Write the header of the continuation file
bool WriteHeaderToContFile( const std::string & fileName,
    const Teuchos::ParameterList & fileParams );

// Add a line to the continuation file
bool UpdateContFile( const std::string & fileName,
    const int & idStep,
    const Teuchos::ParameterList & fileParams );

// Restart a continuation file from idStep
bool RestartContFile( const std::string & fileName, const int & idStep );

// Removes the rather annoying "[unused]" flag in the parameters
bool TouchContFileParameters( Teuchos::ParameterList & fileParams );

#endif