This file is indexed.

/usr/include/linbox/blackbox/random-matrix-traits.h is in liblinbox-dev 1.1.6~rc0-4.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
12
13
14
15
16
17
18
/* -*- mode:C++ -*- */

/* File: random-matrix-traits.h
 *  Author: Zhendong Wan
 */
#ifndef __RANDOM_MATRIX_TRAITS_H__
#define __RANDOM_MATRIX_TRAITS_H__

namespace LinBox {

	template<class Matrix>
	class RandomMatrixTraits{
		public:
		typedef Matrix value_type;
	};
}

#endif