Skip to content

Commit

Permalink
fix indentation when printing double cosets (#5841)
Browse files Browse the repository at this point in the history
The distribution of `\<` and `\>` hints was obviously wrong.

I still do not understand why the hints were chosen this way.
Usually the idea is to mark positions in the string where line breaks
are more suitable than in other places, for example at the commas
that separate objects; but here it is the other way round?
  • Loading branch information
ThomasBreuer authored Nov 14, 2024
1 parent b3069e8 commit 329ab54
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/csetgrp.gi
Original file line number Diff line number Diff line change
Expand Up @@ -536,7 +536,7 @@ function(d)
return(STRINGIFY("DoubleCoset(\<",
ViewString(LeftActingGroup(d)),",\>",
ViewString(Representative(d)),",\>",
ViewString(RightActingGroup(d)),")"));
ViewString(RightActingGroup(d)),"\<)"));
end);

InstallMethodWithRandomSource(Random,
Expand Down

0 comments on commit 329ab54

Please sign in to comment.