Welcome To Our Shell

Mister Spy & Souheyl Bypass Shell

Current Path : /usr/share/gap/lib/

Linux ift1.ift-informatik.de 5.4.0-216-generic #236-Ubuntu SMP Fri Apr 11 19:53:21 UTC 2025 x86_64
Upload File :
Current File : //usr/share/gap/lib/memory.gi

#############################################################################
##
##  memory.gi          recog package                      Max Neunhöffer
##                                                            Ákos Seress
##
##  Copyright 2005 Lehrstuhl D für Mathematik, RWTH Aachen
##
##  Group objects remembering how they were created from the generators.
##
#############################################################################


InstallMethod(TypeOfObjWithMemory,"generic",true,[IsFamily],0,
function(fam)
  return NewType(fam,IsObjWithMemory);
end);

InstallGlobalFunction( GeneratorsWithMemory, 
  function(l)
    # l is a list of objects
    local i,ll,o,r,slp;
    slp := rec(prog := [],nogens := Length(l));
    ll := [];
    for i in [1..Length(l)] do
      o := l[i];
      r := rec(slp := slp, n := i, el := o);
      Objectify(TypeOfObjWithMemory(FamilyObj(o)),r);
      if IsMatrix(o) then
          SetFilterObj(r,IsMatrix);
      fi;
      Add(ll,r);
    od;
    return ll;
  end);

InstallMethod( StripMemory, "for an object with memory",
  [ IsObjWithMemory ],
  function( el )
    return el!.el;
  end );

InstallMethod( StripMemory, "for a list",
  [ IsList ],
  function( l )
    return List(l,StripMemory);
  end );

InstallMethod( StripMemory, "fallback for all objects",
  [ IsObject ],
  function( ob ) return ob; end );

InstallMethod( ForgetMemory, "nice error message for all objects",
  [ IsObject ],
  function( ob )
    Error( "This object does not allow forgetting memory." );
  end );

InstallMethod( ForgetMemory, "nice error message for memory objects",
  [ IsObjWithMemory ],
  function( el )
    Error( "You probably mean \"StripMemory\" instead of \"ForgetMemory\"." );
  end );

InstallMethod( ForgetMemory, "for a mutable list",
  [ IsList and IsMutable ],
  function( l )
    local i;
    for i in [1..Length(l)] do
        if IsBound(l[i]) and IsObjWithMemory(l[i]) then
            l[i] := l[i]!.el;
        fi;
    od;
  end );

InstallGlobalFunction( StripStabChain,
  function(S)
    # Throws away all memories of elements in the stabchain
    # Does *not* copy stabchain!
    local i,identity;
    for i in [1..Length(S.labels)] do
        if IsObjWithMemory(S.labels[i]) then
            S.labels[i] := S.labels[i]!.el;
        fi;
    od;
    for i in [1..Length(S.generators)] do
        if IsObjWithMemory(S.generators[i]) then
            S.generators[i] := S.generators[i]!.el;
        fi;
    od;
    if IsBound(S.transversal) then
        for i in [1..Length(S.transversal)] do
            if IsBound(S.transversal[i]) and 
               IsObjWithMemory(S.transversal[i]) then
                S.transversal[i] := S.transversal[i]!.el;
            fi;
        od;
    fi;
    if IsObjWithMemory(S.identity) then
        S.identity := S.identity!.el;
    fi;
    if IsBound(S.stabilizer) then
        StripStabChain(S.stabilizer);
    fi;
  end);

InstallGlobalFunction( CopyMemory,
  function(gwm,h)
    # h must be a homomorphic image of gwm, the memory of gwm is copied to
    # h. Returns a new object with memory instead of h.
    local hwm;
    hwm := rec(slp := gwm!.slp, n := gwm!.n, el := h);
    return Objectify(TypeOfObjWithMemory(FamilyObj(h)),hwm);
  end);
  
InstallGlobalFunction( GroupWithMemory,
  function(gens)
    # gens a list of generators
    local g,memgens;
    if IsGroup(gens) then
        memgens := GeneratorsWithMemory(GeneratorsOfGroup(gens));
    else
        memgens := GeneratorsWithMemory(gens);
    fi;
    g := GroupWithGenerators(memgens);
    return g;
  end);

InstallGlobalFunction( SLPOfElm,
  function(elm)
    # Returns a straight line program to write elm as in the original 
    # generators.
    if elm!.n = 0 then
        return StraightLineProgramNC( [[1,0]], elm!.slp.nogens );
    else
        return IntermediateResultOfSLPWithoutOverwrite (
                 [elm!.slp.prog,elm!.slp.nogens],elm!.n);
    fi;
  end);

InstallGlobalFunction( SLPOfElms,
  function(elms)
    # Returns a straight line program to write elm as in the original 
    # generators.
    return IntermediateResultsOfSLPWithoutOverwrite( 
               [elms[1]!.slp.prog,elms[1]!.slp.nogens], List(elms,x->x!.n) );
  end);

# Generic methods for group elements with memory:

InstallOtherMethod( One, "partial method for a group (beats to ask family)",
  true, [ IsMagmaWithOne and IsGroup ], 101,
  function( M )
    local gens;
    gens := GeneratorsOfGroup(M);
    if Length(gens) > 0 and IsObjWithMemory(gens[1]) then
      return One(gens[1]);
    else
      TryNextMethod();
    fi;
  end );

InstallMethod( ViewObj, "objects with memory", true, [IsObjWithMemory],0,
  function(o)
    Print("<");
    ViewObj(o!.el);
    Print(" with mem>");
end);

InstallMethod( PrintObj, "objects with memory", true, [IsObjWithMemory],0,
  function(o)
    Print("<");
    PrintObj(o!.el);
    Print(" with mem>");
end);

InstallMethod( \*, "objects with memory", true, 
  [IsObjWithMemory,IsObjWithMemory],0,
  function(a,b)
    local r,slp;
    slp := a!.slp;
    if a!.n = 0 then   # the identity!
        r := rec(slp := slp, n := b!.n, el := b!.el);
    elif b!.n = 0 then   # the identity!
        r := rec(slp := slp, n := a!.n, el := a!.el);
    else
        r := rec(slp := slp, n := Length(slp.prog)+slp.nogens+1,
                 el := a!.el*b!.el);
        Add(slp.prog,[a!.n,1,b!.n,1]);
    fi;
    Objectify(TypeOfObjWithMemory(FamilyObj(a)),r);
    if IsMatrix(a) then
        SetFilterObj(r,IsMatrix);
    fi;
    return r;
  end);

InstallMethod( One, "objects with memory", true,
  [IsObjWithMemory],0,
  function(a)
    local r;
    r := rec(slp := a!.slp, n := 0, el := One(a!.el));
    Objectify(TypeOfObjWithMemory(FamilyObj(a)),r);
    if IsMatrix(a) then
        SetFilterObj(r,IsMatrix);
    fi;
    return r;
  end);

InstallMethod( OneOp, "objects with memory", true,
  [IsObjWithMemory],0,
  function(a)
    local r;
    r := rec(slp := a!.slp, n := 0, el := One(a!.el));
    Objectify(TypeOfObjWithMemory(FamilyObj(a)),r);
    if IsMatrix(a) then
        SetFilterObj(r,IsMatrix);
    fi;
    return r;
  end);

InstallMethod( InverseOp, "objects with memory", true,
  [IsObjWithMemory],0,
  function(a)
    local r,slp;
    slp := a!.slp;
    if a!.n <> 0 then
        r := rec(slp := slp, n := Length(slp.prog)+slp.nogens+1,
                 el := InverseOp(a!.el));
        Add(slp.prog,[a!.n,-1]);
    else
        r := rec(slp := slp, n := 0, el := a!.el);
    fi;
    Objectify(TypeOfObjWithMemory(FamilyObj(a)),r);
    if IsMatrix(a) then
        SetFilterObj(r,IsMatrix);
    fi;
    return r;
  end);

InstallMethod( \^, "objects with memory", true, 
  [IsObjWithMemory,IsInt],0,
  function(a,b)
    local r,slp;
    slp := a!.slp;
    if a!.n = 0 then
        r := rec(slp := slp, n := 0, el := a!.el);
    else
        r := rec(slp := slp, n := Length(slp.prog)+slp.nogens+1,el := a!.el^b);
        Add(slp.prog,[a!.n,b]);
    fi;
    Objectify(TypeOfObjWithMemory(FamilyObj(a)),r);
    if IsMatrix(a) then
        SetFilterObj(r,IsMatrix);
    fi;
    return r;
  end);

InstallMethod(\=,"two objects with memory",IsIdenticalObj,
  [IsObjWithMemory,IsObjWithMemory],0,
  function(a,b)
    return a!.el = b!.el;
  end);

InstallGlobalFunction( SortFunctionWithMemory,
  function(a,b)
    if a!.el < b!.el then
        return true;
    elif a!.el = b!.el then
        return a!.n < b!.n;
    else
        return false;
    fi;
  end);

InstallMethod(\<,"two objects with memory",IsIdenticalObj,
  [IsObjWithMemory,IsObjWithMemory],0,
  function(a,b)
    return a!.el < b!.el;
  end);

InstallMethod(\=,"objects with memory with x",IsIdenticalObj,
  [IsObjWithMemory,IsMultiplicativeElement],0,
  function(a,x)
    return a!.el=x;
  end);

InstallMethod(\<,"objects with memory with x",IsIdenticalObj,
  [IsObjWithMemory,IsMultiplicativeElement],0,
  function(a,x)
    return a!.el<x;
  end);

InstallMethod(\<,"x with objects with memory",IsIdenticalObj,
  [IsObjWithMemory,IsMultiplicativeElement],0,
  function(a,x)
    return x<a!.el;
  end);

InstallMethod(Order,"object with memory",true, [IsObjWithMemory],0,
  function(a)
    return Order(a!.el);
  end);

InstallMethod(IsOne,"object with memory",true, [IsObjWithMemory],0,
  function(a)
    return IsOne(a!.el);
  end);

# Permutation methods for permutations with memory:

InstallMethod(LargestMovedPoint,"permutation with memory",true,
  [IsObjWithMemory and IsPerm],0,
  function(a)
    return LargestMovedPoint(a!.el);
  end);

InstallMethod(\^,"integer and permutation with memory", true,
  [IsInt, IsObjWithMemory and IsPerm],0,
  function(a,b)
    return a^b!.el;
  end);

InstallMethod(\/,"integer and permutation with memory", true,
  [IsInt, IsObjWithMemory and IsPerm],0,
  function(a,b)
    return a / b!.el;
  end);

InstallOtherMethod(CycleLengthOp,
  "for a permutation with memory and an integer",true,
  [ IsPerm and IsObjWithMemory, IsInt ], 0,
  function(p,e)
    return CycleLengthOp(p!.el,e);
  end);

InstallMethod(RestrictedPerm,
  "for a permutation with memory and a list of integers",true,
  [ IsPerm and IsObjWithMemory, IsList ], 0,
  function(a,l)
    local r;
    r := rec(slp := a!.slp, n := a!.n, el := RestrictedPerm(a!.el,l));
    Objectify(TypeOfObjWithMemory(FamilyObj(a)),r);
    return r;
  end);

InstallMethod(SignPerm,
  "for a permutation with memory",true,
  [ IsPerm and IsObjWithMemory ], 0,
  function(a)
  return SignPerm(a!.el);
end);

InstallOtherMethod(CycleOp,
  "for a permutation with memory and an integer",true,
  [ IsPerm and IsObjWithMemory, IsInt ], 0,
  function(a,p)
    return CycleOp(a!.el,p);
  end);

InstallOtherMethod(CycleStructurePerm,
  "for a permutation with memory",true,
  [ IsPerm and IsObjWithMemory ], 0,
  p->CycleStructurePerm(p!.el));

# Matrix methods:

InstallOtherMethod( DimensionsMat, "for a matrix with memory",
  [ IsMatrix and IsObjWithMemory ],
  function(M)
    return DimensionsMat(M!.el);
  end);

InstallOtherMethod( Length, "for a matrix with memory",
  [ IsMatrix and IsObjWithMemory ], M -> Length(M!.el) ) ;

InstallOtherMethod( ELM_LIST, "for a matrix with memory",
  [ IsMatrix and IsObjWithMemory, IsPosInt ],
  function(M,i)
    return M!.el[i];
  end);

InstallOtherMethod( \*, "for a row vector and a matrix with memory",true,
  [ IsListDefault and IsSmallList, IsMatrix and IsObjWithMemory ], 0,
  function(v,M)
    return v * M!.el;
  end);

InstallOtherMethod( \*, "for a scalar and a matrix with memory",true,
  [ IsScalar, IsMatrix and IsObjWithMemory ], 0,
  function(s,M)
    return s * M!.el;
  end);

InstallOtherMethod( \*, "for a matrix with memory and a scalar",true,
  [ IsMatrix and IsObjWithMemory, IsScalar ], 0,
  function(M,s)
    return M!.el * s;
  end);

InstallOtherMethod(ProjectiveOrder,"object with memory",true, 
  [IsObjWithMemory],0,
  function(a)
    return ProjectiveOrder(a!.el);
  end);

# Free group methods:

InstallOtherMethod( Length, "for a word with memory",
  [ IsObjWithMemory and IsWord ], a -> Length(a!.el) );


bypass 1.0, Devloped By El Moujahidin (the source has been moved and devloped)
Email: contact@elmoujehidin.net bypass 1.0, Devloped By El Moujahidin (the source has been moved and devloped) Email: contact@elmoujehidin.net