1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128
|
// Copyright (C) 1995 The New York Group Theory Cooperative
// See magnus/doc/COPYRIGHT for the full notice.
//
// Contents: Declaration of class GCM
//
// Principal Author: Roger Needham
//
// Status: in progress
//
// Revision History:
//
#ifndef _GCM_H_
#define _GCM_H_
#include "FPGroup.h"
#include "ComputationManager.h"
#include "Supervisor.h"
#include "GIC.h"
// Computation Managers supervised by a GCM:
#include "NormalClosure.h"
#include "AbelianInvariants.h"
#include "KBModule.h"
#include "AGModule.h"
#include "ToddCoxeter.h"
#include "HToddCoxeter.h"
#include "NilpotentQuotients.h"
//---------------------------------------------------------------------------//
//-------------------------------- GCM --------------------------------------//
//---------------------------------------------------------------------------//
class GCM : public Supervisor
{
public:
/////////////////////////////////////////////////////////////////////////
// //
// Constructors: //
// //
/////////////////////////////////////////////////////////////////////////
GCM( class SMFPGroup& G );
/////////////////////////////////////////////////////////////////////////
// //
// Accessors: //
// //
/////////////////////////////////////////////////////////////////////////
SMFPGroup& getSMFPGroup( ) const { return theSMFPGroup; }
/////////////////////////////////////////////////////////////////////////
// //
// Front End Interfacing: //
// //
/////////////////////////////////////////////////////////////////////////
void viewStructure(ostream& ostr) const;
/////////////////////////////////////////////////////////////////////////
// //
// Subordinate Computation Managers: //
// //
/////////////////////////////////////////////////////////////////////////
Subordinate<GCM,NormalClosure> normalClosure;
Subordinate<GCM,AbelianInvariants> abelianInvariants;
Subordinate<GCM,AbelianPrimes> abelianPrimes;
Subordinate<GCM,AbelianRank> abelianRank;
Subordinate<GCM,KBSupervisor> kbSupervisor;
Subordinate<GCM,AGSupervisor> agSupervisor;
Subordinate<GCM,NilpotentQuotients> nilpotentQuotients;
Subordinate<GCM,NGcomputeBasis> computeBasis;
Subordinate<GCM,ToddCoxeter> theToddCoxeter;
Subordinate<GCM,HToddCoxeter> ghToddCoxeter;
/////////////////////////////////////////////////////////////////////////
// //
// Control: //
// //
/////////////////////////////////////////////////////////////////////////
void takeControl( ); // overrides ComputationManager
/////////////////////////////////////////////////////////////////////////
// //
// State Transitions: //
// //
/////////////////////////////////////////////////////////////////////////
void start( ); // overrides ComputationManager
void terminate( ); // overrides ComputationManager
private:
/////////////////////////////////////////////////////////////////////////
// //
// Data Members: //
// //
/////////////////////////////////////////////////////////////////////////
class SMFPGroup& theSMFPGroup;
bool didFastChecks;
// The takeControl method does some sneaky checks of obvious properties
// (this should be formalized, since they are not always that fast).
// This records the first call, so that they are not done over and over.
};
#endif
|