From: Michael Orlitzky Date: Fri, 20 Feb 2026 20:00:04 +0000 (-0500) Subject: mjo/clan/clan_operator.py: prefer "C" for clan variables X-Git-Url: https://gitweb.michael.orlitzky.com/?a=commitdiff_plain;h=acf52299e23333d74476b3a525261e930a1d6d64;p=sage.d.git mjo/clan/clan_operator.py: prefer "C" for clan variables --- 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