X-Git-Url: http://gitweb.michael.orlitzky.com/?a=blobdiff_plain;f=mjo%2Fcone%2Ftests.py;fp=mjo%2Fcone%2Ftests.py;h=0df9e32a4e526c544a9b58fd72b74efe09887d6c;hb=e858d109f07086b2fced9f14322e8e255e7f4f17;hp=e059d94528c749f3d366b1ed2b00b9c610d775cc;hpb=5d4c579d47ef0c9228ae1d528850e92d77aaa9b0;p=sage.d.git 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 """