]> gitweb.michael.orlitzky.com - sage.d.git/commitdiff
Remove unused unrestrict_span() function.
authorMichael Orlitzky <michael@orlitzky.com>
Fri, 12 Jun 2015 22:27:07 +0000 (18:27 -0400)
committerMichael Orlitzky <michael@orlitzky.com>
Fri, 12 Jun 2015 22:27:07 +0000 (18:27 -0400)
mjo/cone/cone.py

index f5371d6d803cdbc97fe4ba41cb26f0ee691f1a2a..61914fa84189f9ba37a0bc3401ff3d6bd2e46461 100644 (file)
@@ -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.