From ff576f2eddae5554e4888d99b092d73e19619a91 Mon Sep 17 00:00:00 2001 From: Michael Orlitzky Date: Mon, 10 Oct 2016 11:57:01 -0400 Subject: [PATCH] Rename the "symmetric_linear_game" module to "games". --- doc/source/index.rst | 2 +- src/dunshire/__init__.py | 2 +- src/dunshire/{symmetric_linear_game.py => games.py} | 0 test/suite.py | 6 +++--- 4 files changed, 5 insertions(+), 5 deletions(-) rename src/dunshire/{symmetric_linear_game.py => games.py} (100%) diff --git a/doc/source/index.rst b/doc/source/index.rst index dcb28d5..2d04425 100644 --- a/doc/source/index.rst +++ b/doc/source/index.rst @@ -19,4 +19,4 @@ API Documentation dunshire.errors dunshire.options dunshire.matrices - dunshire.symmetric_linear_game + dunshire.games diff --git a/src/dunshire/__init__.py b/src/dunshire/__init__.py index 55e7968..b5243b0 100644 --- a/src/dunshire/__init__.py +++ b/src/dunshire/__init__.py @@ -11,4 +11,4 @@ from cones import (NonnegativeOrthant, SymmetricPSD, CartesianProduct) -from symmetric_linear_game import SymmetricLinearGame +from games import SymmetricLinearGame diff --git a/src/dunshire/symmetric_linear_game.py b/src/dunshire/games.py similarity index 100% rename from src/dunshire/symmetric_linear_game.py rename to src/dunshire/games.py diff --git a/test/suite.py b/test/suite.py index bfd0011..714bd57 100644 --- a/test/suite.py +++ b/test/suite.py @@ -14,13 +14,13 @@ addsitedir('./src/dunshire') import cones import errors import matrices -import symmetric_linear_game +import games suite = TestSuite() suite.addTest(DocTestSuite(cones)) suite.addTest(DocTestSuite(errors)) suite.addTest(DocTestSuite(matrices)) -suite.addTest(DocTestSuite(symmetric_linear_game)) -suite.addTest(TestLoader().loadTestsFromModule(symmetric_linear_game)) +suite.addTest(DocTestSuite(games)) +suite.addTest(TestLoader().loadTestsFromModule(games)) runner = TextTestRunner(verbosity=2) runner.run(suite) -- 2.43.2