]> gitweb.michael.orlitzky.com - sage.d.git/commitdiff
Update some tests still using LL(K).
authorMichael Orlitzky <michael@orlitzky.com>
Wed, 7 Oct 2015 21:14:03 +0000 (17:14 -0400)
committerMichael Orlitzky <michael@orlitzky.com>
Wed, 7 Oct 2015 21:14:03 +0000 (17:14 -0400)
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
 
 """