/usr/include/linbox/blackbox/submatrix-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 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 | /* -*- mode:C++ -*- */
/* File: submatrix-traits.h
* Author: Zhendong Wan
*/
#ifndef __SUBMATRIX_TRAITS_H__
#define __SUBMATRIX_TRAITS_H__
#include <linbox/blackbox/dense.h>
#include <linbox/blackbox/submatrix.h>
namespace LinBox {
template<class Matrix>
class SubMatrixTraits;
template<class Field>
class SubMatrixTraits<DenseMatrix<Field> > {
public:
typedef Submatrix<DenseMatrix<Field> > value_type;
};
template<class Field>
class SubMatrixTraits<Submatrix<DenseMatrix<Field> > > {
public:
typedef Submatrix<DenseMatrix<Field> > value_type;
};
}
#endif
|