This file is indexed.

/usr/share/doc/rheolef-doc/examples/embankment.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
 8
 9
10
11
space embankment_space (const geo& omega, string approx) {
  space Xh (omega, approx, "vector");
  Xh.block("left");
  if (omega.dimension() >= 2) 
    Xh.block("bottom");
  if (omega.dimension() == 3) {
    Xh.block("right");
    Xh.block("back");
  }
  return Xh;
}