]> gitweb.michael.orlitzky.com - sage.d.git/blobdiff - mjo/cone/all.py
cone/schur.py: add "lattice" argument.
[sage.d.git] / mjo / cone / all.py
index c8957a0ee58f704d71ffb6cc4283893c78073d82..80d5b0b472ab815a1aae751b41d3d33a8cd10d78 100644 (file)
@@ -2,15 +2,12 @@
 All imports from mjo.cone modules.
 """
 
-# Sage doesn't load ~/.sage/init.sage during testing (sage -t), so we
-# have to explicitly mangle our sitedir here so that "mjo.foo" resolves.
-from os.path import abspath
-from site import addsitedir
-addsitedir(abspath('../../'))
-
 from mjo.cone.cone import *
 from mjo.cone.completely_positive import *
 from mjo.cone.doubly_nonnegative import *
+from mjo.cone.faces import *
+from mjo.cone.nonnegative_orthant import *
 from mjo.cone.permutation_invariant import *
 from mjo.cone.rearrangement import *
+from mjo.cone.schur import *
 from mjo.cone.symmetric_psd import *