]> gitweb.michael.orlitzky.com - dunshire.git/blob - dunshire/__init__.py
Use the DEBUG_FLOAT_FORMAT when printing exception details.
[dunshire.git] / dunshire / __init__.py
1 """
2 The "user interface" for Dunshire.
3
4 Clients are intended to import everything from this module, which in
5 turn pulls in everything that they would need to use the library.
6 """
7
8 # Needed to construct the cone over which the game takes place.
9 from .cones import (NonnegativeOrthant,
10 IceCream,
11 SymmetricPSD,
12 CartesianProduct)
13
14 from .games import SymmetricLinearGame