From: Michael Orlitzky Date: Fri, 22 Nov 2024 20:17:13 +0000 (-0500) Subject: mjo/cone/completely_positive.py: don't import from sage.all X-Git-Url: https://gitweb.michael.orlitzky.com/?a=commitdiff_plain;h=07ed42f7f8ea1dc921f65613e9ba0ea66e00fd06;p=sage.d.git mjo/cone/completely_positive.py: don't import from sage.all --- diff --git a/mjo/cone/completely_positive.py b/mjo/cone/completely_positive.py index 3dc66b4..5a6ee97 100644 --- a/mjo/cone/completely_positive.py +++ b/mjo/cone/completely_positive.py @@ -5,7 +5,7 @@ the set of all matrices `$A$`of the form `$\sum uu^{T}$` for `$u \in `$X$` are nonnegative. """ -from sage.all import * +from sage.symbolic.ring import SR from mjo.cone.symmetric_psd import factor_psd from mjo.cone.doubly_nonnegative import (is_doubly_nonnegative, is_extreme_doubly_nonnegative)