]> gitweb.michael.orlitzky.com - sage.d.git/blobdiff - mjo/cone/tests.py
Rename LL() to lyapunov_like_basis().
[sage.d.git] / mjo / cone / tests.py
index 0df9e32a4e526c544a9b58fd72b74efe09887d6c..1758f8b4749a171165ea574aa87a7389019779bc 100644 (file)
@@ -216,14 +216,14 @@ cone. Check all combinations of parameters::
     sage: lyapunov_rank(K) == lyapunov_rank(K.dual())
     True
 
-The Lyapunov rank of a cone ``K`` is the dimension of ``LL(K)``. Check
-all combinations of parameters::
+The Lyapunov rank of a cone ``K`` is the dimension of
+``K.lyapunov_like_basis()``. Check all combinations of parameters::
 
     sage: set_random_seed()
     sage: K = random_cone(max_ambient_dim=8,
     ....:                 strictly_convex=True,
     ....:                 solid=True)
-    sage: lyapunov_rank(K) == len(K.LL())
+    sage: lyapunov_rank(K) == len(K.lyapunov_like_basis())
     True
 
 ::
@@ -232,7 +232,7 @@ all combinations of parameters::
     sage: K = random_cone(max_ambient_dim=8,
     ....:                 strictly_convex=True,
     ....:                 solid=False)
-    sage: lyapunov_rank(K) == len(K.LL())
+    sage: lyapunov_rank(K) == len(K.lyapunov_like_basis())
     True
 
 ::
@@ -241,7 +241,7 @@ all combinations of parameters::
     sage: K = random_cone(max_ambient_dim=8,
     ....:                 strictly_convex=False,
     ....:                 solid=True)
-    sage: lyapunov_rank(K) == len(K.LL())
+    sage: lyapunov_rank(K) == len(K.lyapunov_like_basis())
     True
 
 ::
@@ -250,7 +250,7 @@ all combinations of parameters::
     sage: K = random_cone(max_ambient_dim=8,
     ....:                 strictly_convex=False,
     ....:                 solid=False)
-    sage: lyapunov_rank(K) == len(K.LL())
+    sage: lyapunov_rank(K) == len(K.lyapunov_like_basis())
     True
 
 """