From: Michael Orlitzky Date: Wed, 7 Oct 2015 21:14:03 +0000 (-0400) Subject: Update some tests still using LL(K). X-Git-Url: https://gitweb.michael.orlitzky.com/?a=commitdiff_plain;h=e858d109f07086b2fced9f14322e8e255e7f4f17;hp=5d4c579d47ef0c9228ae1d528850e92d77aaa9b0;p=sage.d.git Update some tests still using LL(K). --- diff --git a/mjo/cone/tests.py b/mjo/cone/tests.py index e059d94..0df9e32 100644 --- a/mjo/cone/tests.py +++ b/mjo/cone/tests.py @@ -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 """