You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Trac #18928: A new structure for Reed-Solomon codes in Sage
This ticket proposes a new implementation for Generalized Reed-Solomon
codes in Sage.
It contains:
- a new code class, `GeneralizedReedSolomonCode`, which wraps Reed-
Solomon code in the object-oriented structure introduced in #18099,
- a first new encoder, `GRSEvaluationVectorEncoder`, which can encode
words from a message space which is a vector space, and
- a second new encoder, `GRSEvaluationPolynomialEncoder`, which can
encode words from a message space which is a polynomial ring.
This new implementation properly sets GRS codes in the object-oriented
structure, which allows the user to use specific methods and algorithms
to encode (and later decode) words. It also introduces the notion of
generalized Reed-Solomon codes, which means that the user can now set a
list of column multipliers for the code.
It also allows to compute parity-check matrix and generator matrix from
the parameters of the code, through dedicated methods. It allows super-
fast computation of certain - usually exponential - properties, such as
weight distribution.
As GRS codes are now objects in Sage, it is also possible to ask a GRS
code for its specific parameters (like the list of its evaluation
points, or its column multipliers).
The two provided encoders follow the structure introduced in #18376.
This ticket also removes the old `ReedSolomonCode` method from the
global namespace as it was deprecated more than a year ago (see #15445).
More details about GRS codes can be found in the docstring of the
provided code.
URL: http://trac.sagemath.org/18928
Reported by: dlucas
Ticket author(s): David Lucas, Johan Sebastian Rosenkilde Nielsen
Reviewer(s): Johan Sebastian Rosenkilde Nielsen, David Lucas
0 commit comments