]> gitweb.michael.orlitzky.com - sage.d.git/commitdiff
octonions: rename to_list() -> to_nested_list().
authorMichael Orlitzky <michael@orlitzky.com>
Tue, 2 Mar 2021 16:20:53 +0000 (11:20 -0500)
committerMichael Orlitzky <michael@orlitzky.com>
Tue, 2 Mar 2021 16:20:53 +0000 (11:20 -0500)
mjo/octonions.py

index 87bf5ff1ed06b1a77b5815df8dd2248fda4b7edb..a5f6dec0239f5f3e084fb4c1c12e791c0002cf9b 100644 (file)
@@ -345,7 +345,7 @@ class OctonionMatrix(IndexedFreeModuleElement):
     ncols = nrows
 
     @cached_method
-    def to_list(self):
+    def to_nested_list(self):
         r"""
         SETUP::
 
@@ -372,7 +372,7 @@ class OctonionMatrix(IndexedFreeModuleElement):
             +----+---+---+
             | 0  | 0 | 0 |
             +----+---+---+
-            sage: (E00e0 + 2*E00e3).to_list()
+            sage: (E00e0 + 2*E00e3).to_nested_list()
             [[e0 + 2*e3, 0, 0], [0, 0, 0], [0, 0, 0]]
 
         """
@@ -401,7 +401,7 @@ class OctonionMatrix(IndexedFreeModuleElement):
             +----+----+----+
 
         """
-        return table(self.to_list(), frame=True)._repr_()
+        return table(self.to_nested_list(), frame=True)._repr_()
 
 
     def __getitem__(self, indices):
@@ -426,7 +426,7 @@ class OctonionMatrix(IndexedFreeModuleElement):
 
         """
         i,j = indices
-        return self.to_list()[i][j]
+        return self.to_nested_list()[i][j]
 
     def trace(self):
         r"""