Skip to content

Commit 3b5f11c

Browse files
committed
Add note for typo in reference for T-sequences construction
1 parent 163d780 commit 3b5f11c

File tree

1 file changed

+8
-1
lines changed

1 file changed

+8
-1
lines changed

src/sage/combinat/t_sequences.py

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@
3131
3232
"""
3333

34-
# ****************************************************************************
34+
# ***************************************************************************
3535
# Copyright (C) 2022 Matteo Cati [email protected]
3636
#
3737
# This program is free software: you can redistribute it and/or modify
@@ -337,6 +337,13 @@ def T_sequences_construction_I(turyn_sequences, check=True):
337337
Traceback (most recent call last):
338338
...
339339
AssertionError
340+
341+
.. NOTE::
342+
343+
The construction detailed in [Seb2017]_ contains a typo. The first two sequences are
344+
defined as `T_1 = \frac{1}{2}(X+Y); 0_{l-1}` and `T_2 = \frac{1}{2}(X-Y); 0_{l-1}`,
345+
but the correct formulas are `T_1 = \frac{1}{2}(X+U); 0_{l-1}` and
346+
`T_2 = \frac{1}{2}(X-U); 0_{l-1}`.
340347
"""
341348

342349
assert len(turyn_sequences) == 4

0 commit comments

Comments
 (0)