|
48 | 48 | "R", |
49 | 49 | "S", |
50 | 50 | "T", |
| 51 | + "U", |
51 | 52 | "W", |
52 | 53 | "X", |
53 | 54 | "Y", |
54 | 55 | "Z", |
| 56 | + "U1", |
| 57 | + "U2", |
| 58 | + "U3", |
| 59 | + "U4", |
| 60 | + "U5", |
| 61 | + "U6", |
55 | 62 | "V1", |
56 | 63 | "V2", |
57 | 64 | "V3", |
@@ -1320,11 +1327,12 @@ def _iter_variables(self) -> Iterable[Variable]: |
1320 | 1327 | Q = QFactor |
1321 | 1328 |
|
1322 | 1329 | AA = Variable("AA") |
1323 | | -A, B, C, D, E, F, G, M, R, S, T, W, X, Y, Z = map(Variable, "ABCDEFGMRSTWXYZ") # type: ignore |
| 1330 | +A, B, C, D, E, F, G, M, R, S, T, U, W, X, Y, Z = map(Variable, "ABCDEFGMRSTUWXYZ") # type: ignore |
| 1331 | +U1, U2, U3, U4, U5, U6 = [Variable(f"U{i}") for i in range(1, 7)] |
1324 | 1332 | V1, V2, V3, V4, V5, V6 = [Variable(f"V{i}") for i in range(1, 7)] |
1325 | 1333 | W0, W1, W2, W3, W4, W5, W6 = [Variable(f"W{i}") for i in range(7)] |
1326 | 1334 | Y1, Y2, Y3, Y4, Y5, Y6 = [Variable(f"Y{i}") for i in range(1, 7)] |
1327 | | -Z1, Z2, Z3, Z4, Z5, Z6 = [Variable(f"Z{i}") for i in range(1, 7)] |
| 1335 | +Z1, Z2, Z3, Z4, Z5, Z6 = [Z[i] for i in range(1, 7)] |
1328 | 1336 |
|
1329 | 1337 |
|
1330 | 1338 | def _sorted_variables(variables: Iterable[Variable]) -> Tuple[Variable, ...]: |
|
0 commit comments