From 1ca8acdcd524d20d30c6607323a19318d012244a Mon Sep 17 00:00:00 2001 From: Michael Orlitzky Date: Thu, 13 Oct 2016 19:08:44 -0400 Subject: [PATCH] Eliminate some unused variables by slicing a tuple before assignment. --- src/dunshire/games.py | 14 +++----------- 1 file changed, 3 insertions(+), 11 deletions(-) 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) -- 2.43.2