Hide keyboard shortcuts

Hot-keys on this page

r m x p   toggle line displays

j k   next/prev highlighted chunk

0   (zero) top of page

1   (one) first highlighted chunk

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

""" 

Frank Luebeck's tables of Conway polynomials over finite fields 

""" 

 

#***************************************************************************** 

# 

# Sage: Copyright (C) 2005 William Stein <wstein@gmail.com> 

# Copyright (C) 2013 R. Andrew Ohana <andrew.ohana@gmail.com> 

# 

# Distributed under the terms of the GNU General Public License (GPL) 

# 

# This code 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 

# General Public License for more details. 

# 

# The full text of the GPL is available at: 

# 

# http://www.gnu.org/licenses/ 

#***************************************************************************** 

 

from six import itervalues, iteritems 

from six.moves import cPickle as pickle 

 

import collections 

import os 

 

from sage.env import CONWAY_POLYNOMIALS_DATA_DIR 

 

_CONWAYDATA = os.path.join(CONWAY_POLYNOMIALS_DATA_DIR, 'conway_polynomials.p') 

_conwaydict = None 

 

class DictInMapping(collections.Mapping): 

def __init__(self, dict): 

""" 

Places dict into a non-mutable mapping. 

 

TESTS:: 

 

sage: from sage.databases.conway import DictInMapping 

sage: d = {} 

sage: m = DictInMapping(d); m 

{} 

sage: d[0] = 1; m 

{0: 1} 

sage: m[2] = 3 

Traceback (most recent call last): 

... 

TypeError: 'DictInMapping' object does not support item assignment 

""" 

self._store = dict 

 

def __getitem__(self, key): 

""" 

TESTS:: 

 

sage: from sage.databases.conway import DictInMapping 

sage: DictInMapping({'foo': 'bar'})['foo'] 

'bar' 

""" 

return self._store[key] 

 

def __len__(self): 

""" 

TESTS:: 

 

sage: from sage.databases.conway import DictInMapping 

sage: d = {} 

sage: m = DictInMapping(d); len(m) 

0 

sage: d['foo'] = 'bar'; len(m) 

1 

""" 

return len(self._store) 

 

def __iter__(self): 

""" 

TESTS:: 

 

sage: from sage.databases.conway import DictInMapping 

sage: next(iter(DictInMapping({'foo': 'bar'}))) 

'foo' 

""" 

return iter(self._store) 

 

def __repr__(self): 

""" 

TESTS:: 

 

sage: from sage.databases.conway import DictInMapping 

sage: DictInMapping({'foo': 'bar'}) 

{'foo': 'bar'} 

""" 

return repr(self._store) 

 

 

class ConwayPolynomials(collections.Mapping): 

def __init__(self): 

""" 

Initialize the database. 

 

TESTS:: 

 

sage: c = ConwayPolynomials() 

sage: c 

Frank Luebeck's database of Conway polynomials 

""" 

global _conwaydict 

if _conwaydict is None: 

if not os.path.exists(_CONWAYDATA): 

raise RuntimeError('In order to initialize the database, ' 

+ '%s must exist.' % _CONWAYDATA) 

with open(_CONWAYDATA, 'rb') as f: 

_conwaydict = pickle.load(f) 

self._store = _conwaydict 

 

def __repr__(self): 

""" 

Return a description of this database. 

 

TESTS:: 

 

sage: c = ConwayPolynomials() 

sage: c.__repr__() 

"Frank Luebeck's database of Conway polynomials" 

""" 

return "Frank Luebeck's database of Conway polynomials" 

 

def __getitem__(self, key): 

""" 

If key is a pair of integers ``p,n``, return the Conway 

polynomial of degree ``n`` over ``GF(p)``. 

 

If key is an integer ``p``, return a non-mutable mapping 

whose keys are the degrees of the polynomial values. 

 

TESTS:: 

 

sage: c = ConwayPolynomials() 

sage: c[60859] 

{1: (60856, 1), 2: (3, 60854, 1), 

3: (60856, 8, 0, 1), 4: (3, 32881, 3, 0, 1)} 

sage: c[60869, 3] 

(60867, 2, 0, 1) 

""" 

try: 

return DictInMapping(self._store[key]) 

except KeyError as err: 

try: 

if isinstance(key, (tuple, list)): 

if len(key) == 2: 

return self._store[key[0]][key[1]] 

except KeyError: 

pass 

raise err 

 

def __len__(self): 

""" 

Return the number of polynomials in this database. 

 

TESTS:: 

 

sage: c = ConwayPolynomials() 

sage: len(c) 

35352 

""" 

try: 

return self._len 

except AttributeError: 

pass 

self._len = sum(len(a) for a in itervalues(self._store)) 

return self._len 

 

def __iter__(self): 

""" 

Return an iterator over the keys of this database. 

 

TESTS:: 

 

sage: c = ConwayPolynomials() 

sage: itr = iter(c) 

sage: next(itr) 

(65537, 4) 

sage: next(itr) 

(2, 1) 

""" 

for a, b in iteritems(self._store): 

for c in b: 

yield a, c 

 

def polynomial(self, p, n): 

""" 

Return the Conway polynomial of degree ``n`` over ``GF(p)``, 

or raise a RuntimeError if this polynomial is not in the 

database. 

 

.. NOTE:: 

 

See also the global function ``conway_polynomial`` for 

a more user-friendly way of accessing the polynomial. 

 

INPUT: 

 

- ``p`` -- prime number 

 

- ``n`` -- positive integer 

 

OUTPUT: 

 

List of Python int's giving the coefficients of the corresponding 

Conway polynomial in ascending order of degree. 

 

EXAMPLES:: 

 

sage: c = ConwayPolynomials() 

sage: c.polynomial(3, 21) 

(1, 2, 0, 2, 0, 1, 2, 0, 2, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1) 

sage: c.polynomial(97, 128) 

Traceback (most recent call last): 

... 

RuntimeError: Conway polynomial over F_97 of degree 128 not in database. 

""" 

try: 

return self[p,n] 

except KeyError: 

raise RuntimeError("Conway polynomial over F_%s of degree %s not in database."%(p,n)) 

 

def has_polynomial(self, p, n): 

""" 

Return True if the database of Conway polynomials contains the 

polynomial of degree ``n`` over ``GF(p)``. 

 

INPUT: 

 

- ``p`` -- prime number 

 

- ``n`` -- positive integer 

 

EXAMPLES:: 

 

sage: c = ConwayPolynomials() 

sage: c.has_polynomial(97, 12) 

True 

sage: c.has_polynomial(60821, 5) 

False 

""" 

return (p,n) in self 

 

def primes(self): 

""" 

Return the list of prime numbers ``p`` for which the database of 

Conway polynomials contains polynomials over ``GF(p)``. 

 

EXAMPLES:: 

 

sage: c = ConwayPolynomials() 

sage: P = c.primes() 

sage: 2 in P 

True 

sage: next_prime(10^7) in P 

False 

""" 

return self._store.keys() 

 

def degrees(self, p): 

""" 

Return the list of integers ``n`` for which the database of Conway 

polynomials contains the polynomial of degree ``n`` over ``GF(p)``. 

 

EXAMPLES:: 

 

sage: c = ConwayPolynomials() 

sage: c.degrees(60821) 

[1, 2, 3, 4] 

sage: c.degrees(next_prime(10^7)) 

[] 

""" 

if p not in self._store: 

return [] 

return self._store[p].keys() 

 

def __reduce__(self): 

""" 

TESTS:: 

 

sage: c = ConwayPolynomials() 

sage: loads(dumps(c)) == c 

True 

""" 

return (ConwayPolynomials, ())