Skip to content

Commit

Permalink
Don't call TzPrintStatus if printLevel = 0 (#5777)
Browse files Browse the repository at this point in the history
  • Loading branch information
fingolfin authored Aug 26, 2024
1 parent ff7537c commit 32fa498
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion grp/glzmodmz.gi
Original file line number Diff line number Diff line change
Expand Up @@ -314,7 +314,7 @@ local oper,n,R,o,nrit,
e:=List(em,r->List(r,Int))-b;
e:=1/pp*e;
e:=Concatenation(e)*one;
e:=ImmutableVector(p,e);
e:=ImmutableVector(p,e);
if not e in sub then
Add(bas,e);
Add(basm,em);
Expand Down
4 changes: 2 additions & 2 deletions lib/tietze.gi
Original file line number Diff line number Diff line change
Expand Up @@ -2351,7 +2351,7 @@ local tietze,oll,num,gens,gensn,rev,w,i,r,a;
TzGo(T); # cleanup
TzOptions(T).loopLimit:=oll;
TzOptions(T).protected:=downto;
TzPrintStatus(T,true);
if TzOptions(T).printLevel >= 1 then TzPrintStatus( T, true ); fi;

fi;

Expand Down Expand Up @@ -2393,7 +2393,7 @@ local tietze,oll,num,gens,gensn,rev,w,i,r,a;
TzGo(T); # cleanup
TzOptions(T).loopLimit:=oll;
TzOptions(T).protected:=downto;
TzPrintStatus(T,true);
if TzOptions(T).printLevel >= 1 then TzPrintStatus( T, true ); fi;

fi;
od;
Expand Down

0 comments on commit 32fa498

Please sign in to comment.