This file is indexed.

/usr/share/doc/rheolef-doc/examples/navier_stokes_upw_dg.h is in rheolef-doc 6.5-1build1.

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
#include "navier_stokes_dg.h"
struct navier_stokes_upw_dg: navier_stokes_dg {
  typedef valarray<field> value_type;
  typedef Float           float_type;
  navier_stokes_upw_dg (Float Re, const geo& omega, string approx);
  value_type residue     (const value_type& uh) const;
  void update_derivative (const value_type& uh) const;
};
#include "navier_stokes_upw_dg.icc"