]> gitweb.michael.orlitzky.com - sage.d.git/commitdiff
eja: add algebra constructors to the global namespace.
authorMichael Orlitzky <michael@orlitzky.com>
Sun, 28 Jul 2019 16:37:06 +0000 (12:37 -0400)
committerMichael Orlitzky <michael@orlitzky.com>
Mon, 29 Jul 2019 03:19:01 +0000 (23:19 -0400)
mjo/all.py
mjo/eja/__init__.py [new file with mode: 0644]
mjo/eja/all.py [new file with mode: 0644]

index 9cdb23978eb1b7e25a7e2e957a136d820096081c..c0329ed3bfdb0ae849ab2ce0a5a3225e508e323d 100644 (file)
@@ -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 (file)
index 0000000..8076a85
--- /dev/null
@@ -0,0 +1 @@
+# <3 git
diff --git a/mjo/eja/all.py b/mjo/eja/all.py
new file mode 100644 (file)
index 0000000..30164ac
--- /dev/null
@@ -0,0 +1,11 @@
+"""
+All imports from mjo.eja modules.
+"""
+
+from mjo.eja.euclidean_jordan_algebra import (ComplexHermitianEJA,
+                                              JordanSpinEJA,
+                                              QuaternionHermitianEJA,
+                                              RealCartesianProductEJA,
+                                              RealSymmetricEJA,
+                                              random_eja)
+