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 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195
|
// Copyright (C) 1995 The New York Group Theory Cooperative
// See magnus/doc/COPYRIGHT for the full notice.
// Contents: Declaration of class SMMap
//
// Principal Author: Roger Needham
//
// Status: in progress
//
// Revision History:
//
#ifndef _SMMAP_H_
#define _SMMAP_H_
#include "AlgebraicObject.h"
#include "SMFPGroup.h"
#include "MIC.h"
#include "Map.h"
#include "AbelianProblems.h"
// ------------------------------- MCM ------------------------------------- //
class MCM : public Supervisor
{
public:
/////////////////////////////////////////////////////////////////////////
// //
// Constructors: //
// //
/////////////////////////////////////////////////////////////////////////
MCM( class SMMap& M );
/////////////////////////////////////////////////////////////////////////
// //
// Accessors: //
// //
/////////////////////////////////////////////////////////////////////////
SMMap& getMap( ) const { return theMap; }
/////////////////////////////////////////////////////////////////////////
// //
// Front End Interfacing: //
// //
/////////////////////////////////////////////////////////////////////////
void viewStructure(ostream& ostr) const { }
/////////////////////////////////////////////////////////////////////////
// //
// Subordinate Computation Managers: //
// //
/////////////////////////////////////////////////////////////////////////
Subordinate<MCM,AbelianHomIsMonoComp> abelianHomIsMono;
Subordinate<MCM,AbelianHomIsEpiComp> abelianHomIsEpi;
/////////////////////////////////////////////////////////////////////////
// //
// Control: //
// //
/////////////////////////////////////////////////////////////////////////
void takeControl( ); // overrides ComputationManager
/////////////////////////////////////////////////////////////////////////
// //
// State Transitions: //
// //
/////////////////////////////////////////////////////////////////////////
void start( ) { } // overrides ComputationManager
void terminate( ) { } // overrides ComputationManager
private:
/////////////////////////////////////////////////////////////////////////
// //
// Data Members: //
// //
/////////////////////////////////////////////////////////////////////////
class SMMap& theMap;
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.
};
//---------------------------------------------------------------------------//
//----------------------------- SMMap ---------------------------------------//
//---------------------------------------------------------------------------//
class SMMap : public AlgebraicObject
{
public:
/////////////////////////////////////////////////////////////////////////
// //
// Constructors: //
// //
/////////////////////////////////////////////////////////////////////////
SMMap(SMFPGroup& G, Map m, const Chars heritage);
SMMap(SMFPGroup& G, SMFPGroup& H, Map m, const Chars heritage);
SMMap(SMFPGroup& G);
SMMap(SMFPGroup& G, SMFPGroup& H);
//@rn Bogus ctors; see `But no' comment in Menu.h
/////////////////////////////////////////////////////////////////////////
// //
// Accessors: //
// //
/////////////////////////////////////////////////////////////////////////
Map getMap( ) const { return theMap; }
SMFPGroup& getDomain( ) const { return theDomain; }
SMFPGroup& getRange( ) const { return theRange; }
MCM& mcm() const { return *theMCM; }
InformationCenter* infoCenter() { return &mic; }
const InformationCenter* infoCenter() const { return &mic; }
/////////////////////////////////////////////////////////////////////////
// //
// Front End Interfacing: //
// //
/////////////////////////////////////////////////////////////////////////
static const char* type( ) { return "SMMap"; }
const char* typeID( ) const { return type(); } // overrides SMObject
const IconID iconID( ) const { return IconID::map; } // overrides SMObject
void viewStructure(ostream& ostr) const; // overrides SMObject
void printProperties(ostream& ostr) const; // overrides SMObject
void printDefinition(ostream& ostr) const; // overrides SMObject
protected:
/////////////////////////////////////////////////////////////////////////
// //
// Restricted Access: //
// //
/////////////////////////////////////////////////////////////////////////
void readMessage(istream&) { } // overrides SMObject
/////////////////////////////////////////////////////////////////////////
// //
// Data Members: //
// //
/////////////////////////////////////////////////////////////////////////
public:
MIC mic;
private:
const Map theMap;
SMFPGroup& theDomain;
SMFPGroup& theRange;
MCM* theMCM; // TheObjects removes scm when this is removed.
};
#endif
|