Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion lib/HeLP.gd
Original file line number Diff line number Diff line change
Expand Up @@ -407,7 +407,7 @@ DeclareGlobalFunction( "HeLP_ChangeCharKeepSols" );

#! @Description
#! This function delets all the values calculated so far and resets the global variables <K>HeLP_CT</K>
#! and <K>HeLP_CT</K> to their initial value <K>[ [ [1] ] ]</K> and <K>CharacterTable(SmallGroup(1,1))</K>
#! and <K>HeLP_CT</K> to their initial value <K>[ [ [1] ] ]</K> and <K>CharacterTable(TrivialGroup())</K>
#! respectively.
#! @Arguments
#! @Returns nothing
Expand Down
2 changes: 1 addition & 1 deletion lib/HeLP_internal_no_solving.gi
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
## Internal functions that do not solve any inqualities, i.e. do not need 4ti2 or normaliz
#########

BindGlobal("HeLP_CT", CharacterTable(SmallGroup(1,1)));
BindGlobal("HeLP_CT", CharacterTable(TrivialGroup()));
BindGlobal("HeLP_sol", [[[[1]]]]); # sol[k] contains the possible solutions for elements of order k
MakeReadWriteGlobal("HeLP_sol");
# HeLP_sol will be set as global variable when loading the package to have a warning in case it is already ued as a variable
Expand Down
2 changes: 1 addition & 1 deletion lib/HeLP_no_solving.gi
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ InstallGlobalFunction(HeLP_Reset, function()
# Delets all values calculated so far and rests the varaibles to the inital value
MakeReadWriteGlobal("HeLP_CT");
UnbindGlobal("HeLP_CT");
BindGlobal("HeLP_CT", CharacterTable(SmallGroup(1,1)));
BindGlobal("HeLP_CT", CharacterTable(TrivialGroup()));
HeLP_sol := [[[[1]]]];
end);

Expand Down