This file is indexed.

/usr/include/linbox/field/unparametric.h is in liblinbox-dev 1.3.2-1.1+b1.

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
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
/* linbox/field/unparametric.h
 * Copyright (C) 1999-2005 William J Turner,
 *               2001 Bradford Hovinen
 *               2005 Clement Pernet
 *
 * Written by W. J. Turner <wjturner@acm.org>,
 *            Bradford Hovinen <hovinen@cis.udel.edu>
 *
 * ========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_field_unparametric_H
#define __LINBOX_field_unparametric_H
#include <typeinfo>

#include <string>
#include <algorithm>


#include "linbox/linbox-config.h"
#include "linbox/integer.h"
#include "linbox/field/field-interface.h"
#include "linbox/randiter/unparametric.h"
#include "linbox/field/field-traits.h"
#include <fflas-ffpack/field/unparametric.h>
#include "linbox/randiter/nonzero.h"
//#if __LINBOX_HAVE_NTL
//#include "linbox/field/ntl-RR.h"
//#endif // __LINBOX_HAVE_NTL


namespace LinBox
{

    using Givaro::Caster;

#if 0
#if __LINBOX_HAVE_NTL
	typedef NTL::RR Targ;
	template <>
	Targ& Caster<Targ, int> (Targ& t, const int& s)
	{
		return t = s;
	}
#endif // __LINBOX_HAVE_NTL
#endif

	template <class Ring>
	struct ClassifyRing;

	template <class K>
	class UnparametricField;

	// using FFPACK::UnparametricField ;
	using FFPACK::UnparametricOperations;

	template <class K>
	struct ClassifyRing<UnparametricField<K> > {
		typedef RingCategories::GenericTag categoryTag;
	};

	template <>
	struct ClassifyRing<UnparametricField<integer> > {
		typedef RingCategories::IntegerTag categoryTag;
	};


	/** \brief Unparameterized field adapter.
	 * \ingroup field
	 * \defgroup UnparametricField UnparametricField
	 *
	 * A field having an interface similar to that of floats is adapted to
	 * LinBox.
	 *
	 *  Used to generate efficient field classes for unparameterized fields
	 *  (or hidden parameter fields).
	 *
	 *  Some fields are implemented by definition of the C++ arithmetic
	 *  operators, such as <code>z = x*y</code>, for \c x, \c y, \c z
	 *  instances of a type \c K.  The LinBox field LinBox::Unparametric<K>
	 *  is the adaptation to LinBox.
	 *
	 *  For a typical unparametric field, some of the methods must be
	 *  defined in a specialization.
	 */
	template <class K>
	class UnparametricField : public FieldInterface,
		public  FFPACK::UnparametricField<K> {
	protected:
		integer _p; integer _card;
	public:
		typedef typename FFPACK::UnparametricField<K> Father_t ;

		/** @name Common Object Interface for a LinBox Field.
		 * These methods and member types are required of all LinBox fields.
		 * See \ref FieldArchetype  for detailed specifications.
		 */
		//@{

		/** The field's element type.
		 * Type K must provide a default constructor,
		 * a copy constructor, a destructor, and an assignment operator.
		 */

		typedef K Element;

		/// Type of random field element generators.
		typedef UnparametricRandIter<K> RandIter;

		/** @name Field Object Basics.
		*/
		//@{

		/** Builds this field to have characteristic q and cardinality q<sup>e</sup>.
		 *  This constructor must be defined in a specialization.
		 */
		UnparametricField(integer q = 0, size_t e = 1) :
			Father_t(q, e),
			//Father_t((unsigned long)q,(unsigned long)e)
			_p(q),
			_card(q == 0 ?
			integer(-1) :
			pow(q, e) )
			{}  // assuming q is a prime or zero.

		/// construct this field as copy of F.
		UnparametricField (const UnparametricField &F) :
			Father_t(F),_p(F._p), _card(F._card)
		{}


		// field/ntl-ZZ_p.h me les demande... //

		using Father_t::inv ;
		//using Father_t::read ;
		std::istream &read(std::istream & is) { return Father_t::read(is); }

        std::istream &read(std::istream & s, Element &a) const
		{
            Integer tmp;
            s >> tmp;
            init(a, tmp);
            return s;
		}
		using Father_t::invin;
		using Father_t::write;
		using Father_t::isZero;
		using Father_t::isOne;

		template<typename Src>
		Element&init(Element&x, const Src&s) const
		{
			return Caster (x, s);
		}
		Element&init(Element&x)const
		{
			return Caster (x, 0);
		}
		template<typename T>
		T&convert(T&x, const Element&y) const
		{
			return Caster(x,y);
		}

		// fin des trucs zarbs //

		/// c := cardinality of this field (-1 if infinite).
		using Father_t::cardinality ;
		integer &cardinality (integer &c) const
		{
			return c = _card;
		}

		/// c := characteristic of this field (zero or prime).
		using Father_t::characteristic;
		integer &characteristic (integer &c) const
		{
			return c = _p;
		}

		//@} Data Object Management




		//@} Common Object Interface

		/** @name Implementation-Specific Methods.
		 * These methods are not required of all LinBox fields
		 * and are included only for the implementation of this field
		 * template.
		 */
		//@{

		//- Default constructor
		//UnparametricField (void) {}

		/** Constructor from field object.
		 * @param  A unparameterized field object
		 */
		UnparametricField (const K &A) {}

		/** Constant access operator.
		 * @return constant reference to field object
		 */
		const K &operator () (void) const
		{
			return Element ();
		}

		/** Access operator.
		 * @return reference to field object
		 */
		K &operator () (void)
		{
			return Element ();
		}

		//@} Implementation-Specific Methods

	}; // template <class K> class UnparametricField

	template<class Field>
	class FieldAXPY;

	/*! @ingroup integers
	 * @brief NO DOc
	 */
	template<>
	class FieldAXPY<UnparametricField<integer> >  {
	public:
		typedef UnparametricField<integer> Field;
		typedef integer Element;

		/** Constructor.
		 * A faxpy object if constructed from a Field and a field element.
		 * Copies of this objects are stored in the faxpy object.
		 * @param F field F in which arithmetic is done
		 */
		FieldAXPY (const Field &F) :
			_field (F)
		{ _y = 0; }

		/** Copy constructor.
		 * @param faxpy
		 */
		FieldAXPY (const FieldAXPY<Field> &faxpy) :
			_field (faxpy._field), _y (faxpy._y)
		{}

		/** Assignment operator
		 * @param faxpy
		 */
		FieldAXPY<Field> &operator = (const FieldAXPY &faxpy)
		{ _y = faxpy._y; return *this; }

		/** Add a*x to y
		 * y += a*x.
		 * @param a constant reference to element a
		 * @param x constant reference to element x
		 * allow optimal multiplication, such as integer * int
		 */
		template<class Element1>
		inline Element&  mulacc (const Element &a, const Element1 &x)
		{
			return _y += (a * x);
		}

		template<class Element1>
		inline Element& accumulate (const Element1 &t)
		{
			return _y += t;
		}

		/** Retrieve y
		 *
		 * Performs the delayed modding out if necessary
		 */
		inline Element &get (Element &y) { y = _y; return y; }

		/** Assign method.
		 * Stores new field element for arithmetic.
		 * @return reference to self
		 * @param y constant reference to element a
		 */
		inline FieldAXPY &assign (const Element& y)
		{
			_y = y;
			return *this;
		}

		inline void reset() {
			_y = 0;
		}

	private:

		/// Field in which arithmetic is done
		Field _field;

		/// Field element for arithmetic
		Element _y;

	};

} // namespace LinBox

#include "linbox/randiter/unparametric.h"

#endif // __LINBOX_field_unparametric_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