X-Git-Url: http://gitweb.michael.orlitzky.com/?a=blobdiff_plain;f=dunshire%2F__init__.py;fp=dunshire%2F__init__.py;h=f754c92fc0acd2cf70ea4bf9aa28f9e9639f1225;hb=bdb596b84a06d0c97e39d42586a51fc36ba44186;hp=0000000000000000000000000000000000000000;hpb=21a2eb9a647a48c0e94d02c60ef8785c4ea35f7b;p=dunshire.git diff --git a/dunshire/__init__.py b/dunshire/__init__.py new file mode 100644 index 0000000..f754c92 --- /dev/null +++ b/dunshire/__init__.py @@ -0,0 +1,14 @@ +""" +The "user interface" for Dunshire. + +Clients are intended to import everything from this module, which in +turn pulls in everything that they would need to use the library. +""" + +# Needed to construct the cone over which the game takes place. +from .cones import (NonnegativeOrthant, + IceCream, + SymmetricPSD, + CartesianProduct) + +from .games import SymmetricLinearGame