From: Michael Orlitzky Date: Mon, 10 Oct 2016 15:57:01 +0000 (-0400) Subject: Rename the "symmetric_linear_game" module to "games". X-Git-Tag: 0.1.0~173 X-Git-Url: https://gitweb.michael.orlitzky.com/?a=commitdiff_plain;h=ff576f2eddae5554e4888d99b092d73e19619a91;p=dunshire.git Rename the "symmetric_linear_game" module to "games". --- 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)