@@ -3704,8 +3704,8 @@ class LinearCode(AbstractLinearCode):
3704
3704
minimum distance, will use generic, slow algorithms.
3705
3705
3706
3706
If you are looking for constructing a code from a more specific family, see
3707
- if the family has been implemented by investigating codes.<tab>. These
3708
- more specific classes use properties particular for that family to allow
3707
+ if the family has been implemented by investigating ` codes.<tab>` . These
3708
+ more specific classes use properties particular to that family to allow
3709
3709
faster algorithms, and could also have family-specific methods.
3710
3710
3711
3711
See :wikipedia:`Linear_code` for more information on unstructured linear codes.
@@ -3759,7 +3759,8 @@ class LinearCode(AbstractLinearCode):
3759
3759
sage: C
3760
3760
Linear code of length 7, dimension 4 over Finite Field of size 5
3761
3761
3762
- Providing a code as the parameter (see :trac:`20198`)::
3762
+ Providing a code as the parameter in order to "forget" its structure (see
3763
+ :trac:`20198`)::
3763
3764
3764
3765
sage: C = codes.GeneralizedReedSolomonCode(GF(23).list(), 12)
3765
3766
sage: LinearCode(C)
@@ -3776,7 +3777,7 @@ class LinearCode(AbstractLinearCode):
3776
3777
AUTHORS:
3777
3778
3778
3779
- David Joyner (11-2005)
3779
- - Charles Prior (03-2016)
3780
+ - Charles Prior (03-2016): :trac:`20198`, LinearCode from a code
3780
3781
"""
3781
3782
def __init__ (self , generator , d = None ):
3782
3783
r"""
0 commit comments