This file is indexed.

/usr/include/linbox/blackbox/toeplitz.h is in liblinbox-dev 1.4.2-5build1.

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
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
/* *******************************************************************
 *    ntl-toeplitz.h
 *    Copyright (C) 2002 Austin Lobo, B. David Saunders
 *
 *    Template for Toeplitz specification for ntl Arithmetic
 *    Linbox version 2001 and 2002 from a version
 *    Designed by A.Lobo and B.D. Saunders in 4/98
 *  ========LICENCE========
 * This file is part of the library LinBox.
 *
 * LinBox 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 __LINBOX_toeplitz_H
#define __LINBOX_toeplitz_H

#include <iostream>
#include <vector>
#include "linbox/vector/vector-traits.h"
#include "linbox/solutions/methods.h"  // for shape
#include "linbox/solutions/solution-tags.h"  // to offer trace, det
#include "linbox/linbox-config.h"
#include "linbox/blackbox/blackbox-interface.h"

#ifdef __LINBOX_HAVE_NTL
#include "linbox/ring/ntl.h"
#endif

//#define DBGMSGS 1

/*! @file blackbox/toeplitz.h
 *   @brief Partial Specialization of Toeplitz for Dense vectors from  an FFT based on Shoup's NTL library.
 *
 *   This file is included at the end of the template specification
 *   for Toeplitz.h
 */

namespace LinBox
{
	template <class _Field, class _PRing>
	class ToeplitzBase : public  BlackboxInterface {
	protected: // Constructors etc. are protected because stand-alone instances of this
		// class should not be constructed; use Toeplitz instead.
		typedef _PRing PRing;
		typedef typename _PRing::Element Poly;

		typedef typename _PRing::CoeffField Field;

		typedef typename _PRing::Coeff Element;

		//------- CONSTRUCTORS AND DESTRUCTORS

		virtual ~ToeplitzBase();                // Destructor
		// ToeplitzBase();                 // Zero Param Constructor
		ToeplitzBase( const Field& F);// Field only cstr. JGD 30.09.2003
		ToeplitzBase( const PRing& PF );
		// Constructor using a polynomial field, a polynomial in that
		// field representing the matrix, and the matrix dimensions
		// If no n is given, it will default to the same as m.
		ToeplitzBase( const PRing& PF, const Poly& p,
			      size_t m, size_t n=0 );


	public:
		//------- READ-ONLY ACCESSOR, and OBSERVER METHODS

		template<typename _Tp1, typename _Tp2>
		struct rebind
		{ typedef ToeplitzBase<_Tp1,_Tp2> other; };



		inline size_t rowdim() const { return rowDim; }// Number of Rows
		inline size_t coldim() const { return colDim; }// Number of Cols
		inline size_t sysdim() const { return sysDim; } // Max of rows & columns;
		const Field& field() const {return *field_;}

		//------- MUTATOR METHODS

		void setToUniModUT() ;      // Convert to UTriang matrix with det 1
		void setToUniModLT() ;      // Convert to LTriang matrix with det 1

		//------ SERVICE METHODS

		//      void convert(NTL::ZZ_pX &pout, const std::vector<Element> &vin);
	protected:
		PRing P; 	  // Polynomial field
		const Field *field_;           // Field parameter (coefficient field)

		size_t rowDim;             // row dimension
		size_t colDim;             // col dimension
		size_t sysDim;             // max{row,col} dimension

		Poly  pdata;         // Poly rep of the toeplitz matrix
		Poly  rpdata;        // reverse polynomial

		static const int UnimodUT=1;
		static const int UnimodLT=2;
		BlackboxSpecifier shape; // Helps us deduce what our shape is
		//std::vector<NTL::ZZ_p> data;    // The vector of coeffs of the polynomial

		/* These were only used by the XML stuff and are more or less
		 * obsolete with the presence of polynomial rings.

		 void convert(Poly &pout, const std::vector<Element> &vin);
		// CONVERTS the input vector of field Elements to a ZZ_pX

		void convert( std::vector<Element> &vout, const Poly &pin);
		// Converts from polynomial rep to a vector rep
		// inverse of the convert from Element to ZZ_pX
		*/
	public:
		std::ostream & write(std::ostream & out) const
		{
			return out << "NO WRITE IMPLEMENTED" << std::endl;
		}

	void read(std::istream & in)
	{
		throw(NotImplementedYet());
	}


	}; //  class ToeplitzBase

	/** \brief This is the blackbox representation of a Toeplitz matrix.

	  \ingroup blackbox
	 * It stores the 2n-1 values of the first row and column.
	 * The _PRing template parameter should be a polynomial ring.
	 * Computations on the matrix will be performed using this polynomial ring.
	 * The apply is a call to polynomial multiplication and if the poly ring is
	 * FFT based for large n, apply will run in O(n lg(n)) time.
	 */
#ifdef __LINBOX_HAVE_NTL
	template< class _CField, class _PRing = NTL_ZZ_pX >
	#else
	template< class _CField, class _PRing >
	#endif
	class Toeplitz : public ToeplitzBase<_CField,_PRing> {
	protected:
		typedef ToeplitzBase<_CField,_PRing> Father_t;
	public:
		typedef typename Father_t::PRing PRing;
		typedef typename Father_t::Poly Poly;

		typedef typename Father_t::Field Field;

		typedef typename Father_t::Element Element;

		Toeplitz(const Field& F) :
			Father_t(F)
		{}
		Toeplitz( const PRing& PF ) :
			Father_t(PF)
		{}
		Toeplitz( const PRing& PF, const Poly& p,
			  size_t m, size_t n=0 ) :
			Father_t(PF,p,m,n)
		{}

		using Father_t::field_;
		using Father_t::field;
	}; // end of class Toeplitz

	/** Specialization for when the field of matrix elements is the same
	 * as the coefficient field of the polynomial field.
	 */
	template< class _PRing >
	class Toeplitz< typename _PRing::CoeffField, _PRing > : public ToeplitzBase< typename _PRing::CoeffField, _PRing > {
	protected:
		typedef ToeplitzBase< typename _PRing::CoeffField, _PRing > Father_t;
		using Father_t::P;
		using Father_t::rowDim;
		using Father_t::colDim;
		using Father_t::sysDim;
		using Father_t::shape;
		using Father_t::pdata;
		using Father_t::rpdata;
		using Father_t::field_;
	public:
		using Father_t::rowdim;
		using Father_t::coldim;
		typedef typename Father_t::PRing PRing;
		typedef typename Father_t::Poly Poly;

		typedef typename Father_t::Field Field;

		typedef typename Father_t::Element Element;

		//------- CONSTRUCTORS AND DESTRUCTORS
		Toeplitz(const Field& F) :
			Father_t(F)
		{}
		Toeplitz( const PRing& PF ) :
			Father_t(PF)
		{}
		Toeplitz( const PRing& PF, const Poly& p,
			  size_t m, size_t n=0 ) :
			Father_t(PF,p,m,n)
		{}

		Toeplitz( const Field& F,    // Cnstr. with Field and STL vec. of elems
			  const std::vector<Element>& v) :
			Father_t(F)
		{ init_vector(v); }

		Toeplitz( const Field& F,    // Cnstr. with Field and STL vec. of elems
			  const BlasVector<Field>& v) :
			Father_t(F)
		{ init_vector(v.getRep()); }

		//! @bug this is not MM format at all
		std::ostream & write( std::ostream& os = std::cout) const;        // Print the contents to the screen

		void   write( char *outFileName) const;
		// Print the contents to a file

		template<class OutVector, class InVector>
		OutVector& apply( OutVector &v_out, const InVector& v_in) const;

		template<class OutVector, class InVector>
		OutVector& applyTranspose( OutVector &v_out, const InVector& v_in) const;

		// Get the determinant of the matrix
		Element& det( Element& res ) const;

		Element& trace( Element& res ) const;

	protected:
		// initialization via a vector. Usually called by a constructor
		// Moved in a separate protected function to enable easier
		// inherited constructor calls. JGD 30.09.2003
		void init_vector( const std::vector<Element>& v );
	}; //  Toeplitz specialization

	template<class Field, class PD>
	struct DetCategory<Toeplitz<Field,PD> >	{ typedef typename SolutionTags::Local Tag; };

	template<class Field, class PD>
	struct TraceCategory<Toeplitz<Field,PD> >	{ typedef typename SolutionTags::Local Tag; };



} // namespace LinBox

#include "linbox/blackbox/toeplitz.inl"

#endif //__LINBOX_toeplitz_H


// Local Variables:
// mode: C++
// tab-width: 8
// indent-tabs-mode: nil
// c-basic-offset: 8
// End:
// vim:sts=8:sw=8:ts=8:noet:sr:cino=>s,f0,{0,g0,(0,\:0,t0,+0,=s