/usr/include/m4ri/triangular_russian.h is in libm4ri-dev 20130416-6.
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 36 37 38 39 40 41 42 43 44 45 46 47 48 | /**
* \file triangular_russian.h
* \brief TRSM and TRTRI via Gray code tables.
*
* \author Martin Albrecht <martinralbrecht@googlemail.com>
*/
#ifndef M4RI_TRIANGULAR_RUSSIAN
#define M4RI_TRIANGULAR_RUSSIAN
/*******************************************************************
*
* M4RI: Linear Algebra over GF(2)
*
* Copyright (C) 2008-2011 Martin Albrecht <martinralbrecht@googlemail.com>
*
* Distributed under the terms of the GNU General Public License (GPL)
* version 2 or higher.
*
* This code is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* General Public License for more details.
*
* The full text of the GPL is available at:
*
* http://www.gnu.org/licenses/
*
********************************************************************/
#include <m4ri/mzd.h>
void _mzd_trsm_upper_left_russian(mzd_t const *U, mzd_t *B, int k);
/**
* \brief Invert the upper triangular matrix A using Kronrod's method.
*
* \param A Matrix to be inverted (overwritten).
* \param k Table size parameter, may be 0 for automatic choice.
*
* \wordoffset
*
* \return Inverse of A or throws an error
*/
mzd_t *mzd_trtri_upper_russian(mzd_t *A, int k);
#endif //M4RI_TRIANGULAR_RUSSIAN
|