This file is indexed.

/usr/include/fflas-ffpack/ffpack/ffpack_charpoly_danilevski.inl is in fflas-ffpack-common 2.2.2-5.

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
 49
 50
 51
 52
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
/* -*- mode: C++; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*- */
// vim:sts=8:sw=8:ts=8:noet:sr:cino=>s,f0,{0,g0,(0,\:0,t0,+0,=s

/* ffpack/ffpack_charpoly_danilevski.inl
 * Copyright (C) 2005 Clement Pernet
 *
 * Written by Clement Pernet <Clement.Pernet@imag.fr>
 *
 *
 * ========LICENCE========
 * This file is part of the library FFLAS-FFPACK.
 *
 * FFLAS-FFPACK is free software: you can redistribute it and/or modify
 * it under the terms of the  GNU Lesser General Public
 * License as published by the Free Software Foundation; either
 * version 2.1 of the License, or (at your option) any later version.
 *
 * This library 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
 * Lesser General Public License for more details.
 *
 * You should have received a copy of the GNU Lesser General Public
 * License along with this library; if not, write to the Free Software
 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
 * ========LICENCE========
 *.
 */
#ifndef __FFLASFFPACK_ffpack_charpoly_danilveski_INL
#define __FFLASFFPACK_ffpack_charpoly_danilveski_INL

namespace FFPACK {

//---------------------------------------------------------------------
// CharPoly: Compute the characteristic polynomial of A using
// Danilevski's algorithm.
//---------------------------------------------------------------------

template <class Field, class Polynomial>
std::list<Polynomial>&
Danilevski (const Field& F, std::list<Polynomial>& charp,
			    const size_t N, typename Field::Element_ptr A,
			    const size_t lda)
{
	charp.clear();
	size_t dtot=0;
	typename Field::Element_ptr pivot,e,u1;
	typename Field::Element invp;
	for (size_t k=0; k<N; ++k){
		size_t i = k+1;
		e = pivot = A + (k+1) * lda + k; // coef
		while ((i<N) && F.isZero(*e)) { e += lda; i++; }
		if (i < N){
			if (i > k + 1) {
				FFLAS::fswap (F, N-k, e, 1, pivot, 1);
				FFLAS::fswap (F, N, A+i, lda, A+k+1, lda);
			}
			F.inv (invp, *pivot);
			FFLAS::fscalin (F, N-k-1, invp, pivot+1, 1);
			FFLAS::fscalin (F, N-dtot, *pivot, A+dtot*lda+k+1, lda);
			// X <- X - uw
			FFLAS::fger (F, k + 1-dtot, N - k -1, F.mOne,
			      A + dtot*lda + k, lda, pivot+1, 1,
			      A+k+1+dtot*lda, lda);
			if (k<N-2){

				// Y <- Y - vw
				FFLAS::fger (F, N-k-2, N-k-1,  F.mOne, pivot+lda, lda, pivot+1, 1,
				      pivot+lda+1,lda);
				//6
				fgemv (F, FFLAS::FflasNoTrans, N-dtot, N-k-2,
				        F.one, A+dtot*lda+k+2, lda, pivot+lda, lda,  F.one,
				       A+dtot*lda+k+1,lda);
			}
			//5
			u1 = A+dtot*lda+k;
			for (i = dtot; i <= k; ++i){
				F.addin( *(u1+lda+1), *u1);
				u1+=lda;
			}
		}
		if (i==N){// completed one companion block
		size_t d;
			d = k+1-dtot;
			typename Field::Element_ptr Ai = A+k+dtot*lda;
			Polynomial * P = new Polynomial(d+1);
			for (i = 0; i < d; ++i){
				F.neg (P->operator[](i), *(Ai+i*lda));
			}
			F.assign( (*P)[d],  F.one);
			charp.push_front(*P);
			dtot+=d;
		}
	}
	return charp;
}

} // FFPACK

#endif // __FFLASFFPACK_ffpack_charpoly_danilveski_INL