X-Git-Url: http://gitweb.michael.orlitzky.com/?a=blobdiff_plain;f=src%2Fdunshire%2Fgames.py;fp=src%2Fdunshire%2Fgames.py;h=4ce323c13f3c12029b964058a9eda599685d9c07;hb=1ca8acdcd524d20d30c6607323a19318d012244a;hp=10a5eee5b8f34832103f1a564f50150a93b22846;hpb=0a16e3c97d7f0e692428126ae1759fe0f925bf8f;p=dunshire.git diff --git a/src/dunshire/games.py b/src/dunshire/games.py index 10a5eee..4ce323c 100644 --- a/src/dunshire/games.py +++ b/src/dunshire/games.py @@ -849,9 +849,7 @@ class SymmetricLinearGameTest(TestCase): This test theoretically applies to the ice-cream cone as well, but we don't know how to make positive operators on that cone. """ - (_, K, e1, e2) = _random_orthant_params() - - # Ignore that L, we need a nonnegative one. + (K, e1, e2) = _random_orthant_params()[1:] L = _random_nonnegative_matrix(K.dimension()) game = SymmetricLinearGame(L, K, e1, e2) @@ -887,10 +885,7 @@ class SymmetricLinearGameTest(TestCase): """ Test that a Lyapunov game on the nonnegative orthant works. """ - (L, K, e1, e2) = _random_orthant_params() - - # Ignore that L, we need a diagonal (Lyapunov-like) one. - # (And we don't need to transpose those.) + (K, e1, e2) = _random_orthant_params()[1:] L = _random_diagonal_matrix(K.dimension()) self.assert_lyapunov_works(L, K, e1, e2) @@ -900,10 +895,7 @@ class SymmetricLinearGameTest(TestCase): """ Test that a Lyapunov game on the ice-cream cone works. """ - (L, K, e1, e2) = _random_icecream_params() - - # Ignore that L, we need a diagonal (Lyapunov-like) one. - # (And we don't need to transpose those.) + (K, e1, e2) = _random_icecream_params()[1:] L = _random_lyapunov_like_icecream(K.dimension()) self.assert_lyapunov_works(L, K, e1, e2)