/usr/include/linbox/field/rebind.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 | /* -*- mode: C++; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*- */
/* linbox/field/rebind.h
* Copyright (C) 2005 Jean-Guillaume Dumas
* Time-stamp: <16 Jun 05 09:00:15 Jean-Guillaume.Dumas@imag.fr>
*/
#ifndef __LINBOX_REBIND_H
#define __LINBOX_REBIND_H
namespace LinBox
{
/** \brief used in support of Hom, MatrixHom
Helps define rebind for vector types. See blackbox/sparse.h for example of use.
*/
template<class XXX, class U>
struct Rebind
{
typedef typename XXX::template rebind<U>::other other;
};
}
#endif
|