[BACK]Return to symmetry_group.adb CVS log [TXT][DIR] Up to [local] / OpenXM_contrib / PHC / Ada / Root_Counts / Symmetry

File: [local] / OpenXM_contrib / PHC / Ada / Root_Counts / Symmetry / symmetry_group.adb (download)

Revision 1.1.1.1 (vendor branch), Sun Oct 29 17:45:31 2000 UTC (23 years, 7 months ago) by maekawa
Branch: PHC, MAIN
CVS Tags: v2, maekawa-ipv6, RELEASE_1_2_3, RELEASE_1_2_2_KNOPPIX_b, RELEASE_1_2_2_KNOPPIX, RELEASE_1_2_2, RELEASE_1_2_1, HEAD
Changes since 1.1: +0 -0 lines

Import the second public release of PHCpack.

OKed by Jan Verschelde.

with Standard_Integer_Vectors;           use Standard_Integer_Vectors;

package body Symmetry_Group is

  use Lists_of_Permutations;

  procedure Add ( l : in out List_of_Permutations; p : in Permutation ) is

    lp : Link_To_Permutation;

  begin
    lp := new Vector'(Vector(p));
    Construct(lp,l);
  end Add;

  procedure Append ( first,last : in out List_of_Permutations;
                     p : in Permutation ) is

    lp : Link_To_Permutation;

  begin
    lp := new Vector'(Vector(p));
    Append(first,last,lp);
  end Append;

  function Union ( a,b : List_of_Permutations ) return List_of_Permutations is

    tmp,res : List_of_Permutations;

  begin
    res := a;
    tmp := b;
    while not Is_Null(tmp) loop
      Add(res,Permutation(Head_Of(tmp).all));
      tmp := Tail_Of(tmp);
    end loop;
    return res;
  end Union;

  function SymGrp ( n : natural ) return List_of_Permutations is

    sn : List_of_Permutations;
    p : Vector(1..n);

  begin
    for k in p'range loop
      p(k) := k;
    end loop;
    for k in reverse 1..n loop
      p(k) := 1; p(1) := k;
      declare
        lp : Link_to_Permutation := new Vector'(p);
      begin
        Construct(lp,sn);
      end;
      p(1) := 1; p(k) := k;
    end loop;
    return sn;
  end SymGrp;

  function Generate ( g : List_of_Permutations ) return List_of_Permutations is

    res : List_Of_Permutations;
    at_end : boolean;

   -- IMPORTANT :
   --   This routine assumes that permutations are added to the front
   --   of the list !!!

  begin
    if not Is_Null(g)
     then declare
            p1,p2,r : Permutation(Head_Of(g).all'range);
            temp1,temp2,nwres : List_Of_Permutations;
            nb,cnt : natural;
          begin
           -- INITIALIZE res :
            temp1 := g;
            while not Is_Null(temp1) loop
              p1 := Permutation(Head_Of(temp1).all);
              Add(res,p1);
              temp1 := Tail_Of(temp1);
            end loop;
           -- CONSTRUCT res :
	    at_end := false;
	    nb := Length_Of(res);
            while not at_end loop
              temp1 := g; --res;
              while not Is_Null(temp1) loop
                p1 := Permutation(Head_Of(temp1).all);
                cnt := 0;
                temp2 := res;
                while cnt < nb loop
                  p2 := Permutation(Head_Of(temp2).all);
                  r := p1*p2;
                  if not Is_In(res,r) and not Is_In(nwres,r)
                   then Add(nwres,r);
                  end if;
                  cnt := cnt + 1;
                  temp2 := Tail_Of(temp2);
                end loop;
                temp1 := Tail_Of(temp1);
              end loop;
              nb := Length_Of(nwres);
	      at_end := (nb = 0);
	      if not at_end
               then temp2 := nwres;
                    while not Is_Null(temp2) loop
                      Add(res,Permutation(Head_Of(temp2).all));
                      temp2 := Tail_Of(temp2);
                    end loop;
                    Clear(nwres);
              end if;
            end loop;
          end;
    end if;
    return res;
  end Generate;

-- SELECTORS :

  function Number (l : List_Of_Permutations) return natural is
  begin
    return Length_Of(l);
  end Number;

  function Is_In ( l : List_of_Permutations; p : Permutation )
                 return boolean is

    tmp : List_Of_Permutations := l;

  begin
    while not Is_Null(tmp) loop
      if Equal(Permutation(Head_Of(tmp).all),p)
       then return true;
       else tmp := Tail_Of(tmp);
      end if;
    end loop;
    return false;
  end Is_In;

  procedure Iterator ( l : in List_of_Permutations ) is

    tmp : List_Of_Permutations := l;
    cont : boolean;

  begin
    cont := false;
    while not Is_Null(tmp) loop
      Process(Permutation(Head_Of(tmp).all),cont);
      exit when not cont;
      tmp := Tail_Of(tmp);
    end loop;
  end Iterator;

-- DESTRUCTOR :

  procedure Clear ( l : in out List_of_Permutations ) is
  begin
    Lists_of_Permutations.Clear(Lists_of_Permutations.List(l));
  end Clear;

end Symmetry_Group;