From: Michael Orlitzky Date: Tue, 26 Nov 2024 18:40:28 +0000 (-0500) Subject: mjo/eja/eja_operator.py: add a comment about something non-obvious X-Git-Url: https://gitweb.michael.orlitzky.com/?a=commitdiff_plain;h=028d73f4e91ac171d0b2efd0d349aa5669722d4c;p=sage.d.git mjo/eja/eja_operator.py: add a comment about something non-obvious --- diff --git a/mjo/eja/eja_operator.py b/mjo/eja/eja_operator.py index 4c1d60d..0b1e9a8 100644 --- a/mjo/eja/eja_operator.py +++ b/mjo/eja/eja_operator.py @@ -631,7 +631,7 @@ class EJAOperator(Map): of Faraut & Koranyi:: sage: J1 = HadamardEJA(1) - sage: J2 = HadamardEJA(1, prefix='c') + sage: J2 = HadamardEJA(1, prefix='c') # ensures J2 is not J1 sage: J2._inner_product_matrix = 2*J1._inner_product_matrix sage: J = cartesian_product([J1,J2]) sage: M = matrix(J1.base_ring(), [[0,1],[1,0]])