From 028d73f4e91ac171d0b2efd0d349aa5669722d4c Mon Sep 17 00:00:00 2001 From: Michael Orlitzky Date: Tue, 26 Nov 2024 13:40:28 -0500 Subject: [PATCH] mjo/eja/eja_operator.py: add a comment about something non-obvious --- mjo/eja/eja_operator.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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]]) -- 2.49.0