1#############################################################################
2####
3##
4#W  anupqxdesc.gd              ANUPQ package                    Werner Nickel
5#W                                                                Greg Gamble
6##
7##  Declares functions to do recursive development of a descendants tree.
8##  If ANUPQ is loaded from XGAP the development is seen graphically.
9##
10#Y  Copyright (C) 2001  Lehrstuhl D fuer Mathematik,  RWTH Aachen,  Germany
11##
12
13#############################################################################
14##
15#O  GraphicSheet() . . . . . . . . . . . . . . . . . . . . .  dummy operation
16#O  Disc() . . . . . . . . . . . . . . . . . . . . . . . . .  dummy operation
17#O  Line() . . . . . . . . . . . . . . . . . . . . . . . . .  dummy operation
18##
19##  These dummy operations are declared so that the functions  below  may  be
20##  defined    even    for    a    non-{\XGAP}    {\GAP}    session,    where
21##  `PqDescendantsTreeCoclassOne' will still work but without displaying  the
22##  tree developed graphically.
23##
24DeclareOperation( "GraphicSheet", [] );
25DeclareOperation( "Disc", [] );
26DeclareOperation( "Line", [] );
27
28#############################################################################
29##
30#F  PqDescendantsTreeCoclassOne([<i>]) . . . generate a coclass one des. tree
31##
32DeclareGlobalFunction( "PqDescendantsTreeCoclassOne" );
33
34#############################################################################
35##
36#F  PQX_PLACE_NEXT_NODE( <datarec>, <class> ) . place a node on an XGAP sheet
37##
38DeclareGlobalFunction( "PQX_PLACE_NEXT_NODE" );
39
40#############################################################################
41##
42#F  PQX_MAKE_CONNECTION( <datarec>, <a>, <b> ) . .  join two XGAP sheet nodes
43##
44DeclareGlobalFunction( "PQX_MAKE_CONNECTION" );
45
46#############################################################################
47##
48#F  PQX_RECURSE_DESCENDANTS(<datarec>,<class>,<parent>,<n>)  extend des. tree
49##
50DeclareGlobalFunction( "PQX_RECURSE_DESCENDANTS" );
51
52#E  anupqxdesc.gd . . . . . . . . . . . . . . . . . . . . . . . . . ends here
53