]> gitweb.michael.orlitzky.com - sage.d.git/commitdiff
eja: remove unused variable in gram_schmidt.
authorMichael Orlitzky <michael@orlitzky.com>
Mon, 15 Mar 2021 21:54:43 +0000 (17:54 -0400)
committerMichael Orlitzky <michael@orlitzky.com>
Mon, 15 Mar 2021 21:54:43 +0000 (17:54 -0400)
mjo/eja/eja_utils.py

index 1e10943e6ee686a015b45f2f1592efca3323e705..8422fbff3c3a3f1523a84708ee659bd605da7ffe 100644 (file)
@@ -265,8 +265,6 @@ def gram_schmidt(v, inner_product=None):
         # cool
         return v
 
-    R = v[0].base_ring()
-
     # Our "zero" needs to belong to the right space for sum() to work.
     zero = v[0].parent().zero()