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 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431
|
// Copyright (C) 1998 The New York Group Theory Cooperative
// See magnus/doc/COPYRIGHT for the full notice.
// Contents: Definition of base properties.
//
// Principal Author: Dmitry Pechkin
//
// Status: In progress.
//
// Revision History:
//
// Special Notes:
//
// Further implementation steps:
//
// Bugs:
//
//
#ifndef _BASE_PROPERTIES_H_
#define _BASE_PROPERTIES_H_
#include "Property.h"
#include "Associations.h"
#include "QuickAssociations.h"
#include "Chars.h"
#include "APofFreeGroups.h"
#include "FreeByCyclic.h"
#include "MSCGroup.h"
#include "Automorphism.h"
#include "HNNExtOfFreeGroup.h"
#include "NilpotentGroup.h"
#include "CosetEnumerator.h"
#include "DFSA.h"
#include "DiffMachine.h"
#include "KBMachine.h"
#include "DecomposeInSubgroup.h"
#include "AbelianSGPresentation.h"
#include "SGOfNilpotentGroup.h"
#include "PolyWord.h"
//============================================================
//
// Simple properties:
//
//============================================================
class NoData {};
// I/O stubs
inline istream& operator>>( const istream&, const NoData& ) {}
inline ostream& operator<<( const ostream&, const NoData& ) {}
/*
class $A$Property : public SimpleProperty< $S$ > {
public:
$S$Property( const $S$& data, const Chars& descr = Chars() )
: SimpleProperty< $S$ >(data, descr) {}
};
*/
class NoDataProperty : public SimpleProperty<NoData> {
public:
NoDataProperty( const Chars& descr = Chars() )
: SimpleProperty<NoData>(NoData(), descr) {}
};
class BoolProperty : public SimpleProperty<bool> {
public:
BoolProperty( const bool& data, const Chars& descr = Chars() )
: SimpleProperty<bool>(data, descr) {}
};
class IntProperty : public SimpleProperty<int> {
public:
IntProperty( const int& data, const Chars& descr = Chars() )
: SimpleProperty<int>(data, descr) {}
};
//class CharsProperty : public SimpleProperty<Chars> {
//public:
// CharsProperty(const Chars& str) : SimpleProperty<>(str) {}
// void readFrom(istream& istr);
// void writeTo(ostream& ostr) const;
//};
inline istream& operator>>( istream& istr, Word& w ) {
error("Called a stub for: istream& operator>>(istream&,Word&)");
}
//@dp just a stub. we don't use it.
class WordProperty : public SimpleProperty<Word> {
public:
WordProperty( const Word& data, const Chars& descr = Chars() )
: SimpleProperty<Word>(data,descr) {}
void readFrom(istream& istr) { istr > theData; }
void writeTo(ostream& ostr) const { ostr < theData; }
};
inline istream& operator>>( istream& istr, PolyWord& w ) {
error("Called a stub for: istream& operator>>(istream&,Word&)");
}
//@dp just a stub. we don't use it.
class PolyWordProperty : public SimpleProperty<PolyWord> {
public:
PolyWordProperty( const PolyWord& data, const Chars& descr = Chars() )
: SimpleProperty<PolyWord>(data,descr) {}
void readFrom(istream& istr) { istr > theData; }
void writeTo(ostream& ostr) const { ostr < theData; }
};
class IntegerProperty : public SimpleProperty<Integer> {
public:
IntegerProperty( const Integer& data, const Chars& descr = Chars() )
: SimpleProperty<Integer>(data, descr) {}
};
class SMFPCheckinTypeProperty : public SimpleProperty<int> {
public:
SMFPCheckinTypeProperty( const int& data, const Chars& descr = Chars() )
: SimpleProperty<int>(data, descr) {}
};
class FPGroupProperty : public SimpleProperty<FPGroup> {
public:
FPGroupProperty( const FPGroup& data, const Chars& descr = Chars() )
: SimpleProperty<FPGroup>(data, descr) {}
};
class FreeGroupProperty : public SimpleProperty<FreeGroup> {
public:
FreeGroupProperty( const FreeGroup& data, const Chars& descr = Chars() )
: SimpleProperty<FreeGroup>(data, descr) {}
};
class MSCGroupPtr
{
public:
MSCGroupPtr( const MSCGroupPtr& G );
~MSCGroupPtr();
const MSCGroup& getMSCG() const;
private:
friend class SimpleProperty<MSCGroupPtr>;
friend class MSCGroupProperty;
//friend class GIC;
MSCGroupPtr( const FPGroup& G, int lmbda );
MSCGroupPtr& operator= ( const MSCGroupPtr& G );
friend istream& operator>>(istream& istr, MSCGroupPtr& G);
friend ostream& operator<<(ostream& ostr, const MSCGroupPtr& G );
// Data members:
FPGroup fp;
int lambda;
MSCGroup *msc;
private:
MSCGroupPtr();
};
class MSCGroupProperty : public SimpleProperty<MSCGroupPtr> {
public:
MSCGroupProperty(const FPGroup& G, int lambda, const Chars& descr = Chars());
};
class FreeByCyclicProperty : public SimpleProperty<FreeByCyclic> {
public:
FreeByCyclicProperty(const FreeByCyclic& data, const Chars& descr = Chars())
: SimpleProperty<FreeByCyclic>(data, descr) {}
};
class AmalgProductOfFreeGroupsProperty :
public SimpleProperty<AmalgProductOfFreeGroups> {
public:
AmalgProductOfFreeGroupsProperty(const AmalgProductOfFreeGroups& data,
const Chars& descr = Chars() )
: SimpleProperty<AmalgProductOfFreeGroups>(data, descr) {}
};
class HNNExtOfFreeGroupProperty : public SimpleProperty<HNNExtOfFreeGroup> {
public:
HNNExtOfFreeGroupProperty( const HNNExtOfFreeGroup& data,
const Chars& descr = Chars() )
: SimpleProperty<HNNExtOfFreeGroup>(data, descr) {}
};
class MapProperty : public SimpleProperty<Map> {
public:
MapProperty( const Map& data, const Chars& descr = Chars() )
: SimpleProperty<Map>(data, descr) {}
};
//============================================================
//
// Complex properties:
//
//============================================================
/*
* // Template for complex base property:
*
class $C$Property : public ComplexProperty< $C$ > {
public:
$C$Property( const $C$& data, const Chars& descr = Chars() )
: ComplexProperty< $C$ >(data, descr) {}
protected:
void readFrom(istream& istr) { istr > theData; }
void writeTo (ostream& ostr) const { ostr < theData; }
};
*
*/
//inline istream& operator>>( istream& istr, AbelianGroup& G ){} //@dp imp!
// error("Called a stub for: istream& operator>>(istream&,Word&)");
//}
//@dp just a stub. we don't use it.
// dummy stub.
class AbelianGroupProperty : public ComplexProperty< AbelianGroup > {
public:
AbelianGroupProperty(const AbelianGroup& data, const Chars& descr = Chars())
: ComplexProperty<AbelianGroup>(data, descr) {}
protected:
void readFrom(istream& istr) { istr > theData; }
void writeTo (ostream& ostr) const { ostr < theData; }
};
class NilpotentGroupProperty : public ComplexProperty<NilpotentGroup> {
public:
NilpotentGroupProperty( const NilpotentGroup& data,
const Chars& descr = Chars() )
: ComplexProperty<NilpotentGroup>(data, descr) {}
protected:
void readFrom(istream& istr);
void writeTo (ostream& ostr);
};
class NilpGroupAssocProperty :
public ComplexProperty< AssociationsOf<int,NilpotentGroup*> >
{
public:
NilpGroupAssocProperty( const AssociationsOf<int,NilpotentGroup*>& data,
const Chars& descr = Chars() )
: ComplexProperty< AssociationsOf<int,NilpotentGroup*> >(data, descr) {}
NilpGroupAssocProperty( const NilpGroupAssocProperty& P );
const NilpGroupAssocProperty& operator=( const NilpGroupAssocProperty& P );
~NilpGroupAssocProperty();
protected:
void unbindAll();
void copyAll( const NilpGroupAssocProperty& P );
void readFrom(istream& istr);
void writeTo(ostream& ostr) const ;
};
class SubgroupGraphProperty : public ComplexProperty<SubgroupGraph> {
public:
SubgroupGraphProperty( const SubgroupGraph& data,
const Chars& descr = Chars() )
: ComplexProperty<SubgroupGraph>(data, descr) {}
protected:
void readFrom(istream& istr) { istr > theData; }
void writeTo(ostream& ostr) const { ostr < theData; }
};
class PermutationRepresentationProperty :
public ComplexProperty<PermutationRepresentation> {
public:
PermutationRepresentationProperty( const PermutationRepresentation& data,
const Chars& descr = Chars() )
: ComplexProperty<PermutationRepresentation>(data, descr) {}
protected:
void readFrom(istream& istr) { istr > theData; }
void writeTo(ostream& ostr) const { ostr < theData; }
};
class GroupDFSAProperty : public ComplexProperty<GroupDFSA> {
public:
GroupDFSAProperty( const GroupDFSA& data, const Chars& descr = Chars() )
: ComplexProperty<GroupDFSA>(data, descr) {}
protected:
void readFrom(istream& istr) { istr > theData; }
void writeTo(ostream& ostr) const { ostr < theData; }
};
class DiffMachineProperty : public ComplexProperty<DiffMachine> {
public:
DiffMachineProperty( const DiffMachine& data, const Chars& descr = Chars() )
: ComplexProperty<DiffMachine>(data, descr) {}
protected:
void readFrom(istream& istr) { istr > theData; }
void writeTo(ostream& ostr) const { ostr < theData; }
};
//@dp This property should be insvestigated more about data saved to and restored from
// a disk storage. Now it stores itself in a wrong way.
/// And we don't want to store this property on the disk at all now.
class KBMachineProperty : public UnstorableProperty<KBMachine> {
public:
KBMachineProperty( const KBMachine& data, const Chars& descr = Chars() )
: UnstorableProperty<KBMachine>( data, descr ) {}
};
/*@dp The future implementation of KBMachineProperty may look like this:
class KBMachineProperty : public ComplexProperty<KBMachine> {
public:
KBMachineProperty( const KBMachine& data, const Chars& descr = Chars() )
: ComplexProperty<KBMachine>(data, descr) {}
protected:
void readFrom(istream& istr) { istr > theData; }
void writeTo(ostream& ostr) const { ostr < theData; }
};
*/
class DecomposeInSubgroupOfFPGroupProperty :
public ComplexProperty<DecomposeInSubgroupOfFPGroup>
{
public:
DecomposeInSubgroupOfFPGroupProperty(
const DecomposeInSubgroupOfFPGroup& data, const Chars& descr = Chars()
) : ComplexProperty<DecomposeInSubgroupOfFPGroup>(data, descr) {}
protected:
void readFrom(istream& istr) { istr > theData; }
void writeTo(ostream& ostr) const { ostr < theData; }
};
class ListOfEndomorphismProperty :
public ComplexProperty< ListOf<Endomorphism> >
{
public:
ListOfEndomorphismProperty( const ListOf<Endomorphism> & data,
const Chars& descr = Chars() )
: ComplexProperty< ListOf<Endomorphism> >(data, descr) {}
protected:
void readFrom(istream& istr);
void writeTo (ostream& ostr) const;
};
class ListOfAutomorphismProperty :
public ComplexProperty< ListOf<Automorphism> > {
public:
ListOfAutomorphismProperty( const ListOf<Automorphism> & data,
const Chars& descr = Chars() )
: ComplexProperty< ListOf<Automorphism> >(data, descr) {}
protected:
void readFrom(istream& istr);
void writeTo (ostream& ostr) const;
};
class AbelianSGPresentationProperty :
public ComplexProperty<AbelianSGPresentation> {
public:
AbelianSGPresentationProperty( const AbelianSGPresentation& data,
const Chars& descr = Chars() )
: ComplexProperty<AbelianSGPresentation>(data, descr) {}
protected:
void readFrom(istream& istr) { istr > theData; }
void writeTo(ostream& ostr) const { ostr < theData; }
};
class SGOfNilpotentGroupProperty : public ComplexProperty<SGOfNilpotentGroup> {
public:
SGOfNilpotentGroupProperty( const SGOfNilpotentGroup& data,
const Chars& descr = Chars() )
: ComplexProperty<SGOfNilpotentGroup>(data, descr) {}
protected:
void readFrom(istream& istr);
void writeTo(ostream& ostr) const;
};
class SGNilpGroupAssocProperty :
public ComplexProperty< AssociationsOf<int,SGOfNilpotentGroup*> >
{
public:
SGNilpGroupAssocProperty(const AssociationsOf<int,SGOfNilpotentGroup*>& data,
const Chars& descr = Chars() )
: ComplexProperty< AssociationsOf<int,SGOfNilpotentGroup*> >(data, descr){}
SGNilpGroupAssocProperty( const SGNilpGroupAssocProperty& P );
const SGNilpGroupAssocProperty& operator=( const SGNilpGroupAssocProperty& P );
~SGNilpGroupAssocProperty();
protected:
void unbindAll();
void copyAll( const SGNilpGroupAssocProperty& P );
void readFrom(istream& istr);
void writeTo(ostream& ostr) const ;
};
//============================================================
//
// User defined properties:
//
//============================================================
/*
class <D>Property : public <B>Property {
public:
<D>Property(const <B>& data, const Chars& descr)
: <B>Property(data, descr) {}
PropertyType actualType() const { return type(); }
static PropertyType type() { return theTypeID; }
Chars propertyName() const { return "<D>"; }
protected:
GenericProperty* clone() const { return new <D>Property(*this); }
private:
static const PropertyType theTypeID;
};
*/
#endif
|