]> gitweb.michael.orlitzky.com - sage.d.git/blobdiff - mjo/cone/tests.py
Update some tests still using LL(K).
[sage.d.git] / mjo / cone / tests.py
index e059d94528c749f3d366b1ed2b00b9c610d775cc..0df9e32a4e526c544a9b58fd72b74efe09887d6c 100644 (file)
@@ -223,7 +223,7 @@ all combinations of parameters::
     sage: K = random_cone(max_ambient_dim=8,
     ....:                 strictly_convex=True,
     ....:                 solid=True)
-    sage: lyapunov_rank(K) == len(LL(K))
+    sage: lyapunov_rank(K) == len(K.LL())
     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(LL(K))
+    sage: lyapunov_rank(K) == len(K.LL())
     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(LL(K))
+    sage: lyapunov_rank(K) == len(K.LL())
     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(LL(K))
+    sage: lyapunov_rank(K) == len(K.LL())
     True
 
 """