From a96fd3b734f5819bfa8f408f0a682fec286a380c Mon Sep 17 00:00:00 2001 From: Michael Orlitzky Date: Fri, 12 Jun 2015 18:27:07 -0400 Subject: [PATCH] Remove unused unrestrict_span() function. --- mjo/cone/cone.py | 23 +---------------------- 1 file changed, 1 insertion(+), 22 deletions(-) diff --git a/mjo/cone/cone.py b/mjo/cone/cone.py index f5371d6..61914fa 100644 --- a/mjo/cone/cone.py +++ b/mjo/cone/cone.py @@ -126,28 +126,7 @@ def ips_iso(K): return (phi,phi_inv) - -def unrestrict_span(K, K2=None): - if K2 is None: - K2 = K - - _,phi_inv = ips_iso(K2) - V_iso = iso_space(K2) - (W, W_perp) = V_iso.cartesian_factors() - - rays = [] - for r in K.rays(): - w = sum([ r[idx]*W.basis()[idx] for idx in range(0,len(r)) ]) - pair = V_iso( (w, W_perp.zero()) ) - rays.append( phi_inv(pair) ) - - L = ToricLattice(W.dimension() + W_perp.dimension()) - - return Cone(rays, lattice=L) - - - -def restrict_span(K, K2=None): +def rho(K, K2=None): r""" Restrict ``K`` into its own span, or the span of another cone. -- 2.44.2