This file is indexed.

/usr/share/doc/python-ufl/demo/ProjectionSystem.ufl is in python-ufl-doc 2017.2.0.0-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
element = FiniteElement("Lagrange", triangle, 1)
v = TestFunction(element)
u = TrialFunction(element)
f = Coefficient(element)

a = u*v*dx
L = f*v*dx