From 220688f4c9dcee4a4f980c955fc159e38514bbcb Mon Sep 17 00:00:00 2001 From: Michael Orlitzky Date: Sun, 28 Jul 2019 12:37:06 -0400 Subject: [PATCH] eja: add algebra constructors to the global namespace. --- mjo/all.py | 1 + mjo/eja/__init__.py | 1 + mjo/eja/all.py | 11 +++++++++++ 3 files changed, 13 insertions(+) create mode 100644 mjo/eja/__init__.py create mode 100644 mjo/eja/all.py diff --git a/mjo/all.py b/mjo/all.py index 9cdb239..c0329ed 100644 --- a/mjo/all.py +++ b/mjo/all.py @@ -4,6 +4,7 @@ in his script. Instead, he can just `from mjo.all import *`. """ from mjo.cone.all import * +from mjo.eja.all import * from mjo.interpolation import * from mjo.misc import * from mjo.orthogonal_polynomials import * diff --git a/mjo/eja/__init__.py b/mjo/eja/__init__.py new file mode 100644 index 0000000..8076a85 --- /dev/null +++ b/mjo/eja/__init__.py @@ -0,0 +1 @@ +# <3 git diff --git a/mjo/eja/all.py b/mjo/eja/all.py new file mode 100644 index 0000000..30164ac --- /dev/null +++ b/mjo/eja/all.py @@ -0,0 +1,11 @@ +""" +All imports from mjo.eja modules. +""" + +from mjo.eja.euclidean_jordan_algebra import (ComplexHermitianEJA, + JordanSpinEJA, + QuaternionHermitianEJA, + RealCartesianProductEJA, + RealSymmetricEJA, + random_eja) + -- 2.43.2