-
Notifications
You must be signed in to change notification settings - Fork 54
/
modules_generic.py
240 lines (205 loc) · 7.24 KB
/
modules_generic.py
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
class Module:
def __init__(self, ring):
"""
Initialise a module over the ring ``ring``.
"""
self.ring = ring
self.matrix = Matrix
def random_element(self, m, n):
"""
Generate a random element of the module of dimension m x n
:param int m: the number of rows in the matrix
:param int m: the number of columns in tge matrix
:return: an element of the module with dimension `m times n`
"""
elements = [
[self.ring.random_element() for _ in range(n)] for _ in range(m)
]
return self(elements)
def __repr__(self):
return f"Module over the commutative ring: {self.ring}"
def __str__(self):
return f"Module over the commutative ring: {self.ring}"
def __call__(self, matrix_elements, transpose=False):
if not isinstance(matrix_elements, list):
raise TypeError(
"elements of a module are matrices, built from elements of the base ring"
)
if isinstance(matrix_elements[0], list):
for element_list in matrix_elements:
if not all(
isinstance(aij, self.ring.element) for aij in element_list
):
raise TypeError(
f"All elements of the matrix must be elements of the ring: {self.ring}"
)
return self.matrix(self, matrix_elements, transpose=transpose)
elif isinstance(matrix_elements[0], self.ring.element):
if not all(
isinstance(aij, self.ring.element) for aij in matrix_elements
):
raise TypeError(
f"All elements of the matrix must be elements of the ring: {self.ring}"
)
return self.matrix(self, [matrix_elements], transpose=transpose)
else:
raise TypeError(
"elements of a module are matrices, built from elements of the base ring"
)
def vector(self, elements):
"""
Construct a vector given a list of elements of the module's ring
:param list: a list of elements of the ring
:return: a vector of the module
"""
return self.matrix(self, [elements], transpose=True)
class Matrix:
def __init__(self, parent, matrix_data, transpose=False):
self.parent = parent
self._data = matrix_data
self._transpose = transpose
if not self._check_dimensions():
raise ValueError("Inconsistent row lengths in matrix")
def dim(self):
"""
Return the dimensions of the matrix with m rows
and n columns
:return: the dimension of the matrix ``(m, n)``
:rtype: tuple(int, int)
"""
if not self._transpose:
return len(self._data), len(self._data[0])
else:
return len(self._data[0]), len(self._data)
def _check_dimensions(self):
"""
Ensure that the matrix is rectangular
"""
return len(set(map(len, self._data))) == 1
def transpose(self):
"""
Return a matrix with the rows and columns of swapped
"""
return self.parent(self._data, not self._transpose)
def transpose_self(self):
"""
Swap the rows and columns of the matrix in place
"""
self._transpose = not self._transpose
return
T = property(transpose)
def reduce_coefficients(self):
"""
Reduce every element in the polynomial
using the modulus of the PolynomialRing
"""
for row in self._data:
for ele in row:
ele.reduce_coefficients()
return self
def __getitem__(self, idx):
"""
matrix[i, j] returns the element on row i, column j
"""
assert (
isinstance(idx, tuple) and len(idx) == 2
), "Can't access individual rows"
if not self._transpose:
return self._data[idx[0]][idx[1]]
else:
return self._data[idx[1]][idx[0]]
def __eq__(self, other):
if self.dim() != other.dim():
return False
m, n = self.dim()
return all(
[self[i, j] == other[i, j] for i in range(m) for j in range(n)]
)
def __neg__(self):
"""
Returns -self, by negating all elements
"""
m, n = self.dim()
return self.parent(
[[-self[i, j] for j in range(n)] for i in range(m)],
self._transpose,
)
def __add__(self, other):
if not isinstance(other, type(self)):
raise TypeError("Can only add matrices to other matrices")
if self.parent != other.parent:
raise TypeError("Matrices must have the same base ring")
if self.dim() != other.dim():
raise ValueError("Matrices are not of the same dimensions")
m, n = self.dim()
return self.parent(
[[self[i, j] + other[i, j] for j in range(n)] for i in range(m)],
False,
)
def __iadd__(self, other):
self = self + other
return self
def __sub__(self, other):
if not isinstance(other, type(self)):
raise TypeError("Can only add matrices to other matrices")
if self.parent != other.parent:
raise TypeError("Matrices must have the same base ring")
if self.dim() != other.dim():
raise ValueError("Matrices are not of the same dimensions")
m, n = self.dim()
return self.parent(
[[self[i, j] - other[i, j] for j in range(n)] for i in range(m)],
False,
)
def __isub__(self, other):
self = self - other
return self
def __matmul__(self, other):
"""
Denoted A @ B
"""
if not isinstance(other, type(self)):
raise TypeError("Can only multiply matrcies with other matrices")
if self.parent != other.parent:
raise TypeError("Matrices must have the same base ring")
m, n = self.dim()
n_, l = other.dim()
if not n == n_:
raise ValueError("Matrices are of incompatible dimensions")
return self.parent(
[
[
sum(self[i, k] * other[k, j] for k in range(n))
for j in range(l)
]
for i in range(m)
]
)
def dot(self, other):
"""
Compute the inner product of two vectors
"""
if not isinstance(other, type(self)):
raise TypeError("Can only perform dot product with other matrices")
res = self.T @ other
assert res.dim() == (1, 1)
return res[0, 0]
def __repr__(self):
m, n = self.dim()
if m == 1:
return str(self._data[0])
max_col_width = [
max(len(str(self[i, j])) for i in range(m)) for j in range(n)
]
info = "]\n[".join(
[
", ".join(
[
f"{str(self[i, j]):>{max_col_width[j]}}"
for j in range(n)
]
)
for i in range(m)
]
)
return f"[{info}]"