This file is indexed.

/usr/share/doc/libblitz-doc/examples/cartesian.cpp is in libblitz-doc 1:0.10-3.3.

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
18
19
20
21
22
23
24
25
26
27
28
#include <blitz/array.h>
#include <blitz/array/cartesian.h>
#include <list>

BZ_USING_NAMESPACE(blitz)

int main()
{
    list<int> index1;
    index1.push_back(5);
    index1.push_back(7);
    index1.push_back(9);

    list<int> index2;
    index2.push_back(1);
    index2.push_back(2);
    index2.push_back(4);
    index2.push_back(7);

    CartesianProduct<TinyVector<int,2>,list<int>,2> indexSet(index1,index2);
    typedef CartesianProduct<TinyVector<int,2>,list<int>,2>::iterator T_iterator;

    T_iterator iter = indexSet.begin(), end = indexSet.end();
    for (; iter != end; ++iter)
        cout << *iter << endl;

    return 0;
}