This file is indexed.

/usr/include/linbox/randiter/random-fftprime.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
/* -*- mode: C++; tab-width: 4; indent-tabs-mode: t; c-basic-offset: 4 -*- */
// vim:sts=4:sw=4:ts=4:noet:sr:cino=>s,f0,{0,g0,(0,\:0,t0,+0,=s
/* linbox/algorithms/
 * Copyright (C) 2005  Pascal Giorgi
 *
 * Written by Pascal Giorgi <pgiorgi@uwaterloo.ca>
 *
 * ========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_random_fftprime_H
#define __LINBOX_random_fftprime_H
#include <vector>
#include "linbox/integer.h"
#include "linbox/util/debug.h"
#include "linbox/util/timer.h"

namespace LinBox
{

	class RandomFFTPrime {
	public:
		// define the prime type
		typedef integer Prime_Type;

		uint64_t           _bits;
		Prime_Type  _prime_bound;

		RandomFFTPrime(Prime_Type pbound=0x100000, unsigned long seed = 0) :
			_bits(pbound.bitsize()), _prime_bound(pbound)
		{
			if (! seed)
				RandomFFTPrime::setSeed( (unsigned long)BaseTimer::seed() );
			else
				RandomFFTPrime::setSeed( seed );
		}

		
		/** @brief randomPrime(size_t b)
		 *  return a random FFT prime with a 2-valuation larger than b in its order
				 *  the randomness is on the FFT primes lying in the given range
				 *  an error is thrown if no such prime exist
		 */
		inline Prime_Type randomPrime (size_t b) const
		{
			integer tmp;
			randomPrime(tmp,b);
			return tmp;
		}

		/** @brief randomPrime(Prime_Type& p, size_t b)
		 *  return a random FFT prime with a 2-valuation larger than b in its order
				 *  the randomness is on the FFT primes lying in the given range
				 *  an error is thrown if no such prime exist
		 */
		inline Prime_Type randomPrime (Prime_Type& t, uint64_t b) const
		{
			linbox_check(b<_bits);
			size_t tresh;
			do {
				size_t cbits= (size_t)rand() %(_bits-b);
				tresh = 1<<(cbits);
				uint64_t p = 1<<((size_t)_bits-cbits);
				do {
					integer::random(t,cbits);
					t = t*integer(p)+1;
					tresh--;
				} while (!Givaro::Protected::probab_prime(t,25) && (tresh));
			}
			while(tresh==0);
			linbox_check(Givaro::Protected::probab_prime(t,25))
					return t;
		}

		/** @brief generatePrime()
		 *  return a FFT prime with the largest 2-valuation in its order
		 */
		inline Prime_Type generatePrime() const
		{
			integer tmp;
			generatePrime(tmp);
			return tmp;
		}

		/** @brief generatePrime(Prime_Type& p)
		 *  return a FFT prime with the largest 2-valuation in its order
		 */
		inline Prime_Type generatePrime (Prime_Type& t) const
		{
			size_t cbits=1;
			size_t tresh;
			do {
				tresh = 1<<(cbits);
				uint64_t p = 1<<((size_t)_bits-cbits);
				do {
					integer::random(t,cbits);
					t = t*integer(p)+1;
					tresh--;
				} while (!Givaro::Protected::probab_prime(t,25) && (tresh));
				cbits++;
			}
			while(tresh==0);

			return t;
		}

		// generate a vector of distinct FFT primes with largest 2-valuation
		// s.t. their product is larger than a given bound
		inline std::vector<Prime_Type> generatePrimes (const Prime_Type & bound) const {
			std::vector<Prime_Type> primes;
			Prime_Type prod=1;
			integer tmp;
			for (int64_t b = _bits - 1; b >= 0; b--)
				for (int64_t l = ((int64_t)1 << (_bits - b - 1)) + 1; l < (1L << (_bits - b)); l +=2) {
					tmp = ((int64_t)1 << b) * l + 1;
					if (Givaro::Protected::probab_prime(tmp, 25) >= 1) {
						primes.push_back(tmp);
						prod*=tmp;
						if (prod > bound)
							return primes;
					}
				}
			linbox_check(prod > bound ); // Could not find enough primes
			return primes;
		}

		// generate a vector of distinct FFT primes with largest 2-valuation
		// s.t. their product is larger than a given bound
		inline bool generatePrimes (const Prime_Type & bound, std::vector<Prime_Type> &primes) const {
			primes.clear();
			Prime_Type prod=1;
			integer tmp;
			for (int64_t b = (int64_t)_bits - 1; b >= 0; b--)
				for (int64_t l = (1L << ((int64_t)_bits - b - 1)) + 1; l < (1L << ((int64_t)_bits - b)); l +=2) {
					tmp = (1L << b) * l + 1;
					if (Givaro::Protected::probab_prime(tmp, 25) >= 1) {
						primes.push_back(tmp);
						prod*=tmp;
						if (prod > bound){
							return true;
						}
					}
				}
			return false; // false -> Could not find enough primes
		}

		size_t twoVal(integer t) const {
			integer x=t;
			size_t v=0;
			while(x%2 == 0) {v++;x/=2;}
			return v;
		}

		// generate a vector of distinct FFT primes with  2-valuation largest than val
		// s.t. their product is larger than a given bound
		inline bool generatePrimes ( uint64_t val, const Prime_Type & bound, std::vector<Prime_Type> &primes) const {
			primes.clear();
			Prime_Type prod=1;
			integer tmp;
			// std::cout<<"rns bound: "<<bound<<std::endl;
			// std::cout<<"2 valuation: "<<val<<std::endl;
			// std::cout<<"prime bitmax: "<<_bits<<std::endl;
			// std::cout<<"prime max: "<<_prime_bound<<std::endl;

			if (val > _bits) return false;

#if 0
			for (int64_t b = (int64_t)_bits; b >= (int64_t)val; b--)
				// for (uint64_t l = (1ULL << ((int64_t)_bits - b - 1)) + 1; l < (1ULL << ((int64_t)_bits - b)); l +=2) {
				for (int64_t l = ((int64_t)1 << ((int64_t)_bits - b)) - 1; l >=1; l -=2) {
					tmp = ((int64_t)1 << b) * l + 1;
					if (Givaro::Protected::probab_prime(tmp, 25) >= 1) {
						primes.push_back(tmp);
						prod*=tmp;
						//std::cout<<tmp<<" -> "<<tmp.bitsize()<<" (order="<<twoVal(tmp-1)<<") "<<prod<<std::endl;
						if (prod > bound){
							return true;
						}
					}
				}
#else
			for (int64_t l = (_prime_bound -1) >>val ; l >=1; l -=1) {
				tmp = ((int64_t)1 << val) * l + 1;
				if (Givaro::Protected::probab_prime(tmp, 25) >= 1) {
					primes.push_back(tmp);
					prod*=tmp;
					//std::cout<<tmp<<" -> "<<tmp.bitsize()<<" (order="<<twoVal(tmp-1)<<") "<<prod<<std::endl;
					if (prod > bound){
						// try to replace the last prime with a smallest one
						for (int64_t k=1;k<l;k++){
							tmp = ((int64_t)1 << val) * k + 1;
							if (Givaro::Protected::probab_prime(tmp, 25) >= 1) {
								if (prod*tmp > bound*primes.back()){
									//std::cout<<"replacing prime "<<primes.back()<<" with "<<tmp<< " -> "<<tmp.bitsize()<<" (order="<<twoVal(tmp-1)<<") ";
									prod/=primes.back();
									primes.back()=tmp;
									prod*=tmp;
									//std::cout<<prod<<std::endl;
									return true;
								}
							}
						}

						return true;
					}
				}
			}


#endif
			return false; // false -> Could not find enough primes
		}

		/** @brief setSeed (unsigned long ul)
		 *  Set the random seed to be ul.
		 */
		void static setSeed(unsigned long ul)
		{
			integer::seeding(ul);
		}
	};
}

#endif //__LINBOX_random_fftprime_H