Quellcode-Bibliothek util.g
Sprache: unbekannt
|
|
Columbo aufrufen.g Download desUnknown {[0] [0] [0]}Datei anzeigen ############################################################################
##
## util.g IRREDSOL Burkhard Höfling
##
## Copyright © 2003–2016 Burkhard Höfling
##
############################################################################
##
#F DECLARE_IRREDSOL_SYNONYMS
##
## declare two synonyms, one for US English, and one for a shorter form
##
BindGlobal("DECLARE_IRREDSOL_SYNONYMS",
function(name)
local name2;
name2 := ReplacedString(name, "Soluble", "Solvable");
if name2 <> name and not IsBoundGlobal(name2) then
DeclareSynonym(name2, ValueGlobal(name));
fi;
name2 := ShallowCopy(name);
name2 := ReplacedString(name2, "AbsolutelyIrreducibleSoluble", "AIS");
name2 := ReplacedString(name2, "IrreducibleSoluble", "IrredSol");
# name2 := ReplacedString(name2, "PrimitiveSoluble", "PrimSol");
# name2 := ReplacedString(name2, "Primitive", "Prim");
# name2 := ReplacedString(name2, "Soluble", "Sol");
# name2 := ReplacedString(name2, "Matrix", "Mat");
# name2 := ReplacedString(name2, "Indices", "Inds");
# name2 := ReplacedString(name2, "Minimal", "Min");
# name2 := ReplacedString(name2, "Maximal", "Max");
# name2 := ReplacedString(name2, "Dimension", "Dim");
# name2 := ReplacedString(name2, "Extension", "Ext");
# name2 := ReplacedString(name2, "Fingerprint", "Fp");
if name2 <> name and not IsBoundGlobal(name2) then
DeclareSynonym(name2, ValueGlobal(name));
fi;
end);
############################################################################
##
#F DECLARE_IRREDSOL_SYNONYMS_ATTR
##
## like DECLARE_IRREDSOL_SYNONYMS, but also declares synonyms for setter
## and tester
##
BindGlobal("DECLARE_IRREDSOL_SYNONYMS_ATTR",
function(name)
DECLARE_IRREDSOL_SYNONYMS(name);
DECLARE_IRREDSOL_SYNONYMS(Concatenation("Set", name));
DECLARE_IRREDSOL_SYNONYMS(Concatenation("Has", name));
end);
############################################################################
##
#F DECLARE_IRREDSOL_FUNCTION
##
## Declare global function and synonyms
##
BindGlobal("DECLARE_IRREDSOL_FUNCTION",
function(name)
DeclareGlobalFunction(name);
DECLARE_IRREDSOL_SYNONYMS(name);
end);
############################################################################
##
#F DECLAE_IRREDSOL_OBSOLETE
##
##
##
BindGlobal("DECLAE_IRREDSOL_OBSOLETE",
function(name, new)
BindGlobal(name, function(arg)
Info(InfoWarning, 1, "The function `", name, "' is deprecated. ",
"Please use `", new, "' instead.");
return CallFuncList(ValueGlobal(new), arg);
end);
DECLARE_IRREDSOL_SYNONYMS(name);
end);
############################################################################
##
#F CopyListEntries
##
## replacement for GAP 4.5 kernel function
##
if not IsBound(CopyListEntries) then
BindGlobal("CopyListEntries",
function(src, from1, step1, dst, from2, step2, n)
dst{[from2, from2+step2..from2+(n-1)*step2]} :=
src{[from1, from1+step1..from1+(n-1)*step1]};
end);
fi;
############################################################################
##
#F GroupGeneralMappingByImagesNC
##
## replacement for GAP 4.6 function
##
if not IsBound(GroupGeneralMappingByImagesNC) then
BindGlobal("GroupGeneralMappingByImagesNC", GroupGeneralMappingByImages);
fi;
############################################################################
##
#E
##
[ 0.98Quellennavigators
]
|
2026-03-28
|