Skip to content

Commit

Permalink
Rename ReducedWord to MODISOM_ReducedWord
Browse files Browse the repository at this point in the history
... to fix clash with kbmag
  • Loading branch information
fingolfin committed Sep 23, 2024
1 parent df071d9 commit 41ed066
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions gap/grpalg/collect.gi
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ end);
# Reduces the word w
# Input: Jennings-word
# Output: Same word where two eqaul factors don't appear one after the other
BindGlobal("ReducedWord", function( w )
BindGlobal("MODISOM_ReducedWord", function( w )
local i, wc;

wc := StructuralCopy(w);
Expand Down Expand Up @@ -288,7 +288,7 @@ local res, sres, slw, t, respart, srespart, s;

# Check if resulting word has weight small enough
if WordWeight(T, respart[2]) <= wmax then
respart[2] := ReducedWord(respart[2]);
respart[2] := MODISOM_ReducedWord(respart[2]);
sres := sres + 1;
res[sres] := respart;
fi;
Expand Down Expand Up @@ -650,7 +650,7 @@ BindGlobal("TableOfRadByCollection", function( T )
od;

# Reduce factor word
w1 := ReducedWord(w1);
w1 := MODISOM_ReducedWord(w1);

# Express factor word as linear combination in Jennings basis and translate
# to vector of underlying field
Expand Down

0 comments on commit 41ed066

Please sign in to comment.