X-Git-Url: https://gitweb.michael.orlitzky.com/?a=blobdiff_plain;f=test%2Fsymmetric_linear_game_test.py;h=04b85455ac94cb7d76719a7ab8b6a3629a8bc6ef;hb=797971a93a7e952a6ca92b7a618665a21d61e339;hp=f5b48f4ac1f3e19bcec92d9357a511ebfd794df5;hpb=13b585b28aaacb1d603c3ae41614bacf613afa14;p=dunshire.git diff --git a/test/symmetric_linear_game_test.py b/test/symmetric_linear_game_test.py index f5b48f4..04b8545 100644 --- a/test/symmetric_linear_game_test.py +++ b/test/symmetric_linear_game_test.py @@ -4,14 +4,13 @@ Unit tests for the :class:`SymmetricLinearGame` class. from unittest import TestCase -from dunshire.cones import NonnegativeOrthant from dunshire.games import SymmetricLinearGame -from dunshire.matrices import eigenvalues_re, inner_product, norm +from dunshire.matrices import eigenvalues_re, inner_product from dunshire import options -from .randomgen import (RANDOM_MAX, random_icecream_game, - random_ll_icecream_game, random_ll_orthant_game, - random_nn_scaling, random_orthant_game, - random_positive_orthant_game, random_translation) +from .randomgen import (random_icecream_game, random_ll_icecream_game, + random_ll_orthant_game, random_nn_scaling, + random_orthant_game, random_positive_orthant_game, + random_translation) # Tell pylint to shut up about the large number of methods.