This file is indexed.

/usr/share/doc/cadabra/algorithms/rename_dummies.tex is in cadabra 1.39-0.2ubuntu2.

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
\cdbalgorithm{rename\_dummies}{}

Rename the dummy indices in an expression. This can be necessary in
order to make various terms in a sum use the same names for the
indices, so that they can be collected.
\begin{screen}{1,2,3,5}
{m,n,p,q,r,s}::Indices(vector).
A_{m n} B_{m n} - A_{p q} B_{p q};
@rename_dummies!(%);
A_{m n} B_{m n} - A_{m n} B_{m n};
@collect_terms!(%);
0;
\end{screen}
Note that the indices need to have been declared as being part of an
index list, using the \subsprop{Indices} property.

\cdbseeprop{Indices}