This file is indexed.

/usr/share/doc/rheolef-doc/examples/cavity_dg.icc is in rheolef-doc 6.5-1.

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
struct g: field_functor<g,point> {
  point operator() (const point& x) const { 
    return point((abs(1-x[1]) < 1e-7) ? 1 : 0, 0, 0); }
};
struct f: field_functor<f,point> {
  point operator() (const point& x) const { return point(0,0,0); }
};