From acf52299e23333d74476b3a525261e930a1d6d64 Mon Sep 17 00:00:00 2001 From: Michael Orlitzky Date: Fri, 20 Feb 2026 15:00:04 -0500 Subject: [PATCH] mjo/clan/clan_operator.py: prefer "C" for clan variables --- mjo/clan/clan_operator.py | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/mjo/clan/clan_operator.py b/mjo/clan/clan_operator.py index 5f88d17..14b0daa 100644 --- a/mjo/clan/clan_operator.py +++ b/mjo/clan/clan_operator.py @@ -15,14 +15,14 @@ class ClanOperator(Map): The domain and codomain must be clans; if either is not, then an error is raised:: - sage: J = SnClan(2) - sage: V = VectorSpace(J.base_ring(), 3) - sage: M = matrix.identity(J.base_ring(), 3) - sage: ClanOperator(V,J,M) + sage: C = SnClan(2) + sage: V = VectorSpace(C.base_ring(), 3) + sage: M = matrix.identity(C.base_ring(), 3) + sage: ClanOperator(V,C,M) Traceback (most recent call last): ... TypeError: domain must be a clan - sage: ClanOperator(J,V,M) + sage: ClanOperator(C,V,M) Traceback (most recent call last): ... TypeError: codomain must be a clan -- 2.51.0