This file is indexed.

/usr/include/linbox/field/Givaro/givaro-rational.h is in liblinbox-dev 1.3.2-1.1build2.

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
/* linbox/field/givaro-rational.h
 * Copyright (C) 2004 Gilles Villard
 *
 * Created  Gilles Villard < Gilles.Villard@ens-lyon.fr>
 * ven oct  8 13:30:05 CEST 2004
 *  ========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_givaro_rational_H
#define __LINBOX_givaro_rational_H


#include "linbox/integer.h"
#include "linbox/field/unparametric.h"
#include "linbox/field/field-traits.h"


//------------------------------------
// Files of Givaro library

#include "givaro/givrational.h"
//------------------------------------


namespace LinBox
{

	template <class Ring>
	struct ClassifyRing;

	class GivaroRational;

	template<>
	struct ClassifyRing<GivaroRational> {
		typedef RingCategories::RationalTag categoryTag;
	};

	class GivaroRational : public UnparametricField< Givaro::Rational> {

	public:

		/** Element type.
		 *
		 */
		typedef  Givaro::Rational Element;
		Element zero,one,mOne;


		Element& init(Element& x , const integer& y) const
		{
			return x=Element(y);
		}

		Element& init(Element& x , const integer& n,const integer& d) const
		{
			return x=Element(n,d);
		}

		template<class XX>
		Element& init(Element& x , const XX& y) const
		{
			return x=Element(y);
		}

        std::istream &read(std::istream & s, Element &a) const
		{
            s >> a;
            return s;
		}

		integer& convert(integer& i, const Element& r) const
		{
			return i=r.nume();
		}


		Element& assign(Element& x , const Element& y) const
		{
			return x=y;
		}

		// x = numerator of y
		integer& get_num (integer& x, const Element& y)  const
		{
			return x = y.nume();
		}

		// x = denominator of y
		integer& get_den (integer& x, const Element& y) const
		{
			return x = y.deno();
		}


	}; // class



} // namespace LinBox


// Specialization of homomorphism for basefield
#include "linbox/field/hom.h"
namespace LinBox
{
	template <class _Target>
	class Hom<GivaroRational, _Target> {

	public:
		typedef GivaroRational Source;
		typedef _Target Target;
		typedef typename Source::Element SrcElt;
		typedef typename Target::Element Elt;

		Hom(const Source& S, const Target& T) :
			_source (S), _target(T)
		{
		}
		Elt& image(Elt& t, const SrcElt& s)
		{
			_source. get_num (num, s);
			_source. get_den (den, s);
			if (den == 1) {
				return _target.init(t,num);
			}
			else if (num == 1) {
				_target.init(t,den);
				return _target.invin(t);
			}
			else {
				_target. init (tmp, den);
				_target. init (t, num);
				return _target. divin (t, tmp);

			}
			// 			_target. init (t, den);
			// 			return _target. invin (t);

		}
		SrcElt& preimage(SrcElt& s, const Elt& t)
		{
			_target. convert (num, t);
			_source. init (s, num);
			return s;

		}
		const Source& source()
		{
			return _source;
		}
		const Target& target()
		{
			return _target;
		}

	protected:
		integer num, den;
		Elt tmp;
		Source _source;
		Target _target;
	}; // end Hom

	template <>
	class Hom<GivaroRational,GivaroRational> {

	public:
		typedef GivaroRational Source;
		typedef Source Target;
		typedef Source::Element SrcElt;
		typedef Target::Element Elt;

		Hom(const Source& S, const Target& T) :
			_source (S), _target(T)
		{
}
		Elt& image(Elt& t, const SrcElt& s) {
			_target.assign(t, s);
			return t;


}
		SrcElt& preimage(SrcElt& s, const Elt& t)
		{
			_source.assign(s, t);
			return s;

}
		const Source& source() {
return _source;
}
		const Target& target() {
return _target;
}

	protected:
		Source _source;
		Target _target;
	}; // end Hom

}

#endif // __LINBOX_givaro_rational_H


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