You can subscribe to this list here.
| 2005 |
Jan
|
Feb
|
Mar
(1) |
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 2006 |
Jan
|
Feb
(31) |
Mar
(51) |
Apr
(13) |
May
(26) |
Jun
(24) |
Jul
(1) |
Aug
(3) |
Sep
(8) |
Oct
(18) |
Nov
(12) |
Dec
(9) |
| 2007 |
Jan
|
Feb
(3) |
Mar
(12) |
Apr
(4) |
May
(20) |
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
| 2008 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
(1) |
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
| 2009 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
(1) |
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
|
From: <ybr...@us...> - 2009-06-22 15:17:51
|
Revision: 257
http://magnus.svn.sourceforge.net/magnus/?rev=257&view=rev
Author: ybryukhov
Date: 2009-06-22 15:17:45 +0000 (Mon, 22 Jun 2009)
Log Message:
-----------
minor changes from the times when I checked Magnus support for high exponents,
all seem to be reasonable.
Modified Paths:
--------------
trunk/magnus/back_end/SessionManager/Makefile
trunk/magnus/back_end/general/src/BlackBox.C
trunk/magnus/front_end/magnus.tcl
Added Paths:
-----------
trunk/magnus/back_end/SessionManager/test/highExp.C
Modified: trunk/magnus/back_end/SessionManager/Makefile
===================================================================
--- trunk/magnus/back_end/SessionManager/Makefile 2008-06-21 15:36:54 UTC (rev 256)
+++ trunk/magnus/back_end/SessionManager/Makefile 2009-06-22 15:17:45 UTC (rev 257)
@@ -42,7 +42,7 @@
# If you need any extra DEFINES, put them here, taking care not to wipe
# out any passed from the command line or a higher level make
-override DEFINE +=
+override DEFINE += -fno-operator-names -D_G_NO_NRV
# DEBUG:
# If you set DEBUG here, this will wipe out the defaults for the Back
@@ -61,7 +61,7 @@
# BACKENDCOMPONENTS is all the components of the Back End needed by
# this component and its TESTS (other than the current component)
-BACKENDCOMPONENTS = libg++ general Elt Matrix Polynomial Equations Group Apps Subgroup KB FSA Map Genetic NilpotentGroup AProducts GAP Todd-Coxeter Enumerators Packages SMApps
+BACKENDCOMPONENTS = libg++ general Elt Matrix Polynomial Equations Map Group Apps Subgroup KB FSA Genetic NilpotentGroup AProducts GAP Todd-Coxeter Enumerators Packages SMApps
# FILES:
# FILES lists all source Files (without .[Cc] suffixes) which are
@@ -78,7 +78,7 @@
# TESTS:
# TESTS lists all source files (without .[Cc] suffixes) in test:
-TESTS = debug-FEData magnus
+TESTS = debug-FEData magnus highExp
######################################################################
######################################################################
Added: trunk/magnus/back_end/SessionManager/test/highExp.C
===================================================================
--- trunk/magnus/back_end/SessionManager/test/highExp.C (rev 0)
+++ trunk/magnus/back_end/SessionManager/test/highExp.C 2009-06-22 15:17:45 UTC (rev 257)
@@ -0,0 +1,79 @@
+
+#include "FPGroup.h"
+#include "global.h"
+
+
+//#include <values.h>
+
+//#include "GHNConfig.h"
+//#include "RandomNumbers.h"
+//#include "Roulette.h"
+//#include "GASubgroup.h"
+//#include "Timer.h"
+
+
+//#include "FGGroupRep.h"
+
+//#include "List.h"
+
+
+
+#include <iostream>
+//#include <Integer.h>
+//#include "Map.h"
+//#include "AbelianGroup.h"
+#include "Polynomial.h"
+#include "Int2.h"
+#include "Word.h"
+#include "DArray.h"
+
+int main(int argc, char* argv[])
+{
+ Polynomial<Int2> p1;
+ Polynomial<Integer> p2;
+ DArrayParser<Word> parser(cin);
+
+
+ Generator x(1);
+ Generator y(2);
+ Word w(x);
+ w *= y;
+ //w < "x = y^123";
+ SetOf<Word> s(w);
+ FPGroup G(2, s);
+ //Chars errMsg = cin >> G;
+
+ //cout << "hello world" << endl;
+//int x =5;
+
+ //FPGroup G();
+ //G() ="<x,y;X y^2 x=y^321>";
+ //WordEnumeratorProblem(G);
+
+
+
+
+//VectorOf<Chars> w= 5;
+//SetOf<Word> x = 4;
+
+
+
+/*
+ if ( errMsg.length() > 0 ) {
+ cout << errMsg << endl << endl;
+ return 1;
+ }
+
+ cout << "\n\nYou entered:\n";
+ cout << G << endl << endl;
+*/
+
+//enumerate words of G here!!
+}
+
+
+
+
+
+
+
Modified: trunk/magnus/back_end/general/src/BlackBox.C
===================================================================
--- trunk/magnus/back_end/general/src/BlackBox.C 2008-06-21 15:36:54 UTC (rev 256)
+++ trunk/magnus/back_end/general/src/BlackBox.C 2009-06-22 15:17:45 UTC (rev 257)
@@ -140,10 +140,10 @@
// Get unique names for i/o pipes. Put in P_tmpdir defined in stdio.h.
- char* tmpStr = tempnam(MagnusTmp::magnusTmp(),"");
+ char* tmpStr = tempnam(MagnusTmp::magnusTmp(),NULL);
strcpy(file_in,tmpStr);
free(tmpStr);
- tmpStr = tempnam(MagnusTmp::magnusTmp(),"");
+ tmpStr = tempnam(MagnusTmp::magnusTmp(),NULL);
strcpy(file_out,tmpStr);
free(tmpStr);
@@ -186,6 +186,7 @@
system_command << " &";
err = system( system_command.str().c_str() );
+ cerr << system_command.str().c_str() << endl;
if ( err && (errno != ECHILD) ) {
#ifdef DEBUG
ostringstream error_msg;
Modified: trunk/magnus/front_end/magnus.tcl
===================================================================
--- trunk/magnus/front_end/magnus.tcl 2008-06-21 15:36:54 UTC (rev 256)
+++ trunk/magnus/front_end/magnus.tcl 2009-06-22 15:17:45 UTC (rev 257)
@@ -65,9 +65,9 @@
proc makeScripts {suffix_name} {
global home_dir
-set script_dir $home_dir/.magnus
+set script_dir "$home_dir/.magnus"
if { ![file exists $script_dir] } {
- exec mkdir $script_dir
+ file mkdir $script_dir
}
set name "$script_dir/$suffix_name"
@@ -87,7 +87,7 @@
set suffixlist [lsort -integer $suffixlist ]
set i 0
while {$i<[llength $suffixlist]-9} {
- exec rm -f $script_dir/$suffix_name[lindex $suffixlist $i]
+ file delete -force $script_dir/$suffix_name[lindex $suffixlist $i]
incr i
}
set lastsuffix [lindex $suffixlist [expr [llength $suffixlist]-1] ]
@@ -112,7 +112,7 @@
if {[info exists sessionManager]} {
catch { exec kill -9 [pid $sessionManager] }
}
- exec rm -rf $tmp_dir
+ file delete -force $tmp_dir
exit 1
}
@@ -127,7 +127,7 @@
if {[info exists sessionManager]} {
catch { exec kill -9 [pid $sessionManager] }
}
- exec rm -rf $tmp_dir
+ file delete -force $tmp_dir
exit 0
}
@@ -256,9 +256,9 @@
by [exec whoami] at [exec hostname]." }
# Make transcript file when not debugging
-set script_dir $env(HOME)/.magnus
+set script_dir $home_dir/.magnus
if { ![file exists $script_dir] } {
- exec mkdir $script_dir
+ file mkdir $script_dir
}
if {[makeTranscript] == 1} {
@@ -310,17 +310,20 @@
set tmp_dir $saveTmp.$i
set i $i+1
}
-exec mkdir $tmp_dir
+file mkdir $tmp_dir
unset saveTmp
unset i
# Open pipes to the session manager
if {[file executable $executable]} {
+ regsub -all " " "$executable" "\\ " executable1
+ regsub -all " " "$magnus_home" "\\ " magnus_home1
+ regsub -all " " "$tmp_dir" "\\ " tmp_dir1
if {[makeTranscript] == 1} {
- set sessionManager [open "| $executable $magnus_home $tmp_dir 2>./session.log" r+]
+ set sessionManager [open "| $executable1 $magnus_home1 $tmp_dir1 2>./session.log" r+]
} else {
- set sessionManager [open "| $executable $magnus_home $tmp_dir 2>/dev/tty" r+]
+ set sessionManager [open "| $executable1 $magnus_home1 $tmp_dir1 2>/dev/tty" r+]
}
#@db porting to tk4.0
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <ybr...@us...> - 2008-06-21 16:19:06
|
Revision: 256
http://magnus.svn.sourceforge.net/magnus/?rev=256&view=rev
Author: ybryukhov
Date: 2008-06-21 08:36:54 -0700 (Sat, 21 Jun 2008)
Log Message:
-----------
all of these are almost trivial changes
the remaining differences are minimal and mostly not math-related
Modified Paths:
--------------
branches/daly/version4/back_end/global/GenericObject.h
branches/daly/version4/back_end/global/PureRep.h
branches/daly/version4/back_end/global/RefCounter.h
branches/daly/version4/doc/COPYRIGHT
branches/daly/version5/back_end/Group/include/AbelianSGPresentation.h
branches/daly/version5/back_end/SMApps/src/WordProblem.C
branches/daly/version5/back_end/SMApps/src/fastProblems.C
branches/daly/version5/back_end/SMApps/src/menuDefns.C
branches/daly/version5/back_end/SessionManager/include/FEData.h
branches/daly/version5/back_end/SessionManager/include/OutMessages.h
branches/daly/version5/back_end/SessionManager/include/SMEnumerator.h
branches/daly/version5/back_end/SessionManager/include/SMList.h
branches/daly/version5/back_end/SessionManager/include/ViewContents.h
branches/daly/version5/back_end/SessionManager/src/DatabaseManager.C
branches/daly/version5/back_end/SessionManager/src/FEData.C
branches/daly/version5/back_end/SessionManager/src/GIC.C
branches/daly/version5/back_end/SessionManager/src/MIC.C
branches/daly/version5/back_end/SessionManager/src/Menu.C
branches/daly/version5/back_end/SessionManager/src/ObjectFactory.C
branches/daly/version5/back_end/SessionManager/src/Property.C
branches/daly/version5/back_end/SessionManager/src/RandomDefinitionsGenerator.C
branches/daly/version5/back_end/SessionManager/src/SMEnumerator.C
branches/daly/version5/back_end/SessionManager/src/SessionManager.C
branches/daly/version5/back_end/SessionManager/src/ViewContents.C
branches/daly/version5/back_end/Subgroup/include/DoubleCosetGraph.h
branches/daly/version5/back_end/Subgroup/include/GraphConjugacyProblem.h
branches/daly/version5/back_end/Subgroup/include/SubgroupGraph.h
branches/daly/version5/back_end/Subgroup/src/SGofFreeGroup.C
branches/daly/version5/back_end/Todd-Coxeter/src/HavasTC.C
branches/daly/version5/back_end/general/include/BlackBox.h
branches/daly/version5/back_end/general/include/Cell.h
branches/daly/version5/back_end/general/include/Chars.h
branches/daly/version5/back_end/general/include/DArray.h
branches/daly/version5/back_end/general/include/DList.h
branches/daly/version5/back_end/general/include/File.h
branches/daly/version5/back_end/general/include/List.h
branches/daly/version5/back_end/general/include/QuickAssociations.h
branches/daly/version5/back_end/general/include/Set.h
branches/daly/version5/back_end/general/include/Stack.h
branches/daly/version5/back_end/general/include/Vector.h
branches/daly/version5/back_end/general/src/BlackBox.C
branches/daly/version5/back_end/general/src/Chars.C
branches/daly/version5/back_end/global/config.h
branches/daly/version5/back_end/global/global.h
branches/daly/version5/back_end/libg++/include/AllocRing.h
branches/daly/version5/bin/backup
branches/daly/version5/bin/comment_ratios
branches/daly/version5/bin/comments
branches/daly/version5/bin/concat
branches/daly/version5/bin/extract
branches/daly/version5/bin/rci
branches/daly/version5/bin/rdo
branches/daly/version5/bin/renamer
branches/daly/version5/bin/report
branches/daly/version5/doc/COPYRIGHT
branches/daly/version5/front_end/dialog.tcl
branches/daly/version5/front_end/files.tcl
branches/daly/version5/front_end/help/Acknowledgments.help
branches/daly/version5/front_end/help/Contributors.help
branches/daly/version5/front_end/help/General_abelian_groups.help
branches/daly/version5/front_end/help/abelian_algorithms.help
branches/daly/version5/front_end/help/chief_programmer.help
branches/daly/version5/front_end/magnus
branches/daly/version5/front_end/magnus.in
branches/daly/version5/inventory/Abelian/subgroup/ComputeOrderTorsionSubgroup
branches/daly/version5/inventory/inv2html.tcl
Modified: branches/daly/version4/back_end/global/GenericObject.h
===================================================================
--- branches/daly/version4/back_end/global/GenericObject.h 2007-05-24 18:12:08 UTC (rev 255)
+++ branches/daly/version4/back_end/global/GenericObject.h 2008-06-21 15:36:54 UTC (rev 256)
@@ -1,3 +1,13 @@
+/*
+ * uses: global/PureRep.h
+ * used: Group/include/GroupRep.h
+ * why: the useful root of the inheritance tree
+ */
+
+/*
+ * $Id: GenericObject.h,v 1.1 2003/10/22 15:09:41 daly Exp $
+ */
+
// Copyright (C) 1995 The New York Group Theory Cooperative
// See magnus/doc/COPYRIGHT for the full notice.
Modified: branches/daly/version4/back_end/global/PureRep.h
===================================================================
--- branches/daly/version4/back_end/global/PureRep.h 2007-05-24 18:12:08 UTC (rev 255)
+++ branches/daly/version4/back_end/global/PureRep.h 2008-06-21 15:36:54 UTC (rev 256)
@@ -1,3 +1,13 @@
+/*
+ * uses: global/RefCounter.h
+ * used: global/GenericObject.h
+ * why: covers RefCounter
+ */
+
+/*
+ * $Id: PureRep.h,v 1.1 2003/10/22 15:09:41 daly Exp $
+ */
+
// Copyright (C) 1994 The New York Group Theory Cooperative
// See magnus/doc/COPYRIGHT for the full notice.
Modified: branches/daly/version4/back_end/global/RefCounter.h
===================================================================
--- branches/daly/version4/back_end/global/RefCounter.h 2007-05-24 18:12:08 UTC (rev 255)
+++ branches/daly/version4/back_end/global/RefCounter.h 2008-06-21 15:36:54 UTC (rev 256)
@@ -1,3 +1,13 @@
+/* the bottom of the world representation
+ * uses: nothing
+ * used: global/PureRep.h
+ * why: maintains a reference counter so objects can be freed
+ */
+
+/*
+ * $Id: RefCounter.h,v 1.1 2003/10/22 15:09:41 daly Exp $
+ */
+
// Copyright (C) 1994 The New York Group Theory Cooperative
// See magnus/doc/COPYRIGHT for the full notice.
Modified: branches/daly/version4/doc/COPYRIGHT
===================================================================
--- branches/daly/version4/doc/COPYRIGHT 2007-05-24 18:12:08 UTC (rev 255)
+++ branches/daly/version4/doc/COPYRIGHT 2008-06-21 15:36:54 UTC (rev 256)
@@ -1,4 +1,4 @@
- Copyright (C) 1994-2002
+ Copyright (C) 1994-2003
The New York Group Theory Cooperative
This program is free software; you can
Modified: branches/daly/version5/back_end/Group/include/AbelianSGPresentation.h
===================================================================
--- branches/daly/version5/back_end/Group/include/AbelianSGPresentation.h 2007-05-24 18:12:08 UTC (rev 255)
+++ branches/daly/version5/back_end/Group/include/AbelianSGPresentation.h 2008-06-21 15:36:54 UTC (rev 256)
@@ -119,6 +119,18 @@
void makeFileOfPDGens( );
// Creates the file containing the expression of the generators
// of primary decomposition in terms of the old ones.
+
+ bool powerOfNewGenInTorsionPart (const Integer& inv,const Integer& b,
+ const Integer& a,Integer& x)const;
+ //gives the power of new generator when expressing old generators
+ //in generators of presentation, when solve this problem in torsion
+ //part of new generators presentation. It return true if there is
+ //exist this power, and put it in x.
+ bool powerOfNewGenInFreePart (const Integer& b,const Integer& a,Integer& x)const;
+ //gives the power of new generator when expressing old generators
+ //in generators of presentation, when solve this problem in torsion
+ //free part of new generators presentation. It return true if there is
+ //exist this power, and put it in x.
};
//--------------- AbelianSGPresentation -------------------------//
Modified: branches/daly/version5/back_end/SMApps/src/WordProblem.C
===================================================================
--- branches/daly/version5/back_end/SMApps/src/WordProblem.C 2007-05-24 18:12:08 UTC (rev 255)
+++ branches/daly/version5/back_end/SMApps/src/WordProblem.C 2008-06-21 15:36:54 UTC (rev 256)
@@ -179,10 +179,7 @@
if (nilpotentWPInQuotients->isTrivial()==no){
int retClass;
theAnswer = nilpotentWPInQuotients->isTrivial(retClass);
- //@njz
- // ostrstream msgTmp;
std::ostrstream msgTmp;
- //
msgTmp << " because it's not trivial in lower central quotient of class "
<< retClass << ends;
explanation = msgTmp.str();
@@ -211,10 +208,7 @@
Chars explanation = theChecker.getExplanation();
if ( theWord.getParent().gic.isAbelian() == yes){
- //@njz
- // ostrstream msgTmp;
std::ostrstream msgTmp;
- //
msgTmp << "because it's canonical decomposition is ";
const AbelianGroup& A =
@@ -369,11 +363,11 @@
void WordProblem::viewStructure(ostream& ostr) const
{
ProblemView pv( ostr, oid(), Text("Word problem"),
- Text("Is") + Name( theWord ) + Text("trivial in")
- + Name( Parent( theWord ) ) + Text("?"),
- helpID( "WordProblem", theWord.getParent() ),
- Text(Name(theWord)) + Text("= 1 ?")
- );
+ Text("Is") + Name( theWord ) + Text("trivial in")
+ + Name( Parent( theWord ) ) + Text("?"),
+ helpID( "WordProblem", theWord.getParent() ),
+ Text(Name(theWord)) + Text("= 1 ?")
+ );
pv.startItemGroup();
@@ -381,13 +375,13 @@
pv.add(Text("For the use of this problem"), ThisARCSlotID(), 50);
pv.add(Text("Compute abelian invariants of") + Name( Parent( theWord ) ),
- abelianInvariants.arcSlotID(),
+ abelianInvariants.arcSlotID(),
15
);
pv.startItemGroup( CheckinType( Parent( theWord ) ) ==
- SMFPGroup::ONE_RELATOR);
+ SMFPGroup::ONE_RELATOR);
pv.add(Text("Compute the Magnus breakdown"), orwp.arcSlotID(), 50);
@@ -395,11 +389,11 @@
pv.startItemGroup( CheckinType( Parent( theWord ) ) != SMFPGroup::ABELIAN &&
CheckinType( Parent( theWord ) ) != SMFPGroup::NILPOTENT &&
- CheckinType( Parent( theWord ) ) != SMFPGroup::FREE_NILPOTENT
- );
+ CheckinType( Parent( theWord ) ) != SMFPGroup::FREE_NILPOTENT
+ );
pv.add(Text("Enumerate normal closure of relators"),
- normalClosure.arcSlotID(), 50);
+ normalClosure.arcSlotID(), 50);
pv.add(Text("Seek a rewriting system for") + Name( Parent( theWord ) ),
kbSupervisor.arcSlotID(),
Modified: branches/daly/version5/back_end/SMApps/src/fastProblems.C
===================================================================
--- branches/daly/version5/back_end/SMApps/src/fastProblems.C 2007-05-24 18:12:08 UTC (rev 255)
+++ branches/daly/version5/back_end/SMApps/src/fastProblems.C 2008-06-21 15:36:54 UTC (rev 256)
@@ -71,9 +71,9 @@
{
//#ifdef ATS
ProblemView pv( ostr, oid(), Text("Temporary"),
- Text("Temporary"),
- "none",
- "Temporary"
+ Text("Temporary"),
+ "none",
+ "Temporary"
);
pv.startItemGroup();
@@ -248,10 +248,10 @@
SMObject* smo =
new SMWord( theGroup,
- theGroup.getFreePreimage().getN_thElement(theNumber),
- Text("The") + Text(s) + Text("- th element of")
- + Name( theGroup )
- );
+ theGroup.getFreePreimage().getN_thElement(theNumber),
+ Text("The") + Text(s) + Text("- th element of")
+ + Name( theGroup )
+ );
ListOf<OID> dependencies( theGroup );
CheckinMessage( *smo, "", dependencies ).send();
@@ -576,11 +576,11 @@
{
SMObject* smo =
new SMWord( word.getParent(),
- subgroup.getSubgroup()
- .rightSchreierRepresentative( word.getWord() ),
- Text("The right Schreier representative of") + Name( word )
- + Text("mod") + Name( subgroup )
- );
+ subgroup.getSubgroup()
+ .rightSchreierRepresentative( word.getWord() ),
+ Text("The right Schreier representative of") + Name( word )
+ + Text("mod") + Name( subgroup )
+ );
ListOf<OID> dependencies( word.getParent() );
CheckinMessage( *smo, "", dependencies ).send();
@@ -617,10 +617,10 @@
SGofFreeGroup S2 = subgroup2.getSubgroup();
SMObject* smo =
new SMSubgroup( subgroup1.getParent(),
- subgroup1.getSubgroup().join( S2 ),
- Text("The join of") + Name( subgroup1 ) + Text("and")
- + Name( subgroup2 )
- );
+ subgroup1.getSubgroup().join( S2 ),
+ Text("The join of") + Name( subgroup1 ) + Text("and")
+ + Name( subgroup2 )
+ );
ListOf<OID> dependencies( subgroup1.getParent() );
CheckinMessage( *smo, "", dependencies ).send();
@@ -631,11 +631,11 @@
SGofFreeGroup S2 = subgroup2.getSubgroup();
SMObject* smo =
new SMSubgroup( subgroup1.getParent(),
- subgroup1.getSubgroup()
- .intersection( S2 ),
- Text("The intersection of") + Name( subgroup1 ) + Text("and")
- + Name( subgroup2 )
- );
+ subgroup1.getSubgroup()
+ .intersection( S2 ),
+ Text("The intersection of") + Name( subgroup1 ) + Text("and")
+ + Name( subgroup2 )
+ );
ListOf<OID> dependencies( subgroup1.getParent() );
CheckinMessage( *smo, "", dependencies ).send();
@@ -691,24 +691,26 @@
if ( S.isMalnormal( conjugator ) )
msg << Name( subgroup ) << " is malnormal in "
- << Name( Parent( subgroup ) ) << ".";
+ << Name( Parent( subgroup ) ) << ".";
else {
FPGroup G = subgroup.getParent().getFPGroup();
SGofFreeGroup S1( FreeGroup(G.numberOfGenerators()),
- conjugateBy(S.generators(), conjugator) );
+ conjugateBy(S.generators(), conjugator) );
SGofFreeGroup S2 = S.intersection( S1 );
msg << Name( subgroup ) << " is not malnormal in "
- << Name( Parent( subgroup ) ) << " because an intersection of "
- << Name( subgroup ) << " and "
- << Name( subgroup ) << " conjugated by ";
+ << Name( Parent( subgroup ) ) << " because an intersection of "
+ << Name( subgroup ) << " and "
+ << Name( subgroup ) << " conjugated by ";
G.printWord( msg, conjugator );
msg << " is not trivial. The intersection is gp( ";
int numOfGens = S2.generators().length();
for( int i = min( 4, numOfGens-1 ); i >= 0; --i ) {
G.printWord( msg, S2.generators()[i] );
- if( i != 0) msg << ", ";
+ if( i != 0)
+ msg << ", ";
}
- if( numOfGens > 5 ) msg << ", ...";
+ if( numOfGens > 5 )
+ msg << ", ...";
msg << " ).";
}
@@ -721,7 +723,8 @@
msg << "A surface form of " << Name( equation ) << " : ";
QEqnSolutionsInFreeGroup solver( equation.getFreeGroup(), equation.getWord(),
- equation.numberOfVariables() );
+ equation.numberOfVariables()
+ );
Word surf = solver.surfaceForm();
equation.getFreeGroup().printWord( msg, surf );
msg << ".";
@@ -742,8 +745,11 @@
SGofFreeGroup sg(vect.getParent().getFreePreimage(), vect.getWords());
VectorOf<Word> answer = sg.findWhiteheadBasis();
SMObject* smo =
- new SMVectorOfWords( vect.getParent(), answer,
- Text("A Whitehead reduction of tuple") + Name(vect));
+ new SMVectorOfWords( vect.getParent(),
+ answer,
+ Text("A Whitehead reduction of tuple")
+ + Name( vect )
+ );
ListOf<OID> dependencies( vect.getParent() );
CheckinMessage( *smo, "", dependencies ).send();
@@ -774,8 +780,11 @@
// Make link to the file with computed nielsen basis.
LogMessage msg( subgroup );
msg << Link( Chars("Click here to see the generators of a Nielsen basis of ")+
- Text( Name(subgroup) ), "NielsenBasis",
- file.getFileName() ) << ".";
+ Text( Name(subgroup) ),
+ "NielsenBasis",
+ file.getFileName()
+ )
+ << ".";
msg.send();
}
@@ -783,8 +792,11 @@
// Make link to the file with details of computation of nielsen basis.
LogMessage msg( subgroup );
msg << Link( Chars("Click here to see computation details of a Nielsen basis of ")
- + Text( Name(subgroup) ), "NielsenBasisDetails",
- nielsenBasisProblem.getFileName() ) << ".";
+ + Text( Name(subgroup) ),
+ "NielsenBasisDetails",
+ nielsenBasisProblem.getFileName()
+ )
+ << ".";
msg.send();
}
}
@@ -795,8 +807,10 @@
LogMessage msg( subgroup );
msg << Name( subgroup ) << " has ";
int index = subgroup.getSubgroup().findIndex();
- if ( index == 0 ) msg << "infinite index";
- else msg << "index " << index;
+ if ( index == 0 )
+ msg << "infinite index";
+ else
+ msg << "index " << index;
msg << " in " << Name( Parent( subgroup ) ) << ".";
msg.send();
@@ -815,10 +829,10 @@
{
SMObject* smo =
new SMSubgroup( subgroup.getParent(),
- SGofFreeGroup(subgroup.getParent().getFreePreimage(),
- subgroup.getSubgroup().normalizer() ),
- Text("The normaliser of") + Name( subgroup ) + Text("in")
- + Name( Parent( subgroup ) ) );
+ SGofFreeGroup(subgroup.getParent().getFreePreimage(),
+ subgroup.getSubgroup().normalizer() ),
+ Text("The normaliser of") + Name( subgroup ) + Text("in")
+ + Name( Parent( subgroup ) ) );
ListOf<OID> dependencies( subgroup.getParent() );
CheckinMessage( *smo, "", dependencies ).send();
}
@@ -828,10 +842,10 @@
{
SMObject* smo =
new SMSubgroup( subgroup.getParent(),
- subgroup.getSubgroup().MHallCompletion(),
- Text("A finite index subgroup of")
- + Name( Parent( subgroup ) ) + "with"
- + Name( subgroup ) + Text("as a free factor") );
+ subgroup.getSubgroup().MHallCompletion(),
+ Text("A finite index subgroup of")
+ + Name( Parent( subgroup ) ) + "with"
+ + Name( subgroup ) + Text("as a free factor") );
ListOf<OID> dependencies( subgroup.getParent() );
CheckinMessage( *smo, "", dependencies ).send();
}
@@ -854,8 +868,8 @@
for(I.reset(); !I.done(); I.next()) v1.append(I.value());
SMObject* smo =
new SMSubgroup( G, SGofFreeGroup(G.getFreePreimage(), v1),
- Text(level) + "-th Normal Approximation of"
- + Name(subgroup) );
+ Text(level) + "-th Normal Approximation of"
+ + Name(subgroup) );
ListOf<OID> dependencies( G );
CheckinMessage( *smo, "", dependencies ).send();
}
@@ -965,9 +979,11 @@
char s[10];
sprintf(s,"%u",trueLen);
SMObject* smo =
- new SMWord( theGroup, w.initialSegment( trueLen ),
- Text("The ") + Text(s) + Text("-th initial segment of ")
- + Name( theWord ) );
+ new SMWord( theWord.getParent(),
+ w.initialSegment( trueLen ),
+ Text("The ") + Text(s) + Text("-th initial segment of ")
+ + Name( theWord )
+ );
ListOf<OID> dependencies( theGroup );
CheckinMessage( *smo, "", dependencies ).send();
@@ -984,12 +1000,17 @@
int trueLen = min( theLength, w.length() );
char s[10];
sprintf(s,"%u",trueLen);
+
SMObject* smo =
- new SMWord( theGroup, w.terminalSegment( trueLen ),
- Text("The ") + Text(s) + Text("-th terminal segment of ")
- + Name( theWord ) );
- ListOf<OID> dependencies( theGroup );
+ new SMWord( theWord.getParent(),
+ w.terminalSegment( trueLen ),
+ Text("The ") + Text(s) + Text("-th terminal segment of ")
+ + Name( theWord )
+ );
+
+ ListOf<OID> dependencies( theWord.getParent() );
CheckinMessage( *smo, "", dependencies ).send();
+
}
@@ -1006,12 +1027,16 @@
char lenText[10];
sprintf( lenText,"%u", stop-start+1 );
SMObject* smo =
- new SMWord( theGroup, w.subword(start-1, stop),
- Text("User defined a subword of length") + Text(lenText)
- + Text("(starting from") + startText + Text(") of")
- + Name( theWord ) );
- ListOf<OID> dependencies( theGroup );
+ new SMWord( theWord.getParent(),
+ w.subword(start-1, stop),
+ Text("User defined a subword of length") + lenText
+ + Text("(starting from") + startText + Text(") of")
+ + Name( theWord )
+ );
+
+ ListOf<OID> dependencies( theWord.getParent() );
CheckinMessage( *smo, "", dependencies ).send();
+
}
@@ -1020,15 +1045,18 @@
SMFPGroup& theGroup = theWord.getParent();
const FreeGroup& F = theGroup.getFreePreimage();
int number = F.numberOfElement( theWord.getWord() ) + theNumber;
+
char s[20];
sprintf(s,"%u", theNumber );
+
SMObject* smo =
new SMWord( theGroup, F.getN_thElement(number),
- Text("The") + Text(s) + Text("- th element of")
- + Name( theGroup ) + Text("(after the word")
- + Name(theWord) + Text("in lex order)") );
+ Text("The") + Text(s) + Text("- th element of")
+ + Name( theGroup ) + Text("(after the word")
+ + Name(theWord) + Text("in lex order)") );
ListOf<OID> dependencies( theGroup );
CheckinMessage( *smo, "", dependencies ).send();
+
}
@@ -1037,9 +1065,9 @@
{
SMObject* smo =
new SMWord( word1.getParent(),
- (word1.getWord() * word2.getWord()).freelyReduce(),
- Text("The product of") + Name( word1 )
- + Text("and") + Name( word2 ) );
+ (word1.getWord() * word2.getWord()).freelyReduce(),
+ Text("The product of") + Name( word1 )
+ + Text("and") + Name( word2 ) );
ListOf<OID> dependencies( word1.getParent() );
CheckinMessage( *smo, "", dependencies ).send();
}
@@ -1048,10 +1076,10 @@
{
SMObject* smo =
new SMWord( theWord1.getParent(),
- (theWord2.getWord().inverse() * theWord1.getWord()
- * theWord2.getWord()).freelyReduce(),
- Text("The conjugate of") + Name( theWord1 )
- + Text("by") + Name( theWord2 ) );
+ (theWord2.getWord().inverse() * theWord1.getWord()
+ * theWord2.getWord()).freelyReduce(),
+ Text("The conjugate of") + Name( theWord1 )
+ + Text("by") + Name( theWord2 ) );
ListOf<OID> dependencies( theWord1.getParent() );
CheckinMessage( *smo, "", dependencies ).send();
@@ -1061,10 +1089,10 @@
{
SMObject* smo =
new SMWord( theWord1.getParent(),
- (theWord1.getWord().inverse() * theWord2.getWord().inverse()
- * theWord1.getWord() * theWord2.getWord()).freelyReduce(),
- Text("The commutator of") + Name( theWord1 )
- + Text("and") + Name( theWord2 ) );
+ (theWord1.getWord().inverse() * theWord2.getWord().inverse()
+ * theWord1.getWord() * theWord2.getWord()).freelyReduce(),
+ Text("The commutator of") + Name( theWord1 )
+ + Text("and") + Name( theWord2 ) );
ListOf<OID> dependencies( theWord1.getParent() );
CheckinMessage( *smo, "", dependencies ).send();
@@ -1084,7 +1112,7 @@
SMObject* smo =
new SMMap( map.getDomain(), map.getRange(), result,
- Text("The map") + Name( map ) + Text("to the power") + power );
+ Text("The map") + Name( map ) + Text("to the power") + power );
ListOf<OID> dependencies( map.getDomain() );
dependencies.append( map.getRange() );
CheckinMessage( *smo, "", dependencies ).send();
@@ -1096,18 +1124,22 @@
if( map1.getDomain().oid() == map2.getRange().oid() ) {
SMHomomorphism* smo = new SMHomomorphism
( map1.getDomain(),
- composition( map2.getMap(), map1.getMap() ),
- Text("The composition") + Name( map2 ) + Text(Name( map1 )) );
+ composition( map2.getMap(), map1.getMap() ),
+ Text("The composition") + Name( map2 ) + Text(Name( map1 )) );
ListOf<OID> dependencies( map1.getDomain() );
CheckinMessage( *smo, "", dependencies ).send();
}
else {
+
SMHomomorphism2* smo = new SMHomomorphism2
- ( map1.getDomain(), map2.getRange(),
- composition( map2.getMap(), map1.getMap() ),
- Text("The composition") + Name( map2 ) + Text(Name( map1 )) );
+ (
+ map1.getDomain(),
+ map2.getRange(),
+ composition( map2.getMap(), map1.getMap() ),
+ Text("The composition") + Name( map2 ) + Text(Name( map1 ))
+ );
ListOf<OID> dependencies( map1.getDomain() );
dependencies.append( map2.getRange() );
@@ -1134,7 +1166,8 @@
msg << Name( map1 ) << " is ";
- if ( !bEqual ) msg << "not ";
+ if ( !bEqual )
+ msg << "not ";
msg << "equal to " << Name( map2 ) << ".";
msg.send();
@@ -1146,11 +1179,11 @@
Word tmpWord = map.getMap().imageOf( word.getWord() );
if ( map.getRange().gic.isAbelian()==yes)
tmpWord = AbelianWord( map.getRange().getFPGroup().numberOfGenerators(),
- tmpWord ).getWord();
+ tmpWord ).getWord();
SMObject* smo =
new SMWord( map.getRange(),tmpWord,
- Text("The image of") + Name( word )
- + Text("under") + Name( map ) );
+ Text("The image of") + Name( word ) + "under" + Name( map )
+ );
ListOf<OID> dependencies( map.getRange() );
CheckinMessage( *smo, "", dependencies ).send();
@@ -1174,7 +1207,7 @@
SMObject* smo = new SMSubgroup
( map.getRange(),
SGofFreeGroup( map.getRange().getFreePreimage(), gens ),
- Text("The image of") + Name( subgroup ) + Text("under") + Name( map )
+ Text("The image of") + Name( subgroup ) + "under" + Name( map )
);
ListOf<OID> dependencies( map.getRange() );
@@ -1199,8 +1232,8 @@
SMFPGroup* smo =
new SMFPGroup( FPGroup( temp.namesOfGenerators(), temp.getRelators() ),
- Text("Extension of") + Name(theGroup) + Text("by") + Name(theMap)
- );
+ Text("Extension of") + Name(theGroup) + "by" + Name(theMap)
+ );
smo->gic.putIsFreeByCyclic( theGroup.getFreePreimage(), theMap.getMap() );
@@ -1337,8 +1370,8 @@
if ( lambda < 6 && lambda != 0 ) {
msg << "The presentation of " << Name( theGroup )
- << " is not metric small cancellation; it is only C'(1/"
- << lambda << ')';
+ << " is not metric small cancellation; it is only C'(1/"
+ << lambda << ')';
msg.send();
} else {
File file;
@@ -1441,9 +1474,9 @@
SMObject* smo =
new SMSubgroup( subgroup1.getParent(), SG,
- Text("The join of") + Name( subgroup1 ) + "and"
- + Name( subgroup2 )
- );
+ Text("The join of") + Name( subgroup1 ) + "and"
+ + Name( subgroup2 )
+ );
ListOf<OID> dependencies( subgroup1.getParent() );
CheckinMessage( *smo, "", dependencies ).send();
@@ -1461,8 +1494,8 @@
SMObject* smo =
new SMSubgroup( theSubgroup.getParent(), SG,
- Text(Name( theSubgroup )) + Text("conjugated by") + Name( theWord )
- );
+ Text(Name( theSubgroup )) + Text("conjugated by") + Name( theWord )
+ );
ListOf<OID> dependencies( theSubgroup.getParent() );
CheckinMessage( *smo, "", dependencies ).send();
@@ -1512,26 +1545,28 @@
SMObject* smo =
new SMWord( word1.getParent(),
- A.oldInAbelianForm( word1.getWord() * word2.getWord() )
- .getWord(),
- Text("The product of") + Name( word1 )
- + Text("and") + Name( word2 ));
+ A.oldInAbelianForm( word1.getWord() * word2.getWord() )
+ .getWord(),
+ Text("The product of") + Name( word1 )
+ + Text("and") + Name( word2 ));
ListOf<OID> dependencies( word1.getParent() );
CheckinMessage( *smo, "", dependencies ).send();
+
}
void AbelianSGJoin::takeControl( )
{
AbelianGroup A(subgroup1.getParent().getFPGroup());
SGofFreeGroup S2(subgroup1.getParent().getFreePreimage(),
- A.joinSubgroups(subgroup1.getSubgroup().generators(),
- subgroup2.getSubgroup().generators()));
+ A.joinSubgroups(subgroup1.getSubgroup().generators(),
+ subgroup2.getSubgroup().generators()));
SMObject* smo = new SMSubgroup( subgroup1.getParent(),S2,
- Text("The join of") + Name( subgroup1 )
- + Text("and") + Name( subgroup2 ) );
+ Text("The join of") + Name( subgroup1 )
+ + Text("and") + Name( subgroup2 ) );
ListOf<OID> dependencies( subgroup1.getParent() );
CheckinMessage( *smo, "", dependencies ).send();
}
+//----------------------- MSC Group Computations ----------------------------//
void AbelianIsAutomatic::takeControl()
{
@@ -1969,10 +2004,10 @@
SMHomomorphism2* hom1 = new SMHomomorphism2
( theGroup, *smo,
- Map( theGroup.getFPGroup(), smo->getFPGroup(), v1 ),
- Text("The isomorphism from generators of") + Name(theGroup)
- + Text("to") + Name(*smo)
- );
+ Map( theGroup.getFPGroup(), smo->getFPGroup(), v1 ),
+ Text("The isomorphism from generators of") + Name(theGroup)
+ + Text("to") + Name(*smo)
+ );
dependencies = ListOf<OID>( theGroup );
dependencies.append( *smo );
@@ -1981,10 +2016,10 @@
SMHomomorphism2* hom2 = new SMHomomorphism2
( *smo, theGroup,
- Map( smo->getFPGroup(), theGroup.getFPGroup(), v2 ),
- Text("The isomorphism from generators of") + Name(*smo)
- + Text("to") + Name(theGroup)
- );
+ Map( smo->getFPGroup(), theGroup.getFPGroup(), v2 ),
+ Text("The isomorphism from generators of") + Name(*smo)
+ + Text("to") + Name(theGroup)
+ );
dependencies = ListOf<OID>( *smo );
dependencies.append( theGroup );
@@ -2056,9 +2091,9 @@
SMHomomorphism2* hom = new SMHomomorphism2
( pGroup, *smo, Map( pGroup.getFPGroup(), smo->getFPGroup(), v),
- Text("The homomorphism from generators of") + Name(pGroup)
- + Text("to") + Name(*smo)
- );
+ Text("The homomorphism from generators of") + Name(pGroup)
+ + Text("to") + Name(*smo)
+ );
dependencies = ListOf<OID>( pGroup );
dependencies.append( *smo );
@@ -2119,10 +2154,10 @@
SMFPGroup* smo
= new SMFPGroup( theGroup.getFPGroup(),
- Text("User defined nilpotent quotient of class")
- + Text(strClass) + Text("of") + Name( theGroup ),
- SMFPGroup::NILPOTENT
- );
+ Text("User defined nilpotent quotient of class")
+ + Text(strClass) + Text("of") + Name( theGroup ),
+ SMFPGroup::NILPOTENT
+ );
smo->gic.putIsNilpotent( theClass );
ListOf<OID> dependencies;
@@ -2227,11 +2262,11 @@
smo = new SMFPGroup
( AP,
- Text("User defined amalgamated product <")
- + Name(Parent(subgroup2)) + Text("*") + Name(Parent(subgroup1)) + Text(";")
- + Name(subgroup2) + Text("=") + Name(subgroup1) + Text(">"),
- SMFPGroup::AP_FREE_CYCLIC
- );
+ Text("User defined amalgamated product <")
+ + Name(Parent(subgroup2)) + Text("*") + Name(Parent(subgroup1)) + Text(";")
+ + Name(subgroup2) + Text("=") + Name(subgroup1) + Text(">"),
+ SMFPGroup::AP_FREE_CYCLIC
+ );
smo->gic.putHaveAPOfFree(AP);
}
@@ -2642,9 +2677,9 @@
SMObject* smo =
new SMSubgroup( subgroup1.getParent(), F,
- Text("The join of") + Name( subgroup1 ) + Text("and")
- + Name( subgroup2 )
- );
+ Text("The join of") + Name( subgroup1 ) + Text("and")
+ + Name( subgroup2 )
+ );
ListOf<OID> dependencies( subgroup1.getParent() );
CheckinMessage( *smo, "", dependencies ).send();
@@ -2669,9 +2704,9 @@
SMObject* smo =
new SMSubgroup( group, F,
- Text("The ") + Text(Chars(number)+ordinalPostfix(number))+
- Text(" term of the lower central series of ") + Name( group )
- );
+ Text("The ") + Text(Chars(number)+ordinalPostfix(number))+
+ Text(" term of the lower central series of ") + Name( group )
+ );
ListOf<OID> dependencies( group );
CheckinMessage( *smo, "", dependencies ).send();
@@ -2910,13 +2945,13 @@
SMFPGroup* smo =
new SMFPGroup (G, Text("User defined the Rips construction of")
- + Name( theGroup ), SMFPGroup::FP);
+ + Name( theGroup ), SMFPGroup::FP);
ListOf<OID> dependencies;
CheckinMessage( *smo, "", dependencies, false ).send();
LogMessage msg( *this, *smo );
msg << Link( Chars("Click here to see the relators of ") +
- Text( Name( *smo) ), "RipsConstruction", f.getFileName() );
+ Text( Name( *smo) ), "RipsConstruction", f.getFileName() );
msg.send();
}
Modified: branches/daly/version5/back_end/SMApps/src/menuDefns.C
===================================================================
--- branches/daly/version5/back_end/SMApps/src/menuDefns.C 2007-05-24 18:12:08 UTC (rev 255)
+++ branches/daly/version5/back_end/SMApps/src/menuDefns.C 2008-06-21 15:36:54 UTC (rev 256)
@@ -120,12 +120,12 @@
//M.addDisabled( "Metabelian Group" );
M.add( ReadSMFreeNilpotentGroup(), Text("Free Nilpotent Group"),
- DefineFreeNilpotentGroup() );
+ DefineFreeNilpotentGroup() );
M.add( Ctor0<CheckinHNNofFreeGroup>(), Text("HNN-extension") );
M.add( ReadSMNilpotentGroup(), Text("Nilpotent Group"),
- DefineNilpotentGroup() );
+ DefineNilpotentGroup() );
M.add( ReadSMORGroup(), Text("One Relator Group"), DefineORGroup() );
@@ -134,7 +134,7 @@
//M.addDisabled( "Polycyclic Group" );
M.add( ReadSMSmallCancGroup(), Text("Small Cancellation Group"),
- DefineSmallCancGroup() );
+ DefineSmallCancGroup() );
//M.separator();
@@ -153,14 +153,14 @@
M.startCascade( Text("Group definition templates") );
M.add( ReadSymmetricGroup(), Text("Symmetric group"),
- DefineInt("Enter the number N", 2) );
+ DefineInt("Enter the number N", 2) );
M.closeCascade();
M.separator();
M.add( ReadSMPermutation(), Text("Permutation"), DefinePermutation() );
-
+
M.done();
}
@@ -175,51 +175,62 @@
DefineWord());
M.add(ReadSMSubgroup(), Text("Subgroup of") + Name(1),
- DefineSubgroup());
+ DefineSubgroup());
M.add(ReadSMMap(),
- Text("Map from the generators of") + Name(1) + "to" + Name(1),
- DefineMap() );
+ Text("Map from the generators of") + Name(1) + "to" + Name(1),
+ DefineMap()
+ );
+
M.startItemGroup( CheckinType( 1 ) == SMFPGroup::FP ||
- CheckinType( 1 ) == SMFPGroup::SMALL_CANCELLATION ||
- CheckinType( 1 ) == SMFPGroup::ONE_RELATOR ||
- CheckinType( 1 ) == SMFPGroup::ONE_RELATOR_WITH_TORSION);
+ CheckinType( 1 ) == SMFPGroup::SMALL_CANCELLATION ||
+ CheckinType( 1 ) == SMFPGroup::ONE_RELATOR ||
+ CheckinType( 1 ) == SMFPGroup::ONE_RELATOR_WITH_TORSION
+ );
M.startItemGroup( CheckinType( 1 ) == SMFPGroup::FREE );
M.add(ReadSMEquation2(),
- Text("Equation in") + Name(1),
- DefineEquation2() );
+ Text("Equation in") + Name(1),
+ DefineEquation2()
+ );
M.add(ReadSMEquation(),
- Text("Quadratic equation in") + Name(1),
- DefineEquation() );
+ Text("Quadratic equation in") + Name(1),
+ DefineEquation()
+ );
M.add(ReadSMEqSystem(),
- Text("System of equations in") + Name(1),
- DefineEqSystem() );
+ Text("System of equations in") + Name(1),
+ DefineEqSystem()
+ );
M.add(ReadSMSetOfWords(), Text("Set of words in") + Name(1),
- DefineSetOfWords());
+ DefineSetOfWords());
M.add(ReadSMVectorOfWords(), Text("Tuple of words in") + Name(1),
DefineVectorOfWords());
M.startItemGroup( CheckinType( 1 ) == SMFPGroup::FP ||
- CheckinType( 1 ) == SMFPGroup::ABELIAN );
+ CheckinType( 1 ) == SMFPGroup::ABELIAN );
- M.add(ReadSMEquation2(), Text("Equation in") + Name(1),
- DefineEquation2());
+ M.add(ReadSMEquation2(),
+ Text("Equation in") + Name(1),
+ DefineEquation2()
+ );
- M.add(ReadSMEqSystem(), Text("System of equations in") + Name(1),
- DefineEqSystem());
+ M.add(ReadSMEqSystem(),
+ Text("System of equations in") + Name(1),
+ DefineEqSystem()
+ );
- M.startItemGroup( CheckinType( 1 ) == SMFPGroup::FP );
+ M.startItemGroup( CheckinType( 1 ) == SMFPGroup::FP
+ );
M.add(ReadSMVectorOfWords(), Text("Tuple of words in") + Name(1),
- DefineVectorOfWords());
+ DefineVectorOfWords());
M.done();
}
@@ -230,12 +241,14 @@
M.startItemGroup();
M.add(ReadSMMap2(),
- Text("Map from the generators of") + Name(1) + "to" + Name(2),
- DefineMap2() );
+ Text("Map from the generators of") + Name(1) + "to" + Name(2),
+ DefineMap2()
+ );
M.add(ReadSMMap2(true),
- Text("Map from the generators of") + Name(2) + "to" + Name(1),
- DefineInverseMap2() );
+ Text("Map from the generators of") + Name(2) + "to" + Name(1),
+ DefineInverseMap2()
+ );
M.done();
}
@@ -271,19 +284,19 @@
M.startCascade( Text("Is") + Name(1) + Text("...") );
M.add( Ctor1<IsTrivialProblem, SMFPGroup>(),
- Text("Is") + Name(1) + Text("trivial ?") );
+ Text("Is") + Name(1) + Text("trivial ?")
+ );
M.add( Ctor1<IsFiniteProblem, SMFPGroup>(),
- Text("Is") + Name(1) + Text("finite ?") );
+ Text("Is") + Name(1) + Text("finite ?")
+ );
M.add( Ctor1<IsFreeProblem, SMFPGroup>(),
- Text("Is") + Name(1) + Text("free abelian ?") );
+ Text("Is") + Name(1) + Text("free abelian ?") );
- M.add( Ctor1<AbelianIsAutomatic, SMFPGroup>(),
- Text("Is") + Name(1) + Text("automatic ?") );
+ M.addDisabled( Text("Is") + Name(1) + Text("automatic ?") );
- M.add( Ctor1<IsAbelianHyperbolic, SMFPGroup>(),
- Text("Is") + Name(1) + Text("hyperbolic ?") );
+ M.addDisabled( Text("Is") + Name(1) + Text("hyperbolic ?") );
M.closeCascade();
@@ -296,67 +309,70 @@
Text("Compute the torsion subgroup of") + Name(1) );
M.add( Ctor1<AbelianOrderOfTheTorsionSubgroupProblem, SMFPGroup>(),
- Text("Compute the order of the torsion subgroup of") + Name(1) );
+ Text("Compute the order of the torsion subgroup of") + Name(1) );
M.add( Ctor1<AbelInvariantsProb,SMFPGroup>(),
- Text("Compute the canonical decomposition of") + Name(1) );
+ Text("Compute the canonical decomposition of") + Name(1)
+ );
M.add( Ctor1<AbelianPrimeDecomp,SMFPGroup>(),
- Text("Compute the primary decomposition of") + Name(1) );
+ Text("Compute the primary decomposition of") + Name(1)
+ );
M.add( Ctor1<AbelianTorsionFreeRankProblem, SMFPGroup>(),
Text("Compute the torsion-free rank of") + Name(1) );
M.add( ReadHomologyItem1(),
Text("Compute an integral homology group of") + Name(1),
- DefineInt("What dimension?", 2) );
+ DefineInt("What dimension?", 2)
+ );
M.add( Ctor1<AGProblem,SMFPGroup>(),
Text("Compute a short-lex system of representatives for")
- + Name(1) );
+ + Name(1) );
M.closeCascade();
-
+
M.startCascade( Text("Find ...") );
M.add( Ctor1<PermutationRepProblem, SMFPGroup>(),
- Text("Find a permutation representation of") + Name(1)
- + Text("when") + Name(1) + Text("is finite"));
+ Text("Find a permutation representation of") + Name(1)
+ + Text("when") + Name(1) + Text("is finite"));
M.add( Ctor1<AbelianIsConfluent, SMFPGroup>(),
- Text("Find a finite rewriting system for") + Name(1));
+ Text("Find a finite rewriting system for") + Name(1));
M.closeCascade();
M.startCascade( Text("Enumerate ...") );
M.add( Ctor1<WordEnumeratorProblem, SMFPGroup>(),
- Text("Enumerate words of ") + Name(1));
+ Text("Enumerate words of ") + Name(1));
M.add( Ctor1<SGEnumeratorProblem, SMFPGroup>(),
- Text("Enumerate subgroups of ") + Name(1));
+ Text("Enumerate subgroups of ") + Name(1));
M.addDisabled( Text("Enumerate endomorphisms of") + Name(1) );
M.add( Ctor1<AutoEnumeratorProblem, SMFPGroup>(),
- Text("Enumerate automorphisms of ") + Name( 1 ));
+ Text("Enumerate automorphisms of ") + Name( 1 ));
M.add( Ctor1<FiniteAutoEnumeratorProblem, SMFPGroup>(),
- Text("Enumerate automorphisms of ") + Name( 1 )
- + Text("of finite order"));
+ Text("Enumerate automorphisms of ") + Name( 1 )
+ + Text("of finite order"));
M.closeCascade();
M.startItemGroup( CheckinType( 1 ) == SMFPGroup::AP_FREE ||
- CheckinType( 1 ) == SMFPGroup::AP_FREE_CYCLIC );
+ CheckinType( 1 ) == SMFPGroup::AP_FREE_CYCLIC );
M.startCascade( Text("Is") + Name(1) + Text("...") );
M.add( Ctor1<APOfFreeIsAbelian, SMFPGroup>(),
- Text("Is") + Name(1) + Text("abelian ?") );
+ Text("Is") + Name(1) + Text("abelian ?") );
M.add( Ctor1<APofFreeIsPerfect, SMFPGroup>(),
- Text("Is") + Name(1) + Text("perfect ?") );
+ Text("Is") + Name(1) + Text("perfect ?") );
M.addDisabled( Text("Is") + Name(1) + Text("nilpotent ?") );
@@ -365,30 +381,30 @@
M.addDisabled( Text("Is") + Name(1) + Text("solvable ?") );
M.add( Ctor1<APOfFreeIsFinite, SMFPGroup>(),
- Text("Is") + Name(1) + Text("finite ?") );
+ Text("Is") + Name(1) + Text("finite ?") );
M.add( Ctor1<AGProblem,SMFPGroup>(),
- Text("Is") + Name(1) + Text("automatic ?") );
+ Text("Is") + Name(1) + Text("automatic ?") );
M.addDisabled( Text("Is") + Name(1) + Text("hyperbolic ?") );
M.add( Ctor1<APofFreeIsFree, SMFPGroup>(),
- Text("Is") + Name(1) + Text("free ?") );
+ Text("Is") + Name(1) + Text("free ?") );
M.add( Ctor1<FPIsMSC,SMFPGroup>(),
- Text("Is") + Name(1) + Text("metric small cancellation ?") );
+ Text("Is") + Name(1) + Text("metric small cancellation ?") );
M.closeCascade();
M.startCascade( Text("Compute ...") );
M.add( Ctor1<APOfFreeOrder,SMFPGroup>(),
- Text("Compute the order of") + Name(1) );
+ Text("Compute the order of") + Name(1) );
M.addDisabled( Text("Compute the center of") + Name(1) );
M.add( Ctor1<AbelInvariantsProb,SMFPGroup>(),
- Text("Compute the canonical decomposition of") + Name(1)
- + Text("abelianized") );
+ Text("Compute the canonical decomposition of") + Name(1)
+ + Text("abelianized") );
M.addDisabled( Text("Compute a nilpotent quotient of") + Name(1) );
@@ -409,7 +425,7 @@
M.separator();
M.add( Ctor1<KBProblem,SMFPGroup>(),
- Text("Find a finite rewriting system for") + Name(1) );
+ Text("Find a finite rewriting system for") + Name(1) );
M.separator();
@@ -457,23 +473,25 @@
M.addDisabled( Text("Is") + Name(1) + Text("perfect ?") );
M.add( Ctor1<IsAbelianProblem, SMFPGroup>(),
- Text("Is") + Name(1) + Text("abelian ?")
- );
+ Text("Is") + Name(1) + Text("abelian ?")
+ );
M.add( ReadIsNilpotentProblemItem(),
- Text("Is") + Name(1) + Text("nilpotent ?"),
- DefineInt("Enter the nilpotency class: ", 1)
- );
+ Text("Is") + Name(1) + Text("nilpotent ?"),
+ DefineInt("Enter the nilpotency class: ", 1)
+ );
M.addDisabled( Text("Is") + Name(1) + Text("polycyclic ?") );
M.addDisabled( Text("Is") + Name(1) + Text("solvable ?") );
M.add( Ctor1<IsFiniteProblem, SMFPGroup>(),
- Text("Is") + Name(1) + Text("finite ?") );
+ Text("Is") + Name(1) + Text("finite ?")
+ );
M.add( Ctor1<AGProblem,SMFPGroup>(),
- Text("Is") + Name(1) + Text("automatic ?") );
+ Text("Is") + Name(1) + Text("automatic ?")
+ );
M.addDisabled( Text("Is") + Name(1) + Text("hyperbolic ?") );
@@ -489,25 +507,29 @@
M.startCascade( Text("Compute ...") );
M.add( Ctor1<OrderProblem,SMFPGroup>(),
- Text("Compute the order of") + Name(1) );
+ Text("Compute the order of") + Name(1)
+ );
M.addDisabled( Text("Compute the center of") + Name(1) );
M.add( Ctor1<AbelInvariantsProb,SMFPGroup>(),
- Text("Compute the canonical decomposition of") + Name(1)
- + Text("abelianized") );
+ Text("Compute the canonical decomposition of") + Name(1)
+ + Text("abelianized")
+ );
M.addDisabled( Text("Compute a nilpotent quotient of") + Name(1) );
M.addDisabled( Text("Compute lower central quotients of") + Name(1) );
M.add( Ctor1<SchreierTransversal,SMFPGroup>(),
- Text("Compute Schreier representatives for") + Name(1) );
-
+ Text("Compute Schreier representatives for") + Name(1)
+ );
M.add( ReadHomologyItem(),
Text("Compute an integral homology group of") + Name(1),
- DefineInt("What dimension?", 2) );
+ DefineInt("What dimension?", 2)
+ );
+
M.closeCascade();
@@ -524,7 +546,7 @@
M.add( Ctor1<PreAbelianRepProblem, SMFPGroup>(),
Text("Find a pre-Abelian presentation for") + Name(1)
- );
+ );
M.separator();
@@ -580,7 +602,8 @@
M.startCascade( Text("Is") + Name(1) + Text("...") );
M.add( Ctor1<FreeIsAutomatic, SMFPGroup>(),
- Text("Is") + Name(1) + Text("automatic ?") );
+ Text("Is") + Name(1) + Text("automatic ?")
+ );
M.add( Ctor1<FreeIsHyperbolic, SMFPGroup>(),
Text("Is") + Name(1) + Text("hyperbolic ?") );
@@ -590,7 +613,8 @@
M.startCascade( Text("Compute ...") );
M.addDisabled( Text("Compute the canonical decomposition of") + Name(1)
- + Text("abelianized") );
+ + Text("abelianized")
+ );
M.addDisabled( Text("Compute a nilpotent quotient of") + Name(1) );
@@ -608,17 +632,19 @@
M.add( ReadFreeGetN_thElementItem(),
Text("Find the n-th element of") + Name(1),
- DefineInt("Enter the number n: ", 0) );
+ DefineInt("Enter the number n: ", 0)
+ );
M.closeCascade();
M.startCascade( Text("Enumerate ...") );
M.add( Ctor1<WordEnumeratorProblem, SMFPGroup>(),
- Text("Enumerate words of ") + Name( 1 ) );
+ Text("Enumerate words of ") + Name( 1 )
+ );
M.add( Ctor1<SGEnumeratorProblem, SMFPGroup>(),
- Text("Enumerate subgroups of ") + Name( 1 )
+ Text("Enumerate subgroups of ") + Name( 1 )
);
M.addDisabled( Text("Enumerate endomorphisms of") + Name(1) );
@@ -667,18 +693,21 @@
M.add( ReadLCStermProblem(),
Text("Compute a term of the lower central series of") + Name(1),
- DefineInt("Enter the number of the term ", 1) );
+ DefineInt("Enter the number of the term ", 1)
+ );
M.addDisabled( Text("Compute lower central quotients of") + Name(1) );
M.add( Ctor1<NGHirschNumberProblem, SMFPGroup>(),
- Text("Compute the Hirsch number of") + Name(1) );
+ Text("Compute the Hirsch number of") + Name(1)
+ );
M.add( Ctor1<NGcomputeBasisProblem, SMFPGroup>(),
- Text("Compute a basis of ") + Name(1) );
+ Text("Compute a basis of ") + Name(1)
+ );
M.addDisabled( Text("Compute a short-lex system of representatives for")
- + Name(1) );
+ + Name(1) );
M.addDisabled( Text("Compute an integral homology group of") + Name(1) );
@@ -687,7 +716,8 @@
M.startCascade( Text("Find ...") );
M.add( Ctor1<NGbuildPresentationProblem, SMFPGroup>(),
- Text("Find a presentation for ") + Name(1) );
+ Text("Find a presentation for ") + Name(1)
+ );
M.addDisabled( Text("Find a polycyclic presentation of") + Name(1) );
@@ -733,17 +763,20 @@
M.addDisabled( Text("Is") + Name(1) + Text("solvable ?") );
M.add( Ctor1<HNNofFreeGroup_IsFinite, SMFPGroup>(),
- Text("Is") + Name(1) + Text("finite ?") );
+ Text("Is") + Name(1) + Text("finite ?")
+ );
M.add( Ctor1<AGProblem,SMFPGroup>(),
- Text("Is") + Name(1) + Text("automatic ?") );
+ Text("Is") + Name(1) + Text("automatic ?")
+ );
M.addDisabled( Text("Is") + Name(1) + Text("hyperbolic ?") );
M.add( Ctor1<HNNofFreeIsFree, SMFPGroup>(),
- Text("Is") + Name(1) + Text("free ?") );
+ Text("Is") + Name(1) + Text("free ?") );
- M.addDisabled( Text("Is") + Name(1) + Text("metric small cancellation ?"));
+ M.addDisabled( Text("Is") + Name(1) + Text("metric small cancellation ?")
+ );
M.closeCascade();
@@ -755,8 +788,9 @@
M.addDisabled( Text("Compute the center of") + Name(1) );
M.add( Ctor1<AbelInvariantsProb,SMFPGroup>(),
- Text("Compute the canonical decomposition of") + Name(1)
- + Text("abelianized") );
+ Text("Compute the canonical decomposition of") + Name(1)
+ + Text("abelianized")
+ );
M.addDisabled( Text("Compute a nilpotent quotient of") + Name(1) );
@@ -766,7 +800,8 @@
M.add( ReadHomologyItem(),
Text("Compute an integral homology group of") + Name(1),
- DefineInt("What dimension?", 2) );
+ DefineInt("What dimension?", 2)
+ );
M.closeCascade();
@@ -860,21 +895,23 @@
M.addDisabled( Text("Compute the torsion subgroup of") + Name(1) );
M.add( Ctor1<AbelInvariantsProb,SMFPGroup>(),
- Text("Compute the canonical decomposition of") + Name(1)
- + Text("abelianized") );
+ Text("Compute the canonical decomposition of") + Name(1)
+ + Text("abelianized")
+ );
M.add( Ctor1<NGcomputeNClassProblem, SMFPGroup>(),
- Text("Compute the class of") + Name(1) );
+ Text("Compute the class of") + Name(1)
+ );
M.addDisabled( Text("Compute the derived length of") + Name(1) );
M.add( ReadLCStermProblem(),
- Text("Find a term of the lower central series of") + Name(1),
- DefineInt("Enter the number of the term ", 1)
- );
+ Text("Find a term of the lower central series of") + Name(1),
+ DefineInt("Enter the number of the term ", 1)
+ );
M.add( Ctor1<NGcomputeBasisProblem,SMFPGroup>(),
- Text("Compute lower central quotients of") + Name(1)
+ Text("Compute lower central quotients of") + Name(1)
);
M.addDisabled( Text("Compute the derived series of") + Name(1) );
@@ -955,18 +992,21 @@
M.addDisabled( Text("Is") + Name(1) + Text("solvable ?") );
M.add( Ctor1<ORIsFinite, SMFPGroup>(),
- Text("Is") + Name(1) + Text("finite ?") );
+ Text("Is") + Name(1) + Text("finite ?")
+ );
M.add( Ctor1<AGProblem,SMFPGroup>(),
- Text("Is") + Name(1) + Text("automatic ?") );
+ Text("Is") + Name(1) + Text("automatic ?")
+ );
M.addDisabled( Text("Is") + Name(1) + Text("hyperbolic ?") );
M.add( Ctor1<ORIsFreeProblem, SMFPGroup>(),
- Text("Is") + Name(1) + Text("free ?") );
+ Text("Is") + Name(1) + Text("free ?") );
M.add( Ctor1<FPIsMSC,SMFPGroup>(),
- Text("Is") + Name(1) + Text("metric small cancellation ?") );
+ Text("Is") + Name(1) + Text("metric small cancellation ?")
+ );
M.closeCascade();
@@ -974,13 +1014,15 @@
M.startCascade( Text("Compute ...") );
M.add( Ctor1<OROrder,SMFPGroup>(),
- Text("Compute the order of") + Name(1) );
+ Text("Compute the order of") + Name(1)
+ );
M.addDisabled( Text("Compute the center of") + Name(1) );
M.add( Ctor1<AbelInvariantsProb,SMFPGroup>(),
- Text("Compute the canonical decomposition of") + Name(1)
- + Text("abelianized") );
+ Text("Compute the canonical decomposition of") + Name(1)
+ + Text("abelianized")
+ );
M.addDisabled( Text("Compute a nilpotent quotient of") + Name(1) );
@@ -989,18 +1031,19 @@
M.addDisabled( Text("Compute Schreier representatives for") + Name(1) );
M.add( Ctor1<FastHomology,SMFPGroup>(),
- Text("Compute the integral homology of") + Name(1) );
+ Text("Compute the integral homology of") + Name(1)
+ );
M.closeCascade();
M.startCascade( Text("Find ...") );
- M.addDisabled( Text("Find an amalgamated product decomposition of")
- + Name(1) );
+ M.addDisabled( Text("Find an amalgamated product decomposition of") + Name(1) );
M.add( ReadSMMagnusBreakdown(),
- Text("Find an HNN-extension decomposition of") + Name(1) );
+ Text("Find an HNN-extension decomposition of") + Name(1)
+ );
M.addDisabled( Text("Find a permutation representation of") + Name(1)
+ Text("when") + Name(1) + Text("is finite") );
@@ -1008,7 +1051,8 @@
M.separator();
M.add( Ctor1<KBProblem,SMFPGroup>(),
- Text("Find a finite rewriting system for") + Name(1) );
+ Text("Find a finite rewriting system for") + Name(1)
+ );
M.separator();
@@ -1027,17 +1071,21 @@
M.startCascade( Text("Enumerate ...") );
M.add( Ctor1<WordEnumeratorProblem, SMFPGroup>(),
- Text("Enumerate words of ") + Name( 1 ) );
+ Text("Enumerate words of ") + Name( 1 )
+ );
M.add( Ctor1<SGEnumeratorProblem, SMFPGroup>(),
- Text("Enumerate subgroups of ") + Name( 1 ) );
+ Text("Enumerate subgroups of ") + Name( 1 )
+ );
M.add( Ctor1<NCRelatorEnumerator, SMFPGroup>(),
- Text("Enumerate relators of ") + Name( 1 ) );
+ Text("Enumerate relators of ") + Name( 1 )
+ );
M.add( Ctor1<ORConsequencesEnumerator,SMFPGroup>(),
- Text("Enumerate consequences of the relator of ") +
- Name( 1 ) );
+ Text("Enumerate consequences of the relator of ") +
+ Name( 1 )
+ );
M.addDisabled( Text("Enumerate endomorphisms of") + Name(1) );
@@ -1057,26 +1105,31 @@
M.startCascade( Text("Is") + Name(1) + Text("...") );
M.add( Ctor1<MSCIsTrivial, SMFPGroup>(),
- Text("Is") + Name(1) + Text("trivial ?") );
+ Text("Is") + Name(1) + Text("trivial ?")
+ );
M.addDisabled( Text("Is") + Name(1) + Text("perfect ?") );
M.add( Ctor1<MSCIsAbelian, SMFPGroup>(),
- Text("Is") + Name(1) + Text("abelian ?") );
+ Text("Is") + Name(1) + Text("abelian ?")
+ );
M.add( ReadIsNilpotentProblemItem(),
Text("Is") + Name(1) + Text("nilpotent ?"),
- DefineInt("Enter the nilpotency class: ", 1) );
+ DefineInt("Enter the nilpotency class: ", 1)
+ );
M.addDisabled( Text("Is") + Name(1) + Text("polycyclic ?") );
M.addDisabled( Text("Is") + Name(1) + Text("solvable ?") );
M.add( Ctor1<MSCIsFinite, SMFPGroup>(),
- Text("Is") + Name(1) + Text("finite ?") );
+ Text("Is") + Name(1) + Text("finite ?")
+ );
M.add( Ctor1<AGProblem,SMFPGroup>(),
- Text("Is") + Name(1) + Text("automatic ?") );
+ Text("Is") + Name(1) + Text("automatic ?")
+ );
M.addDisabled( Text("Is") + Name(1) + Text("hyperbolic ?") );
@@ -1088,26 +1141,28 @@
M.startCascade( Text("Compute ...") );
M.add( Ctor1<MSCOrder,SMFPGroup>(),
- Text("Compute the order of") + Name(1) );
+ Text("Compute the order of") + Name(1)
+ );
M.addDisabled( Text("Compute the center of") + Name(1) );
M.add( Ctor1<AbelInvariantsProb,SMFPGroup>(),
- Text("Compute the canonical decomposition of") + Name(1)
- + Text("abelianized") );
+ Text("Compute the canonical decomposition of") + Name(1)
+ + Text("abelianized")
+ );
M.addDisabled( Text("Compute a nilpotent quotient of") + Name(1) );
M.addDisabled( Text("Compute lower central quotients of") + Name(1) );
M.add( Ctor1<SchreierTransversal,SMFPGroup>(),
- Text("Compute Schreier representatives for") + Name(1)
- );
+ Text("Compute Schreier representatives for") + Name(1)
+ );
M.add( ReadHomologyItem(),
- Text("Compute an integral homology group of") + Name(1),
- DefineInt("What dimension?", 2)
- );
+ Text("Compute an integral homology group of") + Name(1),
+ DefineInt("What dimension?", 2)
+ );
M.closeCascade();
@@ -1115,12 +1170,14 @@
M.startCascade( Text("Find ...") );
M.add( Ctor1<PermutationRepProblem, SMFPGroup>(),
- Text("Find a permutation representation of") + Name(1) );
+ Text("Find a permutation representation of") + Name(1)
+ );
M.separator();
M.add( Ctor1<KBProblem,SMFPGroup>(),
- Text("Find a finite rewriting system for") + Name(1) );
+ Text("Find a finite rewriting system for") + Name(1)
+ );
M.separator();
@@ -1139,13 +1196,16 @@
M.startCascade( Text("Enumerate ...") );
M.add( Ctor1<WordEnumeratorProblem, SMFPGroup>(),
- Text("Enumerate words of ") + Name( 1 ) );
+ Text("Enumerate words of ") + Name( 1 )
+ );
M.add( Ctor1<SGEnumeratorProblem, SMFPGroup>(),
- Text("Enumerate subgroups of ") + Name( 1 ) );
+ Text("Enumerate subgroups of ") + Name( 1 )
+ );
M.add( Ctor1<NCRelatorEnumerator, SMFPGroup>(),
- Text("Enumerate relators of ") + Name( 1 ) );
+ Text("Enumerate relators of ") + Name( 1 )
+ );
M.addDisabled( Text("Enumerate endomorphisms of") + Name(1) );
@@ -1202,17 +1262,17 @@
M.separator();
M.add( Ctor1<WordRepresentativeProblem, SMWord>(),
- Text("Compute the representative of")
- + Name(1) + Text("in a Schreier system of representatives for")
- + Name( Parent(1) ) );
+ Text("Compute the representative of")
+ + Name(1) + Text("in a Schreier system of representatives for")
+ + Name( Parent(1) ) );
M.separator();
M.add( Ctor1<AbelianWordProblem,SMWord>(),
- Text("Compute the canonical decomposition of") + Name(1) );
+ Text("Compute the canonical decomposition of") + Name(1) );
M.add( Ctor1<EltPrimeForm, SMWord>(),
- Text("Compute the primary decomposition of ") + Name(1) );
+ Text("Compute the primary decomposition of ") + Name(1) );
M.separator();
@@ -1231,21 +1291,21 @@
M.startCascade( Text("Is") + Name(1) + Text("...") );
M.add( Ctor1<WordProblem,SMWord>(),
- Text("Is") + Name(1) + "trivial ?");
+ Text("Is") + Name(1) + "trivial ?");
M.add( Ctor1<AbelianPowerProblem, SMWord>(),
- Text("Is ") + Name(1) + Text("a proper power ?") );
+ Text("Is ") + Name(1) + Text("a proper power ?") );
M.add( Ctor1<AbelianSGGenedByWordPurityProblem, SMWord>(),
- Text("Is the subgroup generated by")
- + Name(1) + Text("pure ?") );
+ Text("Is the subgroup generated by")
+ + Name(1) + Text("pure ?") );
M.closeCascade();
M.startCascade( Text("Does") + Name(1) + Text("...") );
M.add( Ctor1<AbelianDoesGensSummand, SMWord>(),
- Text("Does ") + Name(1) + Text("generate a direct summand ?") ...
[truncated message content] |
|
From: <ybr...@us...> - 2007-05-24 18:12:38
|
Revision: 255
http://svn.sourceforge.net/magnus/?rev=255&view=rev
Author: ybryukhov
Date: 2007-05-24 11:12:08 -0700 (Thu, 24 May 2007)
Log Message:
-----------
again
Added Paths:
-----------
branches/daly/version9/doc/manual/figs/sm2small.fig
Removed Paths:
-------------
branches/daly/version9/doc/manual/figs/sm2.fig
Deleted: branches/daly/version9/doc/manual/figs/sm2.fig
===================================================================
--- branches/daly/version9/doc/manual/figs/sm2.fig 2007-05-24 18:09:57 UTC (rev 254)
+++ branches/daly/version9/doc/manual/figs/sm2.fig 2007-05-24 18:12:08 UTC (rev 255)
@@ -1,451 +0,0 @@
-#FIG 3.1
-Landscape
-Center
-Inches
-1200 2
-6 3225 75 5025 1500
-3 3 1 1 -1 7 2 0 -1 4.000 0 0 0 36
- 3324 788 3241 713 3249 548 3368 451 3533 293 3616 158
- 3736 106 3953 151 4096 196 4269 211 4456 173 4621 173
- 4726 256 4718 413 4741 518 4861 601 4958 751 4928 856
- 4816 953 4748 1073 4741 1156 4756 1291 4696 1396 4591 1411
- 4389 1351 4193 1313 4051 1321 3901 1388 3736 1441 3526 1426
- 3458 1291 3503 1193 3556 968 3473 886 3368 811 3324 788
- 3333.46 794.59 3302.68 773.16 3253.05 742.00 3223.21 670.18
- 3228.49 588.61 3268.06 510.25 3341.74 474.21 3407.07 416.47
- 3499.67 334.29 3556.12 264.35 3585.68 184.29 3641.03 136.30
- 3703.02 109.38 3791.88 100.27 3903.99 138.24 3986.15 159.63
- 4062.02 189.26 4135.36 203.80 4228.53 213.31 4313.48 208.46
- 4412.22 177.40 4493.85 169.19 4580.74 159.01 4653.65 184.35
- 4710.03 220.76 4744.76 297.39 4714.99 376.54 4720.06 437.93
- 4725.07 494.25 4762.62 550.24 4836.80 576.03 4890.63 631.57
- 4950.71 702.06 4962.46 780.92 4942.72 832.92 4908.03 887.32
- 4838.14 925.97 4795.39 978.16 4757.80 1041.30 4742.08 1092.14
- 4740.75 1136.81 4741.42 1187.29 4763.02 1257.10 4749.75 1321.18
- 4724.38 1376.72 4671.11 1412.91 4616.44 1412.87 4540.46 1407.28
- 4435.76 1362.45 4344.70 1340.15 4239.22 1316.13 4160.08 1310.77
- 4083.74 1313.05 4013.18 1330.18 3936.08 1374.58 3863.99 1402.16
- 3776.92 1436.08 3686.29 1446.98 3578.48 1460.97 3488.32 1400.89
- 3458.77 1333.65 3457.45 1260.57 3494.92 1216.51 3520.31 1142.60
- 3575.05 1034.24 3546.38 934.57 3493.49 903.25 3450.34 866.92
- 3393.19 826.48 3358.31 805.04 3333.46 794.59 3302.68 773.16
-4 0 -1 0 0 16 10 0.0000000 4 150 1290 3451 751 BaseRegObjectRef\001
--6
-6 5850 225 7650 1650
-3 3 1 1 -1 7 2 0 -1 4.000 0 0 0 36
- 5964 983 5881 908 5889 743 6008 646 6173 488 6256 353
- 6376 301 6593 346 6736 391 6909 406 7096 368 7261 368
- 7366 451 7358 608 7381 713 7501 796 7598 946 7568 1051
- 7456 1148 7388 1268 7381 1351 7396 1486 7336 1591 7231 1606
- 7029 1546 6833 1508 6691 1516 6541 1583 6376 1636 6166 1621
- 6098 1486 6143 1388 6196 1163 6113 1081 6008 1006 5964 983
- 5973.46 989.59 5942.68 968.16 5893.05 937.00 5863.21 865.18
- 5868.49 783.61 5908.06 705.25 5981.74 669.21 6047.07 611.47
- 6139.67 529.29 6196.12 459.35 6225.68 379.29 6281.03 331.30
- 6343.02 304.38 6431.88 295.27 6543.99 333.24 6626.15 354.63
- 6702.02 384.26 6775.36 398.80 6868.53 408.31 6953.48 403.46
- 7052.22 372.40 7133.85 364.19 7220.74 354.01 7293.65 379.35
- 7350.03 415.76 7384.76 492.39 7354.99 571.54 7360.06 632.93
- 7365.07 689.25 7402.62 745.24 7476.80 771.03 7530.63 826.57
- 7590.71 897.06 7602.46 975.92 7582.72 1027.92 7548.03 1082.32
- 7478.14 1120.97 7435.39 1173.16 7397.80 1236.30 7382.08 1287.14
- 7380.75 1331.81 7381.42 1382.29 7403.02 1452.10 7389.75 1516.18
- 7364.38 1571.72 7311.11 1607.91 7256.44 1607.87 7180.46 1602.28
- 7075.76 1557.45 6984.70 1535.15 6879.22 1511.13 6800.08 1505.77
- 6723.74 1508.05 6653.18 1525.18 6576.08 1569.58 6503.99 1597.16
- 6416.92 1631.08 6326.29 1641.98 6218.48 1655.97 6128.32 1595.89
- 6098.77 1528.65 6097.45 1455.57 6134.92 1411.51 6160.31 1337.60
- 6215.05 1229.24 6186.38 1129.57 6133.49 1098.25 6090.34 1061.92
- 6033.19 1021.48 5998.31 1000.04 5973.46 989.59 5942.68 968.16
-4 0 -1 0 0 16 10 0.0000000 4 150 735 6301 826 HolderRep\001
--6
-6 6450 1875 8250 3300
-3 3 1 1 -1 7 2 0 -1 4.000 0 0 0 36
- 6609 2603 6526 2528 6534 2363 6653 2266 6818 2108 6901 1973
- 7021 1921 7238 1966 7381 2011 7554 2026 7741 1988 7906 1988
- 8011 2071 8003 2228 8026 2333 8146 2416 8243 2566 8213 2671
- 8101 2768 8033 2888 8026 2971 8041 3106 7981 3211 7876 3226
- 7674 3166 7478 3128 7336 3136 7186 3203 7021 3256 6811 3241
- 6743 3106 6788 3008 6841 2783 6758 2701 6653 2626 6609 2603
- 6618.46 2609.59 6587.68 2588.16 6538.05 2557.00 6508.21 2485.18
- 6513.49 2403.61 6553.06 2325.25 6626.74 2289.21 6692.07 2231.47
- 6784.67 2149.29 6841.12 2079.35 6870.68 1999.29 6926.03 1951.30
- 6988.02 1924.38 7076.88 1915.27 7188.99 1953.24 7271.15 1974.63
- 7347.02 2004.26 7420.36 2018.80 7513.53 2028.31 7598.48 2023.46
- 7697.22 1992.40 7778.85 1984.19 7865.74 1974.01 7938.65 1999.35
- 7995.03 2035.76 8029.76 2112.39 7999.99 2191.54 8005.06 2252.93
- 8010.07 2309.25 8047.62 2365.24 8121.80 2391.03 8175.63 2446.57
- 8235.71 2517.06 8247.46 2595.92 8227.72 2647.92 8193.03 2702.32
- 8123.14 2740.97 8080.39 2793.16 8042.80 2856.30 8027.08 2907.14
- 8025.75 2951.81 8026.42 3002.29 8048.02 3072.10 8034.75 3136.18
- 8009.38 3191.72 7956.11 3227.91 7901.44 3227.87 7825.46 3222.28
- 7720.76 3177.45 7629.70 3155.15 7524.22 3131.13 7445.08 3125.77
- 7368.74 3128.05 7298.18 3145.18 7221.08 3189.58 7148.99 3217.16
- 7061.92 3251.08 6971.29 3261.98 6863.48 3275.97 6773.32 3215.89
- 6743.77 3148.65 6742.45 3075.57 6779.92 3031.51 6805.31 2957.60
- 6860.05 2849.24 6831.38 2749.57 6778.49 2718.25 6735.34 2681.92
- 6678.19 2641.48 6643.31 2620.04 6618.46 2609.59 6587.68 2588.16
-4 0 -1 0 0 16 10 0.0000000 4 150 435 6976 2476 Group\001
--6
-6 74 3374 1949 4799
-3 3 1 1 -1 7 2 0 -1 4.000 0 0 0 36
- 241 4095 158 4020 166 3855 285 3758 450 3600 533 3465
- 653 3413 870 3458 1013 3503 1186 3518 1373 3480 1538 3480
- 1643 3563 1635 3720 1658 3825 1778 3908 1875 4058 1845 4163
- 1733 4260 1665 4380 1658 4463 1673 4598 1613 4703 1508 4718
- 1306 4658 1110 4620 968 4628 818 4695 653 4748 443 4733
- 375 4598 420 4500 473 4275 390 4193 285 4118 241 4095
- 250.46 4101.59 219.68 4080.16 170.05 4049.00 140.21 3977.18
- 145.49 3895.61 185.06 3817.25 258.74 3781.21 324.07 3723.47
- 416.67 3641.29 473.12 3571.35 502.68 3491.29 558.03 3443.30
- 620.02 3416.38 708.88 3407.27 820.99 3445.24 903.15 3466.63
- 979.02 3496.26 1052.36 3510.80 1145.53 3520.31 1230.48 3515.46
- 1329.22 3484.40 1410.85 3476.19 1497.74 3466.01 1570.65 3491.35
- 1627.03 3527.76 1661.76 3604.39 1631.99 3683.54 1637.06 3744.93
- 1642.07 3801.25 1679.62 3857.24 1753.80 3883.03 1807.63 3938.57
- 1867.71 4009.06 1879.46 4087.92 1859.72 4139.92 1825.03 4194.32
- 1755.14 4232.97 1712.39 4285.16 1674.80 4348.30 1659.08 4399.14
- 1657.75 4443.81 1658.42 4494.29 1680.02 4564.10 1666.75 4628.18
- 1641.38 4683.72 1588.11 4719.91 1533.44 4719.87 1457.46 4714.28
- 1352.76 4669.45 1261.70 4647.15 1156.22 4623.13 1077.08 4617.77
- 1000.74 4620.05 930.18 4637.18 853.08 4681.58 780.99 4709.16
- 693.92 4743.08 603.29 4753.98 495.48 4767.97 405.32 4707.89
- 375.77 4640.65 374.45 4567.57 411.92 4523.51 437.31 4449.60
- 492.05 4341.24 463.38 4241.57 410.49 4210.25 367.34 4173.92
- 310.19 4133.48 275.31 4112.04 250.46 4101.59 219.68 4080.16
-4 0 -1 0 0 16 10 0.0000000 4 150 1050 450 3975 AbelianToolRep\001
--6
-6 600 225 2400 1650
-3 3 1 1 -1 7 2 0 -1 4.000 0 0 0 36
- 714 938 631 863 639 698 758 601 923 443 1006 308
- 1126 256 1343 301 1486 346 1659 361 1846 323 2011 323
- 2116 406 2108 563 2131 668 2251 751 2348 901 2318 1006
- 2206 1103 2138 1223 2131 1306 2146 1441 2086 1546 1981 1561
- 1779 1501 1583 1463 1441 1471 1291 1538 1126 1591 916 1576
- 848 1441 893 1343 946 1118 863 1036 758 961 714 938
- 723.46 944.59 692.68 923.16 643.05 892.00 613.21 820.18
- 618.49 738.61 658.06 660.25 731.74 624.21 797.07 566.47
- 889.67 484.29 946.12 414.35 975.68 334.29 1031.03 286.30
- 1093.02 259.38 1181.88 250.27 1293.99 288.24 1376.15 309.63
- 1452.02 339.26 1525.36 353.80 1618.53 363.31 1703.48 358.46
- 1802.22 327.40 1883.85 319.19 1970.74 309.01 2043.65 334.35
- 2100.03 370.76 2134.76 447.39 2104.99 526.54 2110.06 587.93
- 2115.07 644.25 2152.62 700.24 2226.80 726.03 2280.63 781.57
- 2340.71 852.06 2352.46 930.92 2332.72 982.92 2298.03 1037.32
- 2228.14 1075.97 2185.39 1128.16 2147.80 1191.30 2132.08 1242.14
- 2130.75 1286.81 2131.42 1337.29 2153.02 1407.10 2139.75 1471.18
- 2114.38 1526.72 2061.11 1562.91 2006.44 1562.87 1930.46 1557.28
- 1825.76 1512.45 1734.70 1490.15 1629.22 1466.13 1550.08 1460.77
- 1473.74 1463.05 1403.18 1480.18 1326.08 1524.58 1253.99 1552.16
- 1166.92 1586.08 1076.29 1596.98 968.48 1610.97 878.32 1550.89
- 848.77 1483.65 847.45 1410.57 884.92 1366.51 910.31 1292.60
- 965.05 1184.24 936.38 1084.57 883.49 1053.25 840.34 1016.92
- 783.19 976.48 748.31 955.04 723.46 944.59 692.68 923.16
-4 0 -1 0 0 16 10 0.0000000 4 150 1155 901 826 ActiveObjectRep\001
--6
-6 6374 5174 8174 6599
-3 3 1 1 -1 7 2 0 -1 4.000 0 0 0 36
- 6523 5880 6440 5805 6448 5640 6567 5543 6732 5385 6815 5250
- 6935 5198 7152 5243 7295 5288 7468 5303 7655 5265 7820 5265
- 7925 5348 7917 5505 7940 5610 8060 5693 8157 5843 8127 5948
- 8015 6045 7947 6165 7940 6248 7955 6383 7895 6488 7790 6503
- 7588 6443 7392 6405 7250 6413 7100 6480 6935 6533 6725 6518
- 6657 6383 6702 6285 6755 6060 6672 5978 6567 5903 6523 5880
- 6532.46 5886.59 6501.68 5865.16 6452.05 5834.00 6422.21 5762.18
- 6427.49 5680.61 6467.06 5602.25 6540.74 5566.21 6606.07 5508.47
- 6698.67 5426.29 6755.12 5356.35 6784.68 5276.29 6840.03 5228.30
- 6902.02 5201.38 6990.88 5192.27 7102.99 5230.24 7185.15 5251.63
- 7261.02 5281.26 7334.36 5295.80 7427.53 5305.31 7512.48 5300.46
- 7611.22 5269.40 7692.85 5261.19 7779.74 5251.01 7852.65 5276.35
- 7909.03 5312.76 7943.76 5389.39 7913.99 5468.54 7919.06 5529.93
- 7924.07 5586.25 7961.62 5642.24 8035.80 5668.03 8089.63 5723.57
- 8149.71 5794.06 8161.46 5872.92 8141.72 5924.92 8107.03 5979.32
- 8037.14 6017.97 7994.39 6070.16 7956.80 6133.30 7941.08 6184.14
- 7939.75 6228.81 7940.42 6279.29 7962.02 6349.10 7948.75 6413.18
- 7923.38 6468.72 7870.11 6504.91 7815.44 6504.87 7739.46 6499.28
- 7634.76 6454.45 7543.70 6432.15 7438.22 6408.13 7359.08 6402.77
- 7282.74 6405.05 7212.18 6422.18 7135.08 6466.58 7062.99 6494.16
- 6975.92 6528.08 6885.29 6538.98 6777.48 6552.97 6687.32 6492.89
- 6657.77 6425.65 6656.45 6352.57 6693.92 6308.51 6719.31 6234.60
- 6774.05 6126.24 6745.38 6026.57 6692.49 5995.25 6649.34 5958.92
- 6592.19 5918.48 6557.31 5897.04 6532.46 5886.59 6501.68 5865.16
-4 0 -1 0 0 16 10 0.0000000 4 120 720 6825 5700 DataStore\001
--6
-6 6449 3449 8249 4874
-3 3 1 1 -1 7 2 0 -1 4.000 0 0 0 36
- 6596 4183 6513 4108 6521 3943 6640 3846 6805 3688 6888 3553
- 7008 3501 7225 3546 7368 3591 7541 3606 7728 3568 7893 3568
- 7998 3651 7990 3808 8013 3913 8133 3996 8230 4146 8200 4251
- 8088 4348 8020 4468 8013 4551 8028 4686 7968 4791 7863 4806
- 7661 4746 7465 4708 7323 4716 7173 4783 7008 4836 6798 4821
- 6730 4686 6775 4588 6828 4363 6745 4281 6640 4206 6596 4183
- 6605.46 4189.59 6574.68 4168.16 6525.05 4137.00 6495.21 4065.18
- 6500.49 3983.61 6540.06 3905.25 6613.74 3869.21 6679.07 3811.47
- 6771.67 3729.29 6828.12 3659.35 6857.68 3579.29 6913.03 3531.30
- 6975.02 3504.38 7063.88 3495.27 7175.99 3533.24 7258.15 3554.63
- 7334.02 3584.26 7407.36 3598.80 7500.53 3608.31 7585.48 3603.46
- 7684.22 3572.40 7765.85 3564.19 7852.74 3554.01 7925.65 3579.35
- 7982.03 3615.76 8016.76 3692.39 7986.99 3771.54 7992.06 3832.93
- 7997.07 3889.25 8034.62 3945.24 8108.80 3971.03 8162.63 4026.57
- 8222.71 4097.06 8234.46 4175.92 8214.72 4227.92 8180.03 4282.32
- 8110.14 4320.97 8067.39 4373.16 8029.80 4436.30 8014.08 4487.14
- 8012.75 4531.81 8013.42 4582.29 8035.02 4652.10 8021.75 4716.18
- 7996.38 4771.72 7943.11 4807.91 7888.44 4807.87 7812.46 4802.28
- 7707.76 4757.45 7616.70 4735.15 7511.22 4711.13 7432.08 4705.77
- 7355.74 4708.05 7285.18 4725.18 7208.08 4769.58 7135.99 4797.16
- 7048.92 4831.08 6958.29 4841.98 6850.48 4855.97 6760.32 4795.89
- 6730.77 4728.65 6729.45 4655.57 6766.92 4611.51 6792.31 4537.60
- 6847.05 4429.24 6818.38 4329.57 6765.49 4298.25 6722.34 4261.92
- 6665.19 4221.48 6630.31 4200.04 6605.46 4189.59 6574.68 4168.16
-4 0 -1 0 0 16 10 0.0000000 4 120 255 6975 4050 ISS\001
--6
-6 4125 3750 5925 5175
-3 3 1 1 -1 7 2 0 -1 4.000 0 0 0 36
- 4250 4468 4167 4393 4175 4228 4294 4131 4459 3973 4542 3838
- 4662 3786 4879 3831 5022 3876 5195 3891 5382 3853 5547 3853
- 5652 3936 5644 4093 5667 4198 5787 4281 5884 4431 5854 4536
- 5742 4633 5674 4753 5667 4836 5682 4971 5622 5076 5517 5091
- 5315 5031 5119 4993 4977 5001 4827 5068 4662 5121 4452 5106
- 4384 4971 4429 4873 4482 4648 4399 4566 4294 4491 4250 4468
- 4259.46 4474.59 4228.68 4453.16 4179.05 4422.00 4149.21 4350.18
- 4154.49 4268.61 4194.06 4190.25 4267.74 4154.21 4333.07 4096.47
- 4425.67 4014.29 4482.12 3944.35 4511.68 3864.29 4567.03 3816.30
- 4629.02 3789.38 4717.88 3780.27 4829.99 3818.24 4912.15 3839.63
- 4988.02 3869.26 5061.36 3883.80 5154.53 3893.31 5239.48 3888.46
- 5338.22 3857.40 5419.85 3849.19 5506.74 3839.01 5579.65 3864.35
- 5636.03 3900.76 5670.76 3977.39 5640.99 4056.54 5646.06 4117.93
- 5651.07 4174.25 5688.62 4230.24 5762.80 4256.03 5816.63 4311.57
- 5876.71 4382.06 5888.46 4460.92 5868.72 4512.92 5834.03 4567.32
- 5764.14 4605.97 5721.39 4658.16 5683.80 4721.30 5668.08 4772.14
- 5666.75 4816.81 5667.42 4867.29 5689.02 4937.10 5675.75 5001.18
- 5650.38 5056.72 5597.11 5092.91 5542.44 5092.87 5466.46 5087.28
- 5361.76 5042.45 5270.70 5020.15 5165.22 4996.13 5086.08 4990.77
- 5009.74 4993.05 4939.18 5010.18 4862.08 5054.58 4789.99 5082.16
- 4702.92 5116.08 4612.29 5126.98 4504.48 5140.97 4414.32 5080.89
- 4384.77 5013.65 4383.45 4940.57 4420.92 4896.51 4446.31 4822.60
- 4501.05 4714.24 4472.38 4614.57 4419.49 4583.25 4376.34 4546.92
- 4319.19 4506.48 4284.31 4485.04 4259.46 4474.59 4228.68 4453.16
-4 0 -1 0 0 16 10 0.0000000 4 120 480 4576 4351 FPGIC\001
--6
-6 2099 6599 3899 8024
-3 3 1 1 -1 7 2 0 -1 4.000 0 0 0 36
- 2258 7312 2175 7237 2183 7072 2302 6975 2467 6817 2550 6682
- 2670 6630 2887 6675 3030 6720 3203 6735 3390 6697 3555 6697
- 3660 6780 3652 6937 3675 7042 3795 7125 3892 7275 3862 7380
- 3750 7477 3682 7597 3675 7680 3690 7815 3630 7920 3525 7935
- 3323 7875 3127 7837 2985 7845 2835 7912 2670 7965 2460 7950
- 2392 7815 2437 7717 2490 7492 2407 7410 2302 7335 2258 7312
- 2267.46 7318.59 2236.68 7297.16 2187.05 7266.00 2157.21 7194.18
- 2162.49 7112.61 2202.06 7034.25 2275.74 6998.21 2341.07 6940.47
- 2433.67 6858.29 2490.12 6788.35 2519.68 6708.29 2575.03 6660.30
- 2637.02 6633.38 2725.88 6624.27 2837.99 6662.24 2920.15 6683.63
- 2996.02 6713.26 3069.36 6727.80 3162.53 6737.31 3247.48 6732.46
- 3346.22 6701.40 3427.85 6693.19 3514.74 6683.01 3587.65 6708.35
- 3644.03 6744.76 3678.76 6821.39 3648.99 6900.54 3654.06 6961.93
- 3659.07 7018.25 3696.62 7074.24 3770.80 7100.03 3824.63 7155.57
- 3884.71 7226.06 3896.46 7304.92 3876.72 7356.92 3842.03 7411.32
- 3772.14 7449.97 3729.39 7502.16 3691.80 7565.30 3676.08 7616.14
- 3674.75 7660.81 3675.42 7711.29 3697.02 7781.10 3683.75 7845.18
- 3658.38 7900.72 3605.11 7936.91 3550.44 7936.87 3474.46 7931.28
- 3369.76 7886.45 3278.70 7864.15 3173.22 7840.13 3094.08 7834.77
- 3017.74 7837.05 2947.18 7854.18 2870.08 7898.58 2797.99 7926.16
- 2710.92 7960.08 2620.29 7970.98 2512.48 7984.97 2422.32 7924.89
- 2392.77 7857.65 2391.45 7784.57 2428.92 7740.51 2454.31 7666.60
- 2509.05 7558.24 2480.38 7458.57 2427.49 7427.25 2384.34 7390.92
- 2327.19 7350.48 2292.31 7329.04 2267.46 7318.59 2236.68 7297.16
-4 0 -1 0 0 16 10 0.0000000 4 120 570 2550 7200 Account\001
--6
-6 2025 4050 3900 5475
-3 3 1 1 -1 7 2 0 -1 4.000 0 0 0 36
- 2192 4771 2109 4696 2117 4531 2236 4434 2401 4276 2484 4141
- 2604 4089 2821 4134 2964 4179 3137 4194 3324 4156 3489 4156
- 3594 4239 3586 4396 3609 4501 3729 4584 3826 4734 3796 4839
- 3684 4936 3616 5056 3609 5139 3624 5274 3564 5379 3459 5394
- 3257 5334 3061 5296 2919 5304 2769 5371 2604 5424 2394 5409
- 2326 5274 2371 5176 2424 4951 2341 4869 2236 4794 2192 4771
- 2201.46 4777.59 2170.68 4756.16 2121.05 4725.00 2091.21 4653.18
- 2096.49 4571.61 2136.06 4493.25 2209.74 4457.21 2275.07 4399.47
- 2367.67 4317.29 2424.12 4247.35 2453.68 4167.29 2509.03 4119.30
- 2571.02 4092.38 2659.88 4083.27 2771.99 4121.24 2854.15 4142.63
- 2930.02 4172.26 3003.36 4186.80 3096.53 4196.31 3181.48 4191.46
- 3280.22 4160.40 3361.85 4152.19 3448.74 4142.01 3521.65 4167.35
- 3578.03 4203.76 3612.76 4280.39 3582.99 4359.54 3588.06 4420.93
- 3593.07 4477.25 3630.62 4533.24 3704.80 4559.03 3758.63 4614.57
- 3818.71 4685.06 3830.46 4763.92 3810.72 4815.92 3776.03 4870.32
- 3706.14 4908.97 3663.39 4961.16 3625.80 5024.30 3610.08 5075.14
- 3608.75 5119.81 3609.42 5170.29 3631.02 5240.10 3617.75 5304.18
- 3592.38 5359.72 3539.11 5395.91 3484.44 5395.87 3408.46 5390.28
- 3303.76 5345.45 3212.70 5323.15 3107.22 5299.13 3028.08 5293.77
- 2951.74 5296.05 2881.18 5313.18 2804.08 5357.58 2731.99 5385.16
- 2644.92 5419.08 2554.29 5429.98 2446.48 5443.97 2356.32 5383.89
- 2326.77 5316.65 2325.45 5243.57 2362.92 5199.51 2388.31 5125.60
- 2443.05 5017.24 2414.38 4917.57 2361.49 4886.25 2318.34 4849.92
- 2261.19 4809.48 2226.31 4788.04 2201.46 4777.59 2170.68 4756.16
-4 0 -1 0 0 16 10 0.0000000 4 150 1275 2326 4726 WordProbToolRep\001
--6
-6 2250 2250 4050 3675
-3 3 1 1 -1 7 2 0 -1 4.000 0 0 0 36
- 2394 2971 2311 2896 2319 2731 2438 2634 2603 2476 2686 2341
- 2806 2289 3023 2334 3166 2379 3339 2394 3526 2356 3691 2356
- 3796 2439 3788 2596 3811 2701 3931 2784 4028 2934 3998 3039
- 3886 3136 3818 3256 3811 3339 3826 3474 3766 3579 3661 3594
- 3459 3534 3263 3496 3121 3504 2971 3571 2806 3624 2596 3609
- 2528 3474 2573 3376 2626 3151 2543 3069 2438 2994 2394 2971
- 2403.46 2977.59 2372.68 2956.16 2323.05 2925.00 2293.21 2853.18
- 2298.49 2771.61 2338.06 2693.25 2411.74 2657.21 2477.07 2599.47
- 2569.67 2517.29 2626.12 2447.35 2655.68 2367.29 2711.03 2319.30
- 2773.02 2292.38 2861.88 2283.27 2973.99 2321.24 3056.15 2342.63
- 3132.02 2372.26 3205.36 2386.80 3298.53 2396.31 3383.48 2391.46
- 3482.22 2360.40 3563.85 2352.19 3650.74 2342.01 3723.65 2367.35
- 3780.03 2403.76 3814.76 2480.39 3784.99 2559.54 3790.06 2620.93
- 3795.07 2677.25 3832.62 2733.24 3906.80 2759.03 3960.63 2814.57
- 4020.71 2885.06 4032.46 2963.92 4012.72 3015.92 3978.03 3070.32
- 3908.14 3108.97 3865.39 3161.16 3827.80 3224.30 3812.08 3275.14
- 3810.75 3319.81 3811.42 3370.29 3833.02 3440.10 3819.75 3504.18
- 3794.38 3559.72 3741.11 3595.91 3686.44 3595.87 3610.46 3590.28
- 3505.76 3545.45 3414.70 3523.15 3309.22 3499.13 3230.08 3493.77
- 3153.74 3496.05 3083.18 3513.18 3006.08 3557.58 2933.99 3585.16
- 2846.92 3619.08 2756.29 3629.98 2648.48 3643.97 2558.32 3583.89
- 2528.77 3516.65 2527.45 3443.57 2564.92 3399.51 2590.31 3325.60
- 2645.05 3217.24 2616.38 3117.57 2563.49 3086.25 2520.34 3049.92
- 2463.19 3009.48 2428.31 2988.04 2403.46 2977.59 2372.68 2956.16
-4 0 -1 0 0 16 10 0.0000000 4 150 900 2701 2851 Computation\001
-4 0 -1 0 0 16 10 0.0000000 4 150 600 2701 3076 Manager\001
--6
-6 4725 6000 6525 7425
-3 3 1 1 -1 7 2 0 -1 4.000 0 0 0 36
- 4824 6713 4741 6638 4749 6473 4868 6376 5033 6218 5116 6083
- 5236 6031 5453 6076 5596 6121 5769 6136 5956 6098 6121 6098
- 6226 6181 6218 6338 6241 6443 6361 6526 6458 6676 6428 6781
- 6316 6878 6248 6998 6241 7081 6256 7216 6196 7321 6091 7336
- 5889 7276 5693 7238 5551 7246 5401 7313 5236 7366 5026 7351
- 4958 7216 5003 7118 5056 6893 4973 6811 4868 6736 4824 6713
- 4833.46 6719.59 4802.68 6698.16 4753.05 6667.00 4723.21 6595.18
- 4728.49 6513.61 4768.06 6435.25 4841.74 6399.21 4907.07 6341.47
- 4999.67 6259.29 5056.12 6189.35 5085.68 6109.29 5141.03 6061.30
- 5203.02 6034.38 5291.88 6025.27 5403.99 6063.24 5486.15 6084.63
- 5562.02 6114.26 5635.36 6128.80 5728.53 6138.31 5813.48 6133.46
- 5912.22 6102.40 5993.85 6094.19 6080.74 6084.01 6153.65 6109.35
- 6210.03 6145.76 6244.76 6222.39 6214.99 6301.54 6220.06 6362.93
- 6225.07 6419.25 6262.62 6475.24 6336.80 6501.03 6390.63 6556.57
- 6450.71 6627.06 6462.46 6705.92 6442.72 6757.92 6408.03 6812.32
- 6338.14 6850.97 6295.39 6903.16 6257.80 6966.30 6242.08 7017.14
- 6240.75 7061.81 6241.42 7112.29 6263.02 7182.10 6249.75 7246.18
- 6224.38 7301.72 6171.11 7337.91 6116.44 7337.87 6040.46 7332.28
- 5935.76 7287.45 5844.70 7265.15 5739.22 7241.13 5660.08 7235.77
- 5583.74 7238.05 5513.18 7255.18 5436.08 7299.58 5363.99 7327.16
- 5276.92 7361.08 5186.29 7371.98 5078.48 7385.97 4988.32 7325.89
- 4958.77 7258.65 4957.45 7185.57 4994.92 7141.51 5020.31 7067.60
- 5075.05 6959.24 5046.38 6859.57 4993.49 6828.25 4950.34 6791.92
- 4893.19 6751.48 4858.31 6730.04 4833.46 6719.59 4802.68 6698.16
-4 0 -1 0 0 16 10 0.0000000 4 120 465 5176 6601 Broker\001
--6
-6 149 6599 1949 8024
-3 3 1 1 -1 7 2 0 -1 4.000 0 0 0 36
- 256 7312 173 7237 181 7072 300 6975 465 6817 548 6682
- 668 6630 885 6675 1028 6720 1201 6735 1388 6697 1553 6697
- 1658 6780 1650 6937 1673 7042 1793 7125 1890 7275 1860 7380
- 1748 7477 1680 7597 1673 7680 1688 7815 1628 7920 1523 7935
- 1321 7875 1125 7837 983 7845 833 7912 668 7965 458 7950
- 390 7815 435 7717 488 7492 405 7410 300 7335 256 7312
- 265.46 7318.59 234.68 7297.16 185.05 7266.00 155.21 7194.18
- 160.49 7112.61 200.06 7034.25 273.74 6998.21 339.07 6940.47
- 431.67 6858.29 488.12 6788.35 517.68 6708.29 573.03 6660.30
- 635.02 6633.38 723.88 6624.27 835.99 6662.24 918.15 6683.63
- 994.02 6713.26 1067.36 6727.80 1160.53 6737.31 1245.48 6732.46
- 1344.22 6701.40 1425.85 6693.19 1512.74 6683.01 1585.65 6708.35
- 1642.03 6744.76 1676.76 6821.39 1646.99 6900.54 1652.06 6961.93
- 1657.07 7018.25 1694.62 7074.24 1768.80 7100.03 1822.63 7155.57
- 1882.71 7226.06 1894.46 7304.92 1874.72 7356.92 1840.03 7411.32
- 1770.14 7449.97 1727.39 7502.16 1689.80 7565.30 1674.08 7616.14
- 1672.75 7660.81 1673.42 7711.29 1695.02 7781.10 1681.75 7845.18
- 1656.38 7900.72 1603.11 7936.91 1548.44 7936.87 1472.46 7931.28
- 1367.76 7886.45 1276.70 7864.15 1171.22 7840.13 1092.08 7834.77
- 1015.74 7837.05 945.18 7854.18 868.08 7898.58 795.99 7926.16
- 708.92 7960.08 618.29 7970.98 510.48 7984.97 420.32 7924.89
- 390.77 7857.65 389.45 7784.57 426.92 7740.51 452.31 7666.60
- 507.05 7558.24 478.38 7458.57 425.49 7427.25 382.34 7390.92
- 325.19 7350.48 290.31 7329.04 265.46 7318.59 234.68 7297.16
-4 0 -1 0 0 16 10 0.0000000 4 120 945 525 7125 WordChecker\001
-4 0 -1 0 0 16 10 0.0000000 4 150 420 525 7350 Agent\001
--6
-6 4049 1724 5849 3149
-3 3 1 1 -1 7 2 0 -1 4.000 0 0 0 36
- 4201 2476 4118 2401 4126 2236 4245 2139 4410 1981 4493 1846
- 4613 1794 4830 1839 4973 1884 5146 1899 5333 1861 5498 1861
- 5603 1944 5595 2101 5618 2206 5738 2289 5835 2439 5805 2544
- 5693 2641 5625 2761 5618 2844 5633 2979 5573 3084 5468 3099
- 5266 3039 5070 3001 4928 3009 4778 3076 4613 3129 4403 3114
- 4335 2979 4380 2881 4433 2656 4350 2574 4245 2499 4201 2476
- 4210.46 2482.59 4179.68 2461.16 4130.05 2430.00 4100.21 2358.18
- 4105.49 2276.61 4145.06 2198.25 4218.74 2162.21 4284.07 2104.47
- 4376.67 2022.29 4433.12 1952.35 4462.68 1872.29 4518.03 1824.30
- 4580.02 1797.38 4668.88 1788.27 4780.99 1826.24 4863.15 1847.63
- 4939.02 1877.26 5012.36 1891.80 5105.53 1901.31 5190.48 1896.46
- 5289.22 1865.40 5370.85 1857.19 5457.74 1847.01 5530.65 1872.35
- 5587.03 1908.76 5621.76 1985.39 5591.99 2064.54 5597.06 2125.93
- 5602.07 2182.25 5639.62 2238.24 5713.80 2264.03 5767.63 2319.57
- 5827.71 2390.06 5839.46 2468.92 5819.72 2520.92 5785.03 2575.32
- 5715.14 2613.97 5672.39 2666.16 5634.80 2729.30 5619.08 2780.14
- 5617.75 2824.81 5618.42 2875.29 5640.02 2945.10 5626.75 3009.18
- 5601.38 3064.72 5548.11 3100.91 5493.44 3100.87 5417.46 3095.28
- 5312.76 3050.45 5221.70 3028.15 5116.22 3004.13 5037.08 2998.77
- 4960.74 3001.05 4890.18 3018.18 4813.08 3062.58 4740.99 3090.16
- 4653.92 3124.08 4563.29 3134.98 4455.48 3148.97 4365.32 3088.89
- 4335.77 3021.65 4334.45 2948.57 4371.92 2904.51 4397.31 2830.60
- 4452.05 2722.24 4423.38 2622.57 4370.49 2591.25 4327.34 2554.92
- 4270.19 2514.48 4235.31 2493.04 4210.46 2482.59 4179.68 2461.16
-4 0 -1 0 0 16 10 0.0000000 4 150 1260 4350 2400 Class Membership\001
-4 0 -1 0 0 16 10 0.0000000 4 120 765 4575 2625 Determiner\001
--6
-1 3 0 1 -1 0 0 0 20 0.0000000 1 0.000 5101 5100 75 75 5101 5100 5176 5175
-1 3 0 1 -1 0 0 0 20 0.0000000 1 0.000 5775 4800 75 75 5775 4800 5850 4875
-1 3 0 1 -1 0 0 0 20 0.0000000 1 0.000 5925 4275 75 75 5925 4275 6000 4350
-1 3 0 1 -1 0 0 0 20 0.0000000 1 0.000 6750 1650 75 75 6750 1650 6825 1725
-1 3 0 1 -1 0 0 0 20 0.0000000 1 0.000 5100 3750 75 75 5100 3750 5175 3825
-1 3 0 1 -1 0 0 0 20 0.0000000 1 0.000 4275 3975 75 75 4275 3975 4350 4050
-1 3 0 1 -1 0 0 0 20 0.0000000 1 0.000 1575 4875 75 75 1575 4875 1650 4950
-1 3 0 1 -1 0 0 0 20 0.0000000 1 0.000 750 4875 75 75 750 4875 825 4950
-1 3 0 1 -1 0 0 0 20 0.0000000 1 0.000 2325 5550 75 75 2325 5550 2400 5625
-1 3 0 1 -1 0 0 0 20 0.0000000 1 0.000 3375 5550 75 75 3375 5550 3450 5625
-1 3 0 1 -1 0 0 0 20 0.0000000 1 0.000 6225 1800 75 75 6225 1800 6300 1875
-2 1 0 1 -1 7 0 0 20 0.000 0 0 -1 1 0 2
- 1 1 1.00 60.00 120.00
- 2475 900 3150 750
-2 1 0 1 -1 7 0 0 20 0.000 0 0 -1 1 0 2
- 1 1 1.00 60.00 120.00
- 5775 750 5100 750
-2 1 0 1 -1 7 0 0 20 0.000 0 0 -1 1 0 2
- 1 1 1.00 60.00 120.00
- 750 3300 975 1725
-2 1 0 1 -1 7 0 0 20 0.000 0 0 -1 0 0 2
- 6750 1650 6900 1875
-2 1 0 1 -1 7 0 0 20 0.000 0 0 -1 0 0 2
- 5925 4275 6450 4125
-2 1 0 1 -1 7 0 0 20 0.000 0 0 -1 0 0 2
- 5775 4800 6525 5400
-2 1 0 1 -1 7 0 0 20 0.000 0 0 -1 0 0 2
- 750 4800 900 6525
-2 1 0 1 -1 7 0 0 20 0.000 0 0 -1 0 0 2
- 1575 4875 2400 6675
-2 1 0 1 -1 7 0 0 20 0.000 0 0 -1 1 0 2
- 1 1 1.00 60.00 120.00
- 2400 2400 2100 1650
-2 1 0 1 -1 7 0 0 20 0.000 0 0 -1 1 0 2
- 1 1 1.00 60.00 120.00
- 2250 4200 1650 1650
-2 1 0 1 -1 7 0 0 20 0.000 0 0 -1 0 0 2
- 4275 3975 3900 3675
-2 1 0 1 -1 7 0 0 20 0.000 0 0 -1 1 0 2
- 1 1 1.00 60.00 120.00
- 4200 2025 2250 1350
-2 1 0 1 -1 7 0 0 20 0.000 0 0 -1 0 0 2
- 4800 3150 5100 3750
-2 1 0 1 -1 7 0 0 20 0.000 0 0 -1 0 0 2
- 5100 5100 5250 5850
-2 1 0 1 -1 7 0 0 20 0.000 0 0 -1 0 0 2
- 2325 5550 1650 6600
-2 1 0 1 -1 7 0 0 20 0.000 0 0 -1 0 0 2
- 3375 5550 3450 6600
-2 1 0 1 -1 7 0 0 20 0.000 0 0 -1 0 0 2
- 6225 1800 5625 3750
Copied: branches/daly/version9/doc/manual/figs/sm2small.fig (from rev 254, branches/daly/version9/doc/manual/figs/sm2.fig)
===================================================================
--- branches/daly/version9/doc/manual/figs/sm2small.fig (rev 0)
+++ branches/daly/version9/doc/manual/figs/sm2small.fig 2007-05-24 18:12:08 UTC (rev 255)
@@ -0,0 +1,451 @@
+#FIG 3.1
+Landscape
+Center
+Inches
+1200 2
+6 3225 75 5025 1500
+3 3 1 1 -1 7 2 0 -1 4.000 0 0 0 36
+ 3324 788 3241 713 3249 548 3368 451 3533 293 3616 158
+ 3736 106 3953 151 4096 196 4269 211 4456 173 4621 173
+ 4726 256 4718 413 4741 518 4861 601 4958 751 4928 856
+ 4816 953 4748 1073 4741 1156 4756 1291 4696 1396 4591 1411
+ 4389 1351 4193 1313 4051 1321 3901 1388 3736 1441 3526 1426
+ 3458 1291 3503 1193 3556 968 3473 886 3368 811 3324 788
+ 3333.46 794.59 3302.68 773.16 3253.05 742.00 3223.21 670.18
+ 3228.49 588.61 3268.06 510.25 3341.74 474.21 3407.07 416.47
+ 3499.67 334.29 3556.12 264.35 3585.68 184.29 3641.03 136.30
+ 3703.02 109.38 3791.88 100.27 3903.99 138.24 3986.15 159.63
+ 4062.02 189.26 4135.36 203.80 4228.53 213.31 4313.48 208.46
+ 4412.22 177.40 4493.85 169.19 4580.74 159.01 4653.65 184.35
+ 4710.03 220.76 4744.76 297.39 4714.99 376.54 4720.06 437.93
+ 4725.07 494.25 4762.62 550.24 4836.80 576.03 4890.63 631.57
+ 4950.71 702.06 4962.46 780.92 4942.72 832.92 4908.03 887.32
+ 4838.14 925.97 4795.39 978.16 4757.80 1041.30 4742.08 1092.14
+ 4740.75 1136.81 4741.42 1187.29 4763.02 1257.10 4749.75 1321.18
+ 4724.38 1376.72 4671.11 1412.91 4616.44 1412.87 4540.46 1407.28
+ 4435.76 1362.45 4344.70 1340.15 4239.22 1316.13 4160.08 1310.77
+ 4083.74 1313.05 4013.18 1330.18 3936.08 1374.58 3863.99 1402.16
+ 3776.92 1436.08 3686.29 1446.98 3578.48 1460.97 3488.32 1400.89
+ 3458.77 1333.65 3457.45 1260.57 3494.92 1216.51 3520.31 1142.60
+ 3575.05 1034.24 3546.38 934.57 3493.49 903.25 3450.34 866.92
+ 3393.19 826.48 3358.31 805.04 3333.46 794.59 3302.68 773.16
+4 0 -1 0 0 16 10 0.0000000 4 150 1290 3451 751 BaseRegObjectRef\001
+-6
+6 5850 225 7650 1650
+3 3 1 1 -1 7 2 0 -1 4.000 0 0 0 36
+ 5964 983 5881 908 5889 743 6008 646 6173 488 6256 353
+ 6376 301 6593 346 6736 391 6909 406 7096 368 7261 368
+ 7366 451 7358 608 7381 713 7501 796 7598 946 7568 1051
+ 7456 1148 7388 1268 7381 1351 7396 1486 7336 1591 7231 1606
+ 7029 1546 6833 1508 6691 1516 6541 1583 6376 1636 6166 1621
+ 6098 1486 6143 1388 6196 1163 6113 1081 6008 1006 5964 983
+ 5973.46 989.59 5942.68 968.16 5893.05 937.00 5863.21 865.18
+ 5868.49 783.61 5908.06 705.25 5981.74 669.21 6047.07 611.47
+ 6139.67 529.29 6196.12 459.35 6225.68 379.29 6281.03 331.30
+ 6343.02 304.38 6431.88 295.27 6543.99 333.24 6626.15 354.63
+ 6702.02 384.26 6775.36 398.80 6868.53 408.31 6953.48 403.46
+ 7052.22 372.40 7133.85 364.19 7220.74 354.01 7293.65 379.35
+ 7350.03 415.76 7384.76 492.39 7354.99 571.54 7360.06 632.93
+ 7365.07 689.25 7402.62 745.24 7476.80 771.03 7530.63 826.57
+ 7590.71 897.06 7602.46 975.92 7582.72 1027.92 7548.03 1082.32
+ 7478.14 1120.97 7435.39 1173.16 7397.80 1236.30 7382.08 1287.14
+ 7380.75 1331.81 7381.42 1382.29 7403.02 1452.10 7389.75 1516.18
+ 7364.38 1571.72 7311.11 1607.91 7256.44 1607.87 7180.46 1602.28
+ 7075.76 1557.45 6984.70 1535.15 6879.22 1511.13 6800.08 1505.77
+ 6723.74 1508.05 6653.18 1525.18 6576.08 1569.58 6503.99 1597.16
+ 6416.92 1631.08 6326.29 1641.98 6218.48 1655.97 6128.32 1595.89
+ 6098.77 1528.65 6097.45 1455.57 6134.92 1411.51 6160.31 1337.60
+ 6215.05 1229.24 6186.38 1129.57 6133.49 1098.25 6090.34 1061.92
+ 6033.19 1021.48 5998.31 1000.04 5973.46 989.59 5942.68 968.16
+4 0 -1 0 0 16 10 0.0000000 4 150 735 6301 826 HolderRep\001
+-6
+6 6450 1875 8250 3300
+3 3 1 1 -1 7 2 0 -1 4.000 0 0 0 36
+ 6609 2603 6526 2528 6534 2363 6653 2266 6818 2108 6901 1973
+ 7021 1921 7238 1966 7381 2011 7554 2026 7741 1988 7906 1988
+ 8011 2071 8003 2228 8026 2333 8146 2416 8243 2566 8213 2671
+ 8101 2768 8033 2888 8026 2971 8041 3106 7981 3211 7876 3226
+ 7674 3166 7478 3128 7336 3136 7186 3203 7021 3256 6811 3241
+ 6743 3106 6788 3008 6841 2783 6758 2701 6653 2626 6609 2603
+ 6618.46 2609.59 6587.68 2588.16 6538.05 2557.00 6508.21 2485.18
+ 6513.49 2403.61 6553.06 2325.25 6626.74 2289.21 6692.07 2231.47
+ 6784.67 2149.29 6841.12 2079.35 6870.68 1999.29 6926.03 1951.30
+ 6988.02 1924.38 7076.88 1915.27 7188.99 1953.24 7271.15 1974.63
+ 7347.02 2004.26 7420.36 2018.80 7513.53 2028.31 7598.48 2023.46
+ 7697.22 1992.40 7778.85 1984.19 7865.74 1974.01 7938.65 1999.35
+ 7995.03 2035.76 8029.76 2112.39 7999.99 2191.54 8005.06 2252.93
+ 8010.07 2309.25 8047.62 2365.24 8121.80 2391.03 8175.63 2446.57
+ 8235.71 2517.06 8247.46 2595.92 8227.72 2647.92 8193.03 2702.32
+ 8123.14 2740.97 8080.39 2793.16 8042.80 2856.30 8027.08 2907.14
+ 8025.75 2951.81 8026.42 3002.29 8048.02 3072.10 8034.75 3136.18
+ 8009.38 3191.72 7956.11 3227.91 7901.44 3227.87 7825.46 3222.28
+ 7720.76 3177.45 7629.70 3155.15 7524.22 3131.13 7445.08 3125.77
+ 7368.74 3128.05 7298.18 3145.18 7221.08 3189.58 7148.99 3217.16
+ 7061.92 3251.08 6971.29 3261.98 6863.48 3275.97 6773.32 3215.89
+ 6743.77 3148.65 6742.45 3075.57 6779.92 3031.51 6805.31 2957.60
+ 6860.05 2849.24 6831.38 2749.57 6778.49 2718.25 6735.34 2681.92
+ 6678.19 2641.48 6643.31 2620.04 6618.46 2609.59 6587.68 2588.16
+4 0 -1 0 0 16 10 0.0000000 4 150 435 6976 2476 Group\001
+-6
+6 74 3374 1949 4799
+3 3 1 1 -1 7 2 0 -1 4.000 0 0 0 36
+ 241 4095 158 4020 166 3855 285 3758 450 3600 533 3465
+ 653 3413 870 3458 1013 3503 1186 3518 1373 3480 1538 3480
+ 1643 3563 1635 3720 1658 3825 1778 3908 1875 4058 1845 4163
+ 1733 4260 1665 4380 1658 4463 1673 4598 1613 4703 1508 4718
+ 1306 4658 1110 4620 968 4628 818 4695 653 4748 443 4733
+ 375 4598 420 4500 473 4275 390 4193 285 4118 241 4095
+ 250.46 4101.59 219.68 4080.16 170.05 4049.00 140.21 3977.18
+ 145.49 3895.61 185.06 3817.25 258.74 3781.21 324.07 3723.47
+ 416.67 3641.29 473.12 3571.35 502.68 3491.29 558.03 3443.30
+ 620.02 3416.38 708.88 3407.27 820.99 3445.24 903.15 3466.63
+ 979.02 3496.26 1052.36 3510.80 1145.53 3520.31 1230.48 3515.46
+ 1329.22 3484.40 1410.85 3476.19 1497.74 3466.01 1570.65 3491.35
+ 1627.03 3527.76 1661.76 3604.39 1631.99 3683.54 1637.06 3744.93
+ 1642.07 3801.25 1679.62 3857.24 1753.80 3883.03 1807.63 3938.57
+ 1867.71 4009.06 1879.46 4087.92 1859.72 4139.92 1825.03 4194.32
+ 1755.14 4232.97 1712.39 4285.16 1674.80 4348.30 1659.08 4399.14
+ 1657.75 4443.81 1658.42 4494.29 1680.02 4564.10 1666.75 4628.18
+ 1641.38 4683.72 1588.11 4719.91 1533.44 4719.87 1457.46 4714.28
+ 1352.76 4669.45 1261.70 4647.15 1156.22 4623.13 1077.08 4617.77
+ 1000.74 4620.05 930.18 4637.18 853.08 4681.58 780.99 4709.16
+ 693.92 4743.08 603.29 4753.98 495.48 4767.97 405.32 4707.89
+ 375.77 4640.65 374.45 4567.57 411.92 4523.51 437.31 4449.60
+ 492.05 4341.24 463.38 4241.57 410.49 4210.25 367.34 4173.92
+ 310.19 4133.48 275.31 4112.04 250.46 4101.59 219.68 4080.16
+4 0 -1 0 0 16 10 0.0000000 4 150 1050 450 3975 AbelianToolRep\001
+-6
+6 600 225 2400 1650
+3 3 1 1 -1 7 2 0 -1 4.000 0 0 0 36
+ 714 938 631 863 639 698 758 601 923 443 1006 308
+ 1126 256 1343 301 1486 346 1659 361 1846 323 2011 323
+ 2116 406 2108 563 2131 668 2251 751 2348 901 2318 1006
+ 2206 1103 2138 1223 2131 1306 2146 1441 2086 1546 1981 1561
+ 1779 1501 1583 1463 1441 1471 1291 1538 1126 1591 916 1576
+ 848 1441 893 1343 946 1118 863 1036 758 961 714 938
+ 723.46 944.59 692.68 923.16 643.05 892.00 613.21 820.18
+ 618.49 738.61 658.06 660.25 731.74 624.21 797.07 566.47
+ 889.67 484.29 946.12 414.35 975.68 334.29 1031.03 286.30
+ 1093.02 259.38 1181.88 250.27 1293.99 288.24 1376.15 309.63
+ 1452.02 339.26 1525.36 353.80 1618.53 363.31 1703.48 358.46
+ 1802.22 327.40 1883.85 319.19 1970.74 309.01 2043.65 334.35
+ 2100.03 370.76 2134.76 447.39 2104.99 526.54 2110.06 587.93
+ 2115.07 644.25 2152.62 700.24 2226.80 726.03 2280.63 781.57
+ 2340.71 852.06 2352.46 930.92 2332.72 982.92 2298.03 1037.32
+ 2228.14 1075.97 2185.39 1128.16 2147.80 1191.30 2132.08 1242.14
+ 2130.75 1286.81 2131.42 1337.29 2153.02 1407.10 2139.75 1471.18
+ 2114.38 1526.72 2061.11 1562.91 2006.44 1562.87 1930.46 1557.28
+ 1825.76 1512.45 1734.70 1490.15 1629.22 1466.13 1550.08 1460.77
+ 1473.74 1463.05 1403.18 1480.18 1326.08 1524.58 1253.99 1552.16
+ 1166.92 1586.08 1076.29 1596.98 968.48 1610.97 878.32 1550.89
+ 848.77 1483.65 847.45 1410.57 884.92 1366.51 910.31 1292.60
+ 965.05 1184.24 936.38 1084.57 883.49 1053.25 840.34 1016.92
+ 783.19 976.48 748.31 955.04 723.46 944.59 692.68 923.16
+4 0 -1 0 0 16 10 0.0000000 4 150 1155 901 826 ActiveObjectRep\001
+-6
+6 6374 5174 8174 6599
+3 3 1 1 -1 7 2 0 -1 4.000 0 0 0 36
+ 6523 5880 6440 5805 6448 5640 6567 5543 6732 5385 6815 5250
+ 6935 5198 7152 5243 7295 5288 7468 5303 7655 5265 7820 5265
+ 7925 5348 7917 5505 7940 5610 8060 5693 8157 5843 8127 5948
+ 8015 6045 7947 6165 7940 6248 7955 6383 7895 6488 7790 6503
+ 7588 6443 7392 6405 7250 6413 7100 6480 6935 6533 6725 6518
+ 6657 6383 6702 6285 6755 6060 6672 5978 6567 5903 6523 5880
+ 6532.46 5886.59 6501.68 5865.16 6452.05 5834.00 6422.21 5762.18
+ 6427.49 5680.61 6467.06 5602.25 6540.74 5566.21 6606.07 5508.47
+ 6698.67 5426.29 6755.12 5356.35 6784.68 5276.29 6840.03 5228.30
+ 6902.02 5201.38 6990.88 5192.27 7102.99 5230.24 7185.15 5251.63
+ 7261.02 5281.26 7334.36 5295.80 7427.53 5305.31 7512.48 5300.46
+ 7611.22 5269.40 7692.85 5261.19 7779.74 5251.01 7852.65 5276.35
+ 7909.03 5312.76 7943.76 5389.39 7913.99 5468.54 7919.06 5529.93
+ 7924.07 5586.25 7961.62 5642.24 8035.80 5668.03 8089.63 5723.57
+ 8149.71 5794.06 8161.46 5872.92 8141.72 5924.92 8107.03 5979.32
+ 8037.14 6017.97 7994.39 6070.16 7956.80 6133.30 7941.08 6184.14
+ 7939.75 6228.81 7940.42 6279.29 7962.02 6349.10 7948.75 6413.18
+ 7923.38 6468.72 7870.11 6504.91 7815.44 6504.87 7739.46 6499.28
+ 7634.76 6454.45 7543.70 6432.15 7438.22 6408.13 7359.08 6402.77
+ 7282.74 6405.05 7212.18 6422.18 7135.08 6466.58 7062.99 6494.16
+ 6975.92 6528.08 6885.29 6538.98 6777.48 6552.97 6687.32 6492.89
+ 6657.77 6425.65 6656.45 6352.57 6693.92 6308.51 6719.31 6234.60
+ 6774.05 6126.24 6745.38 6026.57 6692.49 5995.25 6649.34 5958.92
+ 6592.19 5918.48 6557.31 5897.04 6532.46 5886.59 6501.68 5865.16
+4 0 -1 0 0 16 10 0.0000000 4 120 720 6825 5700 DataStore\001
+-6
+6 6449 3449 8249 4874
+3 3 1 1 -1 7 2 0 -1 4.000 0 0 0 36
+ 6596 4183 6513 4108 6521 3943 6640 3846 6805 3688 6888 3553
+ 7008 3501 7225 3546 7368 3591 7541 3606 7728 3568 7893 3568
+ 7998 3651 7990 3808 8013 3913 8133 3996 8230 4146 8200 4251
+ 8088 4348 8020 4468 8013 4551 8028 4686 7968 4791 7863 4806
+ 7661 4746 7465 4708 7323 4716 7173 4783 7008 4836 6798 4821
+ 6730 4686 6775 4588 6828 4363 6745 4281 6640 4206 6596 4183
+ 6605.46 4189.59 6574.68 4168.16 6525.05 4137.00 6495.21 4065.18
+ 6500.49 3983.61 6540.06 3905.25 6613.74 3869.21 6679.07 3811.47
+ 6771.67 3729.29 6828.12 3659.35 6857.68 3579.29 6913.03 3531.30
+ 6975.02 3504.38 7063.88 3495.27 7175.99 3533.24 7258.15 3554.63
+ 7334.02 3584.26 7407.36 3598.80 7500.53 3608.31 7585.48 3603.46
+ 7684.22 3572.40 7765.85 3564.19 7852.74 3554.01 7925.65 3579.35
+ 7982.03 3615.76 8016.76 3692.39 7986.99 3771.54 7992.06 3832.93
+ 7997.07 3889.25 8034.62 3945.24 8108.80 3971.03 8162.63 4026.57
+ 8222.71 4097.06 8234.46 4175.92 8214.72 4227.92 8180.03 4282.32
+ 8110.14 4320.97 8067.39 4373.16 8029.80 4436.30 8014.08 4487.14
+ 8012.75 4531.81 8013.42 4582.29 8035.02 4652.10 8021.75 4716.18
+ 7996.38 4771.72 7943.11 4807.91 7888.44 4807.87 7812.46 4802.28
+ 7707.76 4757.45 7616.70 4735.15 7511.22 4711.13 7432.08 4705.77
+ 7355.74 4708.05 7285.18 4725.18 7208.08 4769.58 7135.99 4797.16
+ 7048.92 4831.08 6958.29 4841.98 6850.48 4855.97 6760.32 4795.89
+ 6730.77 4728.65 6729.45 4655.57 6766.92 4611.51 6792.31 4537.60
+ 6847.05 4429.24 6818.38 4329.57 6765.49 4298.25 6722.34 4261.92
+ 6665.19 4221.48 6630.31 4200.04 6605.46 4189.59 6574.68 4168.16
+4 0 -1 0 0 16 10 0.0000000 4 120 255 6975 4050 ISS\001
+-6
+6 4125 3750 5925 5175
+3 3 1 1 -1 7 2 0 -1 4.000 0 0 0 36
+ 4250 4468 4167 4393 4175 4228 4294 4131 4459 3973 4542 3838
+ 4662 3786 4879 3831 5022 3876 5195 3891 5382 3853 5547 3853
+ 5652 3936 5644 4093 5667 4198 5787 4281 5884 4431 5854 4536
+ 5742 4633 5674 4753 5667 4836 5682 4971 5622 5076 5517 5091
+ 5315 5031 5119 4993 4977 5001 4827 5068 4662 5121 4452 5106
+ 4384 4971 4429 4873 4482 4648 4399 4566 4294 4491 4250 4468
+ 4259.46 4474.59 4228.68 4453.16 4179.05 4422.00 4149.21 4350.18
+ 4154.49 4268.61 4194.06 4190.25 4267.74 4154.21 4333.07 4096.47
+ 4425.67 4014.29 4482.12 3944.35 4511.68 3864.29 4567.03 3816.30
+ 4629.02 3789.38 4717.88 3780.27 4829.99 3818.24 4912.15 3839.63
+ 4988.02 3869.26 5061.36 3883.80 5154.53 3893.31 5239.48 3888.46
+ 5338.22 3857.40 5419.85 3849.19 5506.74 3839.01 5579.65 3864.35
+ 5636.03 3900.76 5670.76 3977.39 5640.99 4056.54 5646.06 4117.93
+ 5651.07 4174.25 5688.62 4230.24 5762.80 4256.03 5816.63 4311.57
+ 5876.71 4382.06 5888.46 4460.92 5868.72 4512.92 5834.03 4567.32
+ 5764.14 4605.97 5721.39 4658.16 5683.80 4721.30 5668.08 4772.14
+ 5666.75 4816.81 5667.42 4867.29 5689.02 4937.10 5675.75 5001.18
+ 5650.38 5056.72 5597.11 5092.91 5542.44 5092.87 5466.46 5087.28
+ 5361.76 5042.45 5270.70 5020.15 5165.22 4996.13 5086.08 4990.77
+ 5009.74 4993.05 4939.18 5010.18 4862.08 5054.58 4789.99 5082.16
+ 4702.92 5116.08 4612.29 5126.98 4504.48 5140.97 4414.32 5080.89
+ 4384.77 5013.65 4383.45 4940.57 4420.92 4896.51 4446.31 4822.60
+ 4501.05 4714.24 4472.38 4614.57 4419.49 4583.25 4376.34 4546.92
+ 4319.19 4506.48 4284.31 4485.04 4259.46 4474.59 4228.68 4453.16
+4 0 -1 0 0 16 10 0.0000000 4 120 480 4576 4351 FPGIC\001
+-6
+6 2099 6599 3899 8024
+3 3 1 1 -1 7 2 0 -1 4.000 0 0 0 36
+ 2258 7312 2175 7237 2183 7072 2302 6975 2467 6817 2550 6682
+ 2670 6630 2887 6675 3030 6720 3203 6735 3390 6697 3555 6697
+ 3660 6780 3652 6937 3675 7042 3795 7125 3892 7275 3862 7380
+ 3750 7477 3682 7597 3675 7680 3690 7815 3630 7920 3525 7935
+ 3323 7875 3127 7837 2985 7845 2835 7912 2670 7965 2460 7950
+ 2392 7815 2437 7717 2490 7492 2407 7410 2302 7335 2258 7312
+ 2267.46 7318.59 2236.68 7297.16 2187.05 7266.00 2157.21 7194.18
+ 2162.49 7112.61 2202.06 7034.25 2275.74 6998.21 2341.07 6940.47
+ 2433.67 6858.29 2490.12 6788.35 2519.68 6708.29 2575.03 6660.30
+ 2637.02 6633.38 2725.88 6624.27 2837.99 6662.24 2920.15 6683.63
+ 2996.02 6713.26 3069.36 6727.80 3162.53 6737.31 3247.48 6732.46
+ 3346.22 6701.40 3427.85 6693.19 3514.74 6683.01 3587.65 6708.35
+ 3644.03 6744.76 3678.76 6821.39 3648.99 6900.54 3654.06 6961.93
+ 3659.07 7018.25 3696.62 7074.24 3770.80 7100.03 3824.63 7155.57
+ 3884.71 7226.06 3896.46 7304.92 3876.72 7356.92 3842.03 7411.32
+ 3772.14 7449.97 3729.39 7502.16 3691.80 7565.30 3676.08 7616.14
+ 3674.75 7660.81 3675.42 7711.29 3697.02 7781.10 3683.75 7845.18
+ 3658.38 7900.72 3605.11 7936.91 3550.44 7936.87 3474.46 7931.28
+ 3369.76 7886.45 3278.70 7864.15 3173.22 7840.13 3094.08 7834.77
+ 3017.74 7837.05 2947.18 7854.18 2870.08 7898.58 2797.99 7926.16
+ 2710.92 7960.08 2620.29 7970.98 2512.48 7984.97 2422.32 7924.89
+ 2392.77 7857.65 2391.45 7784.57 2428.92 7740.51 2454.31 7666.60
+ 2509.05 7558.24 2480.38 7458.57 2427.49 7427.25 2384.34 7390.92
+ 2327.19 7350.48 2292.31 7329.04 2267.46 7318.59 2236.68 7297.16
+4 0 -1 0 0 16 10 0.0000000 4 120 570 2550 7200 Account\001
+-6
+6 2025 4050 3900 5475
+3 3 1 1 -1 7 2 0 -1 4.000 0 0 0 36
+ 2192 4771 2109 4696 2117 4531 2236 4434 2401 4276 2484 4141
+ 2604 4089 2821 4134 2964 4179 3137 4194 3324 4156 3489 4156
+ 3594 4239 3586 4396 3609 4501 3729 4584 3826 4734 3796 4839
+ 3684 4936 3616 5056 3609 5139 3624 5274 3564 5379 3459 5394
+ 3257 5334 3061 5296 2919 5304 2769 5371 2604 5424 2394 5409
+ 2326 5274 2371 5176 2424 4951 2341 4869 2236 4794 2192 4771
+ 2201.46 4777.59 2170.68 4756.16 2121.05 4725.00 2091.21 4653.18
+ 2096.49 4571.61 2136.06 4493.25 2209.74 4457.21 2275.07 4399.47
+ 2367.67 4317.29 2424.12 4247.35 2453.68 4167.29 2509.03 4119.30
+ 2571.02 4092.38 2659.88 4083.27 2771.99 4121.24 2854.15 4142.63
+ 2930.02 4172.26 3003.36 4186.80 3096.53 4196.31 3181.48 4191.46
+ 3280.22 4160.40 3361.85 4152.19 3448.74 4142.01 3521.65 4167.35
+ 3578.03 4203.76 3612.76 4280.39 3582.99 4359.54 3588.06 4420.93
+ 3593.07 4477.25 3630.62 4533.24 3704.80 4559.03 3758.63 4614.57
+ 3818.71 4685.06 3830.46 4763.92 3810.72 4815.92 3776.03 4870.32
+ 3706.14 4908.97 3663.39 4961.16 3625.80 5024.30 3610.08 5075.14
+ 3608.75 5119.81 3609.42 5170.29 3631.02 5240.10 3617.75 5304.18
+ 3592.38 5359.72 3539.11 5395.91 3484.44 5395.87 3408.46 5390.28
+ 3303.76 5345.45 3212.70 5323.15 3107.22 5299.13 3028.08 5293.77
+ 2951.74 5296.05 2881.18 5313.18 2804.08 5357.58 2731.99 5385.16
+ 2644.92 5419.08 2554.29 5429.98 2446.48 5443.97 2356.32 5383.89
+ 2326.77 5316.65 2325.45 5243.57 2362.92 5199.51 2388.31 5125.60
+ 2443.05 5017.24 2414.38 4917.57 2361.49 4886.25 2318.34 4849.92
+ 2261.19 4809.48 2226.31 4788.04 2201.46 4777.59 2170.68 4756.16
+4 0 -1 0 0 16 10 0.0000000 4 150 1275 2326 4726 WordProbToolRep\001
+-6
+6 2250 2250 4050 3675
+3 3 1 1 -1 7 2 0 -1 4.000 0 0 0 36
+ 2394 2971 2311 2896 2319 2731 2438 2634 2603 2476 2686 2341
+ 2806 2289 3023 2334 3166 2379 3339 2394 3526 2356 3691 2356
+ 3796 2439 3788 2596 3811 2701 3931 2784 4028 2934 3998 3039
+ 3886 3136 3818 3256 3811 3339 3826 3474 3766 3579 3661 3594
+ 3459 3534 3263 3496 3121 3504 2971 3571 2806 3624 2596 3609
+ 2528 3474 2573 3376 2626 3151 2543 3069 2438 2994 2394 2971
+ 2403.46 2977.59 2372.68 2956.16 2323.05 2925.00 2293.21 2853.18
+ 2298.49 2771.61 2338.06 2693.25 2411.74 2657.21 2477.07 2599.47
+ 2569.67 2517.29 2626.12 2447.35 2655.68 2367.29 2711.03 2319.30
+ 2773.02 2292.38 2861.88 2283.27 2973.99 2321.24 3056.15 2342.63
+ 3132.02 2372.26 3205.36 2386.80 3298.53 2396.31 3383.48 2391.46
+ 3482.22 2360.40 3563.85 2352.19 3650.74 2342.01 3723.65 2367.35
+ 3780.03 2403.76 3814.76 2480.39 3784.99 2559.54 3790.06 2620.93
+ 3795.07 2677.25 3832.62 2733.24 3906.80 2759.03 3960.63 2814.57
+ 4020.71 2885.06 4032.46 2963.92 4012.72 3015.92 3978.03 3070.32
+ 3908.14 3108.97 3865.39 3161.16 3827.80 3224.30 3812.08 3275.14
+ 3810.75 3319.81 3811.42 3370.29 3833.02 3440.10 3819.75 3504.18
+ 3794.38 3559.72 3741.11 3595.91 3686.44 3595.87 3610.46 3590.28
+ 3505.76 3545.45 3414.70 3523.15 3309.22 3499.13 3230.08 3493.77
+ 3153.74 3496.05 3083.18 3513.18 3006.08 3557.58 2933.99 3585.16
+ 2846.92 3619.08 2756.29 3629.98 2648.48 3643.97 2558.32 3583.89
+ 2528.77 3516.65 2527.45 3443.57 2564.92 3399.51 2590.31 3325.60
+ 2645.05 3217.24 2616.38 3117.57 2563.49 3086.25 2520.34 3049.92
+ 2463.19 3009.48 2428.31 2988.04 2403.46 2977.59 2372.68 2956.16
+4 0 -1 0 0 16 10 0.0000000 4 150 900 2701 2851 Computation\001
+4 0 -1 0 0 16 10 0.0000000 4 150 600 2701 3076 Manager\001
+-6
+6 4725 6000 6525 7425
+3 3 1 1 -1 7 2 0 -1 4.000 0 0 0 36
+ 4824 6713 4741 6638 4749 6473 4868 6376 5033 6218 5116 6083
+ 5236 6031 5453 6076 5596 6121 5769 6136 5956 6098 6121 6098
+ 6226 6181 6218 6338 6241 6443 6361 6526 6458 6676 6428 6781
+ 6316 6878 6248 6998 6241 7081 6256 7216 6196 7321 6091 7336
+ 5889 7276 5693 7238 5551 7246 5401 7313 5236 7366 5026 7351
+ 4958 7216 5003 7118 5056 6893 4973 6811 4868 6736 4824 6713
+ 4833.46 6719.59 4802.68 6698.16 4753.05 6667.00 4723.21 6595.18
+ 4728.49 6513.61 4768.06 6435.25 4841.74 6399.21 4907.07 6341.47
+ 4999.67 6259.29 5056.12 6189.35 5085.68 6109.29 5141.03 6061.30
+ 5203.02 6034.38 5291.88 6025.27 5403.99 6063.24 5486.15 6084.63
+ 5562.02 6114.26 5635.36 6128.80 5728.53 6138.31 5813.48 6133.46
+ 5912.22 6102.40 5993.85 6094.19 6080.74 6084.01 6153.65 6109.35
+ 6210.03 6145.76 6244.76 6222.39 6214.99 6301.54 6220.06 6362.93
+ 6225.07 6419.25 6262.62 6475.24 6336.80 6501.03 6390.63 6556.57
+ 6450.71 6627.06 6462.46 6705.92 6442.72 6757.92 6408.03 6812.32
+ 6338.14 6850.97 6295.39 6903.16 6257.80 6966.30 6242.08 7017.14
+ 6240.75 7061.81 6241.42 7112.29 6263.02 7182.10 6249.75 7246.18
+ 6224.38 7301.72 6171.11 7337.91 6116.44 7337.87 6040.46 7332.28
+ 5935.76 7287.45 5844.70 7265.15 5739.22 7241.13 5660.08 7235.77
+ 5583.74 7238.05 5513.18 7255.18 5436.08 7299.58 5363.99 7327.16
+ 5276.92 7361.08 5186.29 7371.98 5078.48 7385.97 4988.32 7325.89
+ 4958.77 7258.65 4957.45 7185.57 4994.92 7141.51 5020.31 7067.60
+ 5075.05 6959.24 5046.38 6859.57 4993.49 6828.25 4950.34 6791.92
+ 4893.19 6751.48 4858.31 6730.04 4833.46 6719.59 4802.68 6698.16
+4 0 -1 0 0 16 10 0.0000000 4 120 465 5176 6601 Broker\001
+-6
+6 149 6599 1949 8024
+3 3 1 1 -1 7 2 0 -1 4.000 0 0 0 36
+ 256 7312 173 7237 181 7072 300 6975 465 6817 548 6682
+ 668 6630 885 6675 1028 6720 1201 6735 1388 6697 1553 6697
+ 1658 6780 1650 6937 1673 7042 1793 7125 1890 7275 1860 7380
+ 1748 7477 1680 7597 1673 7680 1688 7815 1628 7920 1523 7935
+ 1321 7875 1125 7837 983 7845 833 7912 668 7965 458 7950
+ 390 7815 435 7717 488 7492 405 7410 300 7335 256 7312
+ 265.46 7318.59 234.68 7297.16 185.05 7266.00 155.21 7194.18
+ 160.49 7112.61 200.06 7034.25 273.74 6998.21 339.07 6940.47
+ 431.67 6858.29 488.12 6788.35 517.68 6708.29 573.03 6660.30
+ 635.02 6633.38 723.88 6624.27 835.99 6662.24 918.15 6683.63
+ 994.02 6713.26 1067.36 6727.80 1160.53 6737.31 1245.48 6732.46
+ 1344.22 6701.40 1425.85 6693.19 1512.74 6683.01 1585.65 6708.35
+ 1642.03 6744.76 1676.76 6821.39 1646.99 6900.54 1652.06 6961.93
+ 1657.07 7018.25 1694.62 7074.24 1768.80 7100.03 1822.63 7155.57
+ 1882.71 7226.06 1894.46 7304.92 1874.72 7356.92 1840.03 7411.32
+ 1770.14 7449.97 1727.39 7502.16 1689.80 7565.30 1674.08 7616.14
+ 1672.75 7660.81 1673.42 7711.29 1695.02 7781.10 1681.75 7845.18
+ 1656.38 7900.72 1603.11 7936.91 1548.44 7936.87 1472.46 7931.28
+ 1367.76 7886.45 1276.70 7864.15 1171.22 7840.13 1092.08 7834.77
+ 1015.74 7837.05 945.18 7854.18 868.08 7898.58 795.99 7926.16
+ 708.92 7960.08 618.29 7970.98 510.48 7984.97 420.32 7924.89
+ 390.77 7857.65 389.45 7784.57 426.92 7740.51 452.31 7666.60
+ 507.05 7558.24 478.38 7458.57 425.49 7427.25 382.34 7390.92
+ 325.19 7350.48 290.31 7329.04 265.46 7318.59 234.68 7297.16
+4 0 -1 0 0 16 10 0.0000000 4 120 945 525 7125 WordChecker\001
+4 0 -1 0 0 16 10 0.0000000 4 150 420 525 7350 Agent\001
+-6
+6 4049 1724 5849 3149
+3 3 1 1 -1 7 2 0 -1 4.000 0 0 0 36
+ 4201 2476 4118 2401 4126 2236 4245 2139 4410 1981 4493 1846
+ 4613 1794 4830 1839 4973 1884 5146 1899 5333 1861 5498 1861
+ 5603 1944 5595 2101 5618 2206 5738 2289 5835 2439 5805 2544
+ 5693 2641 5625 2761 5618 2844 5633 2979 5573 3084 5468 3099
+ 5266 3039 5070 3001 4928 3009 4778 3076 4613 3129 4403 3114
+ 4335 2979 4380 2881 4433 2656 4350 2574 4245 2499 4201 2476
+ 4210.46 2482.59 4179.68 2461.16 4130.05 2430.00 4100.21 2358.18
+ 4105.49 2276.61 4145.06 2198.25 4218.74 2162.21 4284.07 2104.47
+ 4376.67 2022.29 4433.12 1952.35 4462.68 1872.29 4518.03 1824.30
+ 4580.02 1797.38 4668.88 1788.27 4780.99 1826.24 4863.15 1847.63
+ 4939.02 1877.26 5012.36 1891.80 5105.53 1901.31 5190.48 1896.46
+ 5289.22 1865.40 5370.85 1857.19 5457.74 1847.01 5530.65 1872.35
+ 5587.03 1908.76 5621.76 1985.39 5591.99 2064.54 5597.06 2125.93
+ 5602.07 2182.25 5639.62 2238.24 5713.80 2264.03 5767.63 2319.57
+ 5827.71 2390.06 5839.46 2468.92 5819.72 2520.92 5785.03 2575.32
+ 5715.14 2613.97 5672.39 2666.16 5634.80 2729.30 5619.08 2780.14
+ 5617.75 2824.81 5618.42 2875.29 5640.02 2945.10 5626.75 3009.18
+ 5601.38 3064.72 5548.11 3100.91 5493.44 3100.87 5417.46 3095.28
+ 5312.76 3050.45 5221.70 3028.15 5116.22 3004.13 5037.08 2998.77
+ 4960.74 3001.05 4890.18 3018.18 4813.08 3062.58 4740.99 3090.16
+ 4653.92 3124.08 4563.29 3134.98 4455.48 3148.97 4365.32 3088.89
+ 4335.77 3021.65 4334.45 2948.57 4371.92 2904.51 4397.31 2830.60
+ 4452.05 2722.24 4423.38 2622.57 4370.49 2591.25 4327.34 2554.92
+ 4270.19 2514.48 4235.31 2493.04 4210.46 2482.59 4179.68 2461.16
+4 0 -1 0 0 16 10 0.0000000 4 150 1260 4350 2400 Class Membership\001
+4 0 -1 0 0 16 10 0.0000000 4 120 765 4575 2625 Determiner\001
+-6
+1 3 0 1 -1 0 0 0 20 0.0000000 1 0.000 5101 5100 75 75 5101 5100 5176 5175
+1 3 0 1 -1 0 0 0 20 0.0000000 1 0.000 5775 4800 75 75 5775 4800 5850 4875
+1 3 0 1 -1 0 0 0 20 0.0000000 1 0.000 5925 4275 75 75 5925 4275 6000 4350
+1 3 0 1 -1 0 0 0 20 0.0000000 1 0.000 6750 1650 75 75 6750 1650 6825 1725
+1 3 0 1 -1 0 0 0 20 0.0000000 1 0.000 5100 3750 75 75 5100 3750 5175 3825
+1 3 0 1 -1 0 0 0 20 0.0000000 1 0.000 4275 3975 75 75 4275 3975 4350 4050
+1 3 0 1 -1 0 0 0 20 0.0000000 1 0.000 1575 4875 75 75 1575 4875 1650 4950
+1 3 0 1 -1 0 0 0 20 0.0000000 1 0.000 750 4875 75 75 750 4875 825 4950
+1 3 0 1 -1 0 0 0 20 0.0000000 1 0.000 2325 5550 75 75 2325 5550 2400 5625
+1 3 0 1 -1 0 0 0 20 0.0000000 1 0.000 3375 5550 75 75 3375 5550 3450 5625
+1 3 0 1 -1 0 0 0 20 0.0000000 1 0.000 6225 1800 75 75 6225 1800 6300 1875
+2 1 0 1 -1 7 0 0 20 0.000 0 0 -1 1 0 2
+ 1 1 1.00 60.00 120.00
+ 2475 900 3150 750
+2 1 0 1 -1 7 0 0 20 0.000 0 0 -1 1 0 2
+ 1 1 1.00 60.00 120.00
+ 5775 750 5100 750
+2 1 0 1 -1 7 0 0 20 0.000 0 0 -1 1 0 2
+ 1 1 1.00 60.00 120.00
+ 750 3300 975 1725
+2 1 0 1 -1 7 0 0 20 0.000 0 0 -1 0 0 2
+ 6750 1650 6900 1875
+2 1 0 1 -1 7 0 0 20 0.000 0 0 -1 0 0 2
+ 5925 4275 6450 4125
+2 1 0 1 -1 7 0 0 20 0.000 0 0 -1 0 0 2
+ 5775 4800 6525 5400
+2 1 0 1 -1 7 0 0 20 0.000 0 0 -1 0 0 2
+ 750 4800 900 6525
+2 1 0 1 -1 7 0 0 20 0.000 0 0 -1 0 0 2
+ 1575 4875 2400 6675
+2 1 0 1 -1 7 0 0 20 0.000 0 0 -1 1 0 2
+ 1 1 1.00 60.00 120.00
+ 2400 2400 2100 1650
+2 1 0 1 -1 7 0 0 20 0.000 0 0 -1 1 0 2
+ 1 1 1.00 60.00 120.00
+ 2250 4200 1650 1650
+2 1 0 1 -1 7 0 0 20 0.000 0 0 -1 0 0 2
+ 4275 3975 3900 3675
+2 1 0 1 -1 7 0 0 20 0.000 0 0 -1 1 0 2
+ 1 1 1.00 60.00 120.00
+ 4200 2025 2250 1350
+2 1 0 1 -1 7 0 0 20 0.000 0 0 -1 0 0 2
+ 4800 3150 5100 3750
+2 1 0 1 -1 7 0 0 20 0.000 0 0 -1 0 0 2
+ 5100 5100 5250 5850
+2 1 0 1 -1 7 0 0 20 0.000 0 0 -1 0 0 2
+ 2325 5550 1650 6600
+2 1 0 1 -1 7 0 0 20 0.000 0 0 -1 0 0 2
+ 3375 5550 3450 6600
+2 1 0 1 -1 7 0 0 20 0.000 0 0 -1 0 0 2
+ 6225 1800 5625 3750
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <ybr...@us...> - 2007-05-24 18:10:01
|
Revision: 254
http://svn.sourceforge.net/magnus/?rev=254&view=rev
Author: ybryukhov
Date: 2007-05-24 11:09:57 -0700 (Thu, 24 May 2007)
Log Message:
-----------
and more
Added Paths:
-----------
branches/daly/version5/front_end/gdb/h2small
Removed Paths:
-------------
branches/daly/version5/front_end/gdb/h2
Deleted: branches/daly/version5/front_end/gdb/h2
===================================================================
--- branches/daly/version5/front_end/gdb/h2 2007-05-24 18:09:35 UTC (rev 253)
+++ branches/daly/version5/front_end/gdb/h2 2007-05-24 18:09:57 UTC (rev 254)
@@ -1 +0,0 @@
-[a,b,b][a,b,a^2]
Copied: branches/daly/version5/front_end/gdb/h2small (from rev 253, branches/daly/version5/front_end/gdb/h2)
===================================================================
--- branches/daly/version5/front_end/gdb/h2small (rev 0)
+++ branches/daly/version5/front_end/gdb/h2small 2007-05-24 18:09:57 UTC (rev 254)
@@ -0,0 +1 @@
+[a,b,b][a,b,a^2]
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <ybr...@us...> - 2007-05-24 18:09:37
|
Revision: 253
http://svn.sourceforge.net/magnus/?rev=253&view=rev
Author: ybryukhov
Date: 2007-05-24 11:09:35 -0700 (Thu, 24 May 2007)
Log Message:
-----------
one more
Added Paths:
-----------
branches/daly/version5/front_end/gdb/h1small
Removed Paths:
-------------
branches/daly/version5/front_end/gdb/h1
Deleted: branches/daly/version5/front_end/gdb/h1
===================================================================
--- branches/daly/version5/front_end/gdb/h1 2007-05-24 18:04:54 UTC (rev 252)
+++ branches/daly/version5/front_end/gdb/h1 2007-05-24 18:09:35 UTC (rev 253)
@@ -1 +0,0 @@
-[a,b,b][a,b,a]
Copied: branches/daly/version5/front_end/gdb/h1small (from rev 252, branches/daly/version5/front_end/gdb/h1)
===================================================================
--- branches/daly/version5/front_end/gdb/h1small (rev 0)
+++ branches/daly/version5/front_end/gdb/h1small 2007-05-24 18:09:35 UTC (rev 253)
@@ -0,0 +1 @@
+[a,b,b][a,b,a]
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <ybr...@us...> - 2007-05-24 18:05:11
|
Revision: 252
http://svn.sourceforge.net/magnus/?rev=252&view=rev
Author: ybryukhov
Date: 2007-05-24 11:04:54 -0700 (Thu, 24 May 2007)
Log Message:
-----------
again
Added Paths:
-----------
branches/daly/version4/front_end/gdb/h2small
Removed Paths:
-------------
branches/daly/version4/front_end/gdb/h2
Deleted: branches/daly/version4/front_end/gdb/h2
===================================================================
--- branches/daly/version4/front_end/gdb/h2 2007-05-24 18:04:25 UTC (rev 251)
+++ branches/daly/version4/front_end/gdb/h2 2007-05-24 18:04:54 UTC (rev 252)
@@ -1 +0,0 @@
-[a,b,b][a,b,a^2]
Copied: branches/daly/version4/front_end/gdb/h2small (from rev 251, branches/daly/version4/front_end/gdb/h2)
===================================================================
--- branches/daly/version4/front_end/gdb/h2small (rev 0)
+++ branches/daly/version4/front_end/gdb/h2small 2007-05-24 18:04:54 UTC (rev 252)
@@ -0,0 +1 @@
+[a,b,b][a,b,a^2]
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <ybr...@us...> - 2007-05-24 18:04:36
|
Revision: 251
http://svn.sourceforge.net/magnus/?rev=251&view=rev
Author: ybryukhov
Date: 2007-05-24 11:04:25 -0700 (Thu, 24 May 2007)
Log Message:
-----------
again
Added Paths:
-----------
branches/daly/version4/front_end/gdb/h1small
Removed Paths:
-------------
branches/daly/version4/front_end/gdb/h1
Deleted: branches/daly/version4/front_end/gdb/h1
===================================================================
--- branches/daly/version4/front_end/gdb/h1 2007-05-24 17:58:57 UTC (rev 250)
+++ branches/daly/version4/front_end/gdb/h1 2007-05-24 18:04:25 UTC (rev 251)
@@ -1 +0,0 @@
-[a,b,b][a,b,a]
Copied: branches/daly/version4/front_end/gdb/h1small (from rev 250, branches/daly/version4/front_end/gdb/h1)
===================================================================
--- branches/daly/version4/front_end/gdb/h1small (rev 0)
+++ branches/daly/version4/front_end/gdb/h1small 2007-05-24 18:04:25 UTC (rev 251)
@@ -0,0 +1 @@
+[a,b,b][a,b,a]
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <ybr...@us...> - 2007-05-24 17:59:03
|
Revision: 250
http://svn.sourceforge.net/magnus/?rev=250&view=rev
Author: ybryukhov
Date: 2007-05-24 10:58:57 -0700 (Thu, 24 May 2007)
Log Message:
-----------
more
Added Paths:
-----------
branches/daly/version4/doc/manual/figs/sm2small.fig
Removed Paths:
-------------
branches/daly/version4/doc/manual/figs/sm2.fig
Deleted: branches/daly/version4/doc/manual/figs/sm2.fig
===================================================================
--- branches/daly/version4/doc/manual/figs/sm2.fig 2007-05-24 17:41:39 UTC (rev 249)
+++ branches/daly/version4/doc/manual/figs/sm2.fig 2007-05-24 17:58:57 UTC (rev 250)
@@ -1,451 +0,0 @@
-#FIG 3.1
-Landscape
-Center
-Inches
-1200 2
-6 3225 75 5025 1500
-3 3 1 1 -1 7 2 0 -1 4.000 0 0 0 36
- 3324 788 3241 713 3249 548 3368 451 3533 293 3616 158
- 3736 106 3953 151 4096 196 4269 211 4456 173 4621 173
- 4726 256 4718 413 4741 518 4861 601 4958 751 4928 856
- 4816 953 4748 1073 4741 1156 4756 1291 4696 1396 4591 1411
- 4389 1351 4193 1313 4051 1321 3901 1388 3736 1441 3526 1426
- 3458 1291 3503 1193 3556 968 3473 886 3368 811 3324 788
- 3333.46 794.59 3302.68 773.16 3253.05 742.00 3223.21 670.18
- 3228.49 588.61 3268.06 510.25 3341.74 474.21 3407.07 416.47
- 3499.67 334.29 3556.12 264.35 3585.68 184.29 3641.03 136.30
- 3703.02 109.38 3791.88 100.27 3903.99 138.24 3986.15 159.63
- 4062.02 189.26 4135.36 203.80 4228.53 213.31 4313.48 208.46
- 4412.22 177.40 4493.85 169.19 4580.74 159.01 4653.65 184.35
- 4710.03 220.76 4744.76 297.39 4714.99 376.54 4720.06 437.93
- 4725.07 494.25 4762.62 550.24 4836.80 576.03 4890.63 631.57
- 4950.71 702.06 4962.46 780.92 4942.72 832.92 4908.03 887.32
- 4838.14 925.97 4795.39 978.16 4757.80 1041.30 4742.08 1092.14
- 4740.75 1136.81 4741.42 1187.29 4763.02 1257.10 4749.75 1321.18
- 4724.38 1376.72 4671.11 1412.91 4616.44 1412.87 4540.46 1407.28
- 4435.76 1362.45 4344.70 1340.15 4239.22 1316.13 4160.08 1310.77
- 4083.74 1313.05 4013.18 1330.18 3936.08 1374.58 3863.99 1402.16
- 3776.92 1436.08 3686.29 1446.98 3578.48 1460.97 3488.32 1400.89
- 3458.77 1333.65 3457.45 1260.57 3494.92 1216.51 3520.31 1142.60
- 3575.05 1034.24 3546.38 934.57 3493.49 903.25 3450.34 866.92
- 3393.19 826.48 3358.31 805.04 3333.46 794.59 3302.68 773.16
-4 0 -1 0 0 16 10 0.0000000 4 150 1290 3451 751 BaseRegObjectRef\001
--6
-6 5850 225 7650 1650
-3 3 1 1 -1 7 2 0 -1 4.000 0 0 0 36
- 5964 983 5881 908 5889 743 6008 646 6173 488 6256 353
- 6376 301 6593 346 6736 391 6909 406 7096 368 7261 368
- 7366 451 7358 608 7381 713 7501 796 7598 946 7568 1051
- 7456 1148 7388 1268 7381 1351 7396 1486 7336 1591 7231 1606
- 7029 1546 6833 1508 6691 1516 6541 1583 6376 1636 6166 1621
- 6098 1486 6143 1388 6196 1163 6113 1081 6008 1006 5964 983
- 5973.46 989.59 5942.68 968.16 5893.05 937.00 5863.21 865.18
- 5868.49 783.61 5908.06 705.25 5981.74 669.21 6047.07 611.47
- 6139.67 529.29 6196.12 459.35 6225.68 379.29 6281.03 331.30
- 6343.02 304.38 6431.88 295.27 6543.99 333.24 6626.15 354.63
- 6702.02 384.26 6775.36 398.80 6868.53 408.31 6953.48 403.46
- 7052.22 372.40 7133.85 364.19 7220.74 354.01 7293.65 379.35
- 7350.03 415.76 7384.76 492.39 7354.99 571.54 7360.06 632.93
- 7365.07 689.25 7402.62 745.24 7476.80 771.03 7530.63 826.57
- 7590.71 897.06 7602.46 975.92 7582.72 1027.92 7548.03 1082.32
- 7478.14 1120.97 7435.39 1173.16 7397.80 1236.30 7382.08 1287.14
- 7380.75 1331.81 7381.42 1382.29 7403.02 1452.10 7389.75 1516.18
- 7364.38 1571.72 7311.11 1607.91 7256.44 1607.87 7180.46 1602.28
- 7075.76 1557.45 6984.70 1535.15 6879.22 1511.13 6800.08 1505.77
- 6723.74 1508.05 6653.18 1525.18 6576.08 1569.58 6503.99 1597.16
- 6416.92 1631.08 6326.29 1641.98 6218.48 1655.97 6128.32 1595.89
- 6098.77 1528.65 6097.45 1455.57 6134.92 1411.51 6160.31 1337.60
- 6215.05 1229.24 6186.38 1129.57 6133.49 1098.25 6090.34 1061.92
- 6033.19 1021.48 5998.31 1000.04 5973.46 989.59 5942.68 968.16
-4 0 -1 0 0 16 10 0.0000000 4 150 735 6301 826 HolderRep\001
--6
-6 6450 1875 8250 3300
-3 3 1 1 -1 7 2 0 -1 4.000 0 0 0 36
- 6609 2603 6526 2528 6534 2363 6653 2266 6818 2108 6901 1973
- 7021 1921 7238 1966 7381 2011 7554 2026 7741 1988 7906 1988
- 8011 2071 8003 2228 8026 2333 8146 2416 8243 2566 8213 2671
- 8101 2768 8033 2888 8026 2971 8041 3106 7981 3211 7876 3226
- 7674 3166 7478 3128 7336 3136 7186 3203 7021 3256 6811 3241
- 6743 3106 6788 3008 6841 2783 6758 2701 6653 2626 6609 2603
- 6618.46 2609.59 6587.68 2588.16 6538.05 2557.00 6508.21 2485.18
- 6513.49 2403.61 6553.06 2325.25 6626.74 2289.21 6692.07 2231.47
- 6784.67 2149.29 6841.12 2079.35 6870.68 1999.29 6926.03 1951.30
- 6988.02 1924.38 7076.88 1915.27 7188.99 1953.24 7271.15 1974.63
- 7347.02 2004.26 7420.36 2018.80 7513.53 2028.31 7598.48 2023.46
- 7697.22 1992.40 7778.85 1984.19 7865.74 1974.01 7938.65 1999.35
- 7995.03 2035.76 8029.76 2112.39 7999.99 2191.54 8005.06 2252.93
- 8010.07 2309.25 8047.62 2365.24 8121.80 2391.03 8175.63 2446.57
- 8235.71 2517.06 8247.46 2595.92 8227.72 2647.92 8193.03 2702.32
- 8123.14 2740.97 8080.39 2793.16 8042.80 2856.30 8027.08 2907.14
- 8025.75 2951.81 8026.42 3002.29 8048.02 3072.10 8034.75 3136.18
- 8009.38 3191.72 7956.11 3227.91 7901.44 3227.87 7825.46 3222.28
- 7720.76 3177.45 7629.70 3155.15 7524.22 3131.13 7445.08 3125.77
- 7368.74 3128.05 7298.18 3145.18 7221.08 3189.58 7148.99 3217.16
- 7061.92 3251.08 6971.29 3261.98 6863.48 3275.97 6773.32 3215.89
- 6743.77 3148.65 6742.45 3075.57 6779.92 3031.51 6805.31 2957.60
- 6860.05 2849.24 6831.38 2749.57 6778.49 2718.25 6735.34 2681.92
- 6678.19 2641.48 6643.31 2620.04 6618.46 2609.59 6587.68 2588.16
-4 0 -1 0 0 16 10 0.0000000 4 150 435 6976 2476 Group\001
--6
-6 74 3374 1949 4799
-3 3 1 1 -1 7 2 0 -1 4.000 0 0 0 36
- 241 4095 158 4020 166 3855 285 3758 450 3600 533 3465
- 653 3413 870 3458 1013 3503 1186 3518 1373 3480 1538 3480
- 1643 3563 1635 3720 1658 3825 1778 3908 1875 4058 1845 4163
- 1733 4260 1665 4380 1658 4463 1673 4598 1613 4703 1508 4718
- 1306 4658 1110 4620 968 4628 818 4695 653 4748 443 4733
- 375 4598 420 4500 473 4275 390 4193 285 4118 241 4095
- 250.46 4101.59 219.68 4080.16 170.05 4049.00 140.21 3977.18
- 145.49 3895.61 185.06 3817.25 258.74 3781.21 324.07 3723.47
- 416.67 3641.29 473.12 3571.35 502.68 3491.29 558.03 3443.30
- 620.02 3416.38 708.88 3407.27 820.99 3445.24 903.15 3466.63
- 979.02 3496.26 1052.36 3510.80 1145.53 3520.31 1230.48 3515.46
- 1329.22 3484.40 1410.85 3476.19 1497.74 3466.01 1570.65 3491.35
- 1627.03 3527.76 1661.76 3604.39 1631.99 3683.54 1637.06 3744.93
- 1642.07 3801.25 1679.62 3857.24 1753.80 3883.03 1807.63 3938.57
- 1867.71 4009.06 1879.46 4087.92 1859.72 4139.92 1825.03 4194.32
- 1755.14 4232.97 1712.39 4285.16 1674.80 4348.30 1659.08 4399.14
- 1657.75 4443.81 1658.42 4494.29 1680.02 4564.10 1666.75 4628.18
- 1641.38 4683.72 1588.11 4719.91 1533.44 4719.87 1457.46 4714.28
- 1352.76 4669.45 1261.70 4647.15 1156.22 4623.13 1077.08 4617.77
- 1000.74 4620.05 930.18 4637.18 853.08 4681.58 780.99 4709.16
- 693.92 4743.08 603.29 4753.98 495.48 4767.97 405.32 4707.89
- 375.77 4640.65 374.45 4567.57 411.92 4523.51 437.31 4449.60
- 492.05 4341.24 463.38 4241.57 410.49 4210.25 367.34 4173.92
- 310.19 4133.48 275.31 4112.04 250.46 4101.59 219.68 4080.16
-4 0 -1 0 0 16 10 0.0000000 4 150 1050 450 3975 AbelianToolRep\001
--6
-6 600 225 2400 1650
-3 3 1 1 -1 7 2 0 -1 4.000 0 0 0 36
- 714 938 631 863 639 698 758 601 923 443 1006 308
- 1126 256 1343 301 1486 346 1659 361 1846 323 2011 323
- 2116 406 2108 563 2131 668 2251 751 2348 901 2318 1006
- 2206 1103 2138 1223 2131 1306 2146 1441 2086 1546 1981 1561
- 1779 1501 1583 1463 1441 1471 1291 1538 1126 1591 916 1576
- 848 1441 893 1343 946 1118 863 1036 758 961 714 938
- 723.46 944.59 692.68 923.16 643.05 892.00 613.21 820.18
- 618.49 738.61 658.06 660.25 731.74 624.21 797.07 566.47
- 889.67 484.29 946.12 414.35 975.68 334.29 1031.03 286.30
- 1093.02 259.38 1181.88 250.27 1293.99 288.24 1376.15 309.63
- 1452.02 339.26 1525.36 353.80 1618.53 363.31 1703.48 358.46
- 1802.22 327.40 1883.85 319.19 1970.74 309.01 2043.65 334.35
- 2100.03 370.76 2134.76 447.39 2104.99 526.54 2110.06 587.93
- 2115.07 644.25 2152.62 700.24 2226.80 726.03 2280.63 781.57
- 2340.71 852.06 2352.46 930.92 2332.72 982.92 2298.03 1037.32
- 2228.14 1075.97 2185.39 1128.16 2147.80 1191.30 2132.08 1242.14
- 2130.75 1286.81 2131.42 1337.29 2153.02 1407.10 2139.75 1471.18
- 2114.38 1526.72 2061.11 1562.91 2006.44 1562.87 1930.46 1557.28
- 1825.76 1512.45 1734.70 1490.15 1629.22 1466.13 1550.08 1460.77
- 1473.74 1463.05 1403.18 1480.18 1326.08 1524.58 1253.99 1552.16
- 1166.92 1586.08 1076.29 1596.98 968.48 1610.97 878.32 1550.89
- 848.77 1483.65 847.45 1410.57 884.92 1366.51 910.31 1292.60
- 965.05 1184.24 936.38 1084.57 883.49 1053.25 840.34 1016.92
- 783.19 976.48 748.31 955.04 723.46 944.59 692.68 923.16
-4 0 -1 0 0 16 10 0.0000000 4 150 1155 901 826 ActiveObjectRep\001
--6
-6 6374 5174 8174 6599
-3 3 1 1 -1 7 2 0 -1 4.000 0 0 0 36
- 6523 5880 6440 5805 6448 5640 6567 5543 6732 5385 6815 5250
- 6935 5198 7152 5243 7295 5288 7468 5303 7655 5265 7820 5265
- 7925 5348 7917 5505 7940 5610 8060 5693 8157 5843 8127 5948
- 8015 6045 7947 6165 7940 6248 7955 6383 7895 6488 7790 6503
- 7588 6443 7392 6405 7250 6413 7100 6480 6935 6533 6725 6518
- 6657 6383 6702 6285 6755 6060 6672 5978 6567 5903 6523 5880
- 6532.46 5886.59 6501.68 5865.16 6452.05 5834.00 6422.21 5762.18
- 6427.49 5680.61 6467.06 5602.25 6540.74 5566.21 6606.07 5508.47
- 6698.67 5426.29 6755.12 5356.35 6784.68 5276.29 6840.03 5228.30
- 6902.02 5201.38 6990.88 5192.27 7102.99 5230.24 7185.15 5251.63
- 7261.02 5281.26 7334.36 5295.80 7427.53 5305.31 7512.48 5300.46
- 7611.22 5269.40 7692.85 5261.19 7779.74 5251.01 7852.65 5276.35
- 7909.03 5312.76 7943.76 5389.39 7913.99 5468.54 7919.06 5529.93
- 7924.07 5586.25 7961.62 5642.24 8035.80 5668.03 8089.63 5723.57
- 8149.71 5794.06 8161.46 5872.92 8141.72 5924.92 8107.03 5979.32
- 8037.14 6017.97 7994.39 6070.16 7956.80 6133.30 7941.08 6184.14
- 7939.75 6228.81 7940.42 6279.29 7962.02 6349.10 7948.75 6413.18
- 7923.38 6468.72 7870.11 6504.91 7815.44 6504.87 7739.46 6499.28
- 7634.76 6454.45 7543.70 6432.15 7438.22 6408.13 7359.08 6402.77
- 7282.74 6405.05 7212.18 6422.18 7135.08 6466.58 7062.99 6494.16
- 6975.92 6528.08 6885.29 6538.98 6777.48 6552.97 6687.32 6492.89
- 6657.77 6425.65 6656.45 6352.57 6693.92 6308.51 6719.31 6234.60
- 6774.05 6126.24 6745.38 6026.57 6692.49 5995.25 6649.34 5958.92
- 6592.19 5918.48 6557.31 5897.04 6532.46 5886.59 6501.68 5865.16
-4 0 -1 0 0 16 10 0.0000000 4 120 720 6825 5700 DataStore\001
--6
-6 6449 3449 8249 4874
-3 3 1 1 -1 7 2 0 -1 4.000 0 0 0 36
- 6596 4183 6513 4108 6521 3943 6640 3846 6805 3688 6888 3553
- 7008 3501 7225 3546 7368 3591 7541 3606 7728 3568 7893 3568
- 7998 3651 7990 3808 8013 3913 8133 3996 8230 4146 8200 4251
- 8088 4348 8020 4468 8013 4551 8028 4686 7968 4791 7863 4806
- 7661 4746 7465 4708 7323 4716 7173 4783 7008 4836 6798 4821
- 6730 4686 6775 4588 6828 4363 6745 4281 6640 4206 6596 4183
- 6605.46 4189.59 6574.68 4168.16 6525.05 4137.00 6495.21 4065.18
- 6500.49 3983.61 6540.06 3905.25 6613.74 3869.21 6679.07 3811.47
- 6771.67 3729.29 6828.12 3659.35 6857.68 3579.29 6913.03 3531.30
- 6975.02 3504.38 7063.88 3495.27 7175.99 3533.24 7258.15 3554.63
- 7334.02 3584.26 7407.36 3598.80 7500.53 3608.31 7585.48 3603.46
- 7684.22 3572.40 7765.85 3564.19 7852.74 3554.01 7925.65 3579.35
- 7982.03 3615.76 8016.76 3692.39 7986.99 3771.54 7992.06 3832.93
- 7997.07 3889.25 8034.62 3945.24 8108.80 3971.03 8162.63 4026.57
- 8222.71 4097.06 8234.46 4175.92 8214.72 4227.92 8180.03 4282.32
- 8110.14 4320.97 8067.39 4373.16 8029.80 4436.30 8014.08 4487.14
- 8012.75 4531.81 8013.42 4582.29 8035.02 4652.10 8021.75 4716.18
- 7996.38 4771.72 7943.11 4807.91 7888.44 4807.87 7812.46 4802.28
- 7707.76 4757.45 7616.70 4735.15 7511.22 4711.13 7432.08 4705.77
- 7355.74 4708.05 7285.18 4725.18 7208.08 4769.58 7135.99 4797.16
- 7048.92 4831.08 6958.29 4841.98 6850.48 4855.97 6760.32 4795.89
- 6730.77 4728.65 6729.45 4655.57 6766.92 4611.51 6792.31 4537.60
- 6847.05 4429.24 6818.38 4329.57 6765.49 4298.25 6722.34 4261.92
- 6665.19 4221.48 6630.31 4200.04 6605.46 4189.59 6574.68 4168.16
-4 0 -1 0 0 16 10 0.0000000 4 120 255 6975 4050 ISS\001
--6
-6 4125 3750 5925 5175
-3 3 1 1 -1 7 2 0 -1 4.000 0 0 0 36
- 4250 4468 4167 4393 4175 4228 4294 4131 4459 3973 4542 3838
- 4662 3786 4879 3831 5022 3876 5195 3891 5382 3853 5547 3853
- 5652 3936 5644 4093 5667 4198 5787 4281 5884 4431 5854 4536
- 5742 4633 5674 4753 5667 4836 5682 4971 5622 5076 5517 5091
- 5315 5031 5119 4993 4977 5001 4827 5068 4662 5121 4452 5106
- 4384 4971 4429 4873 4482 4648 4399 4566 4294 4491 4250 4468
- 4259.46 4474.59 4228.68 4453.16 4179.05 4422.00 4149.21 4350.18
- 4154.49 4268.61 4194.06 4190.25 4267.74 4154.21 4333.07 4096.47
- 4425.67 4014.29 4482.12 3944.35 4511.68 3864.29 4567.03 3816.30
- 4629.02 3789.38 4717.88 3780.27 4829.99 3818.24 4912.15 3839.63
- 4988.02 3869.26 5061.36 3883.80 5154.53 3893.31 5239.48 3888.46
- 5338.22 3857.40 5419.85 3849.19 5506.74 3839.01 5579.65 3864.35
- 5636.03 3900.76 5670.76 3977.39 5640.99 4056.54 5646.06 4117.93
- 5651.07 4174.25 5688.62 4230.24 5762.80 4256.03 5816.63 4311.57
- 5876.71 4382.06 5888.46 4460.92 5868.72 4512.92 5834.03 4567.32
- 5764.14 4605.97 5721.39 4658.16 5683.80 4721.30 5668.08 4772.14
- 5666.75 4816.81 5667.42 4867.29 5689.02 4937.10 5675.75 5001.18
- 5650.38 5056.72 5597.11 5092.91 5542.44 5092.87 5466.46 5087.28
- 5361.76 5042.45 5270.70 5020.15 5165.22 4996.13 5086.08 4990.77
- 5009.74 4993.05 4939.18 5010.18 4862.08 5054.58 4789.99 5082.16
- 4702.92 5116.08 4612.29 5126.98 4504.48 5140.97 4414.32 5080.89
- 4384.77 5013.65 4383.45 4940.57 4420.92 4896.51 4446.31 4822.60
- 4501.05 4714.24 4472.38 4614.57 4419.49 4583.25 4376.34 4546.92
- 4319.19 4506.48 4284.31 4485.04 4259.46 4474.59 4228.68 4453.16
-4 0 -1 0 0 16 10 0.0000000 4 120 480 4576 4351 FPGIC\001
--6
-6 2099 6599 3899 8024
-3 3 1 1 -1 7 2 0 -1 4.000 0 0 0 36
- 2258 7312 2175 7237 2183 7072 2302 6975 2467 6817 2550 6682
- 2670 6630 2887 6675 3030 6720 3203 6735 3390 6697 3555 6697
- 3660 6780 3652 6937 3675 7042 3795 7125 3892 7275 3862 7380
- 3750 7477 3682 7597 3675 7680 3690 7815 3630 7920 3525 7935
- 3323 7875 3127 7837 2985 7845 2835 7912 2670 7965 2460 7950
- 2392 7815 2437 7717 2490 7492 2407 7410 2302 7335 2258 7312
- 2267.46 7318.59 2236.68 7297.16 2187.05 7266.00 2157.21 7194.18
- 2162.49 7112.61 2202.06 7034.25 2275.74 6998.21 2341.07 6940.47
- 2433.67 6858.29 2490.12 6788.35 2519.68 6708.29 2575.03 6660.30
- 2637.02 6633.38 2725.88 6624.27 2837.99 6662.24 2920.15 6683.63
- 2996.02 6713.26 3069.36 6727.80 3162.53 6737.31 3247.48 6732.46
- 3346.22 6701.40 3427.85 6693.19 3514.74 6683.01 3587.65 6708.35
- 3644.03 6744.76 3678.76 6821.39 3648.99 6900.54 3654.06 6961.93
- 3659.07 7018.25 3696.62 7074.24 3770.80 7100.03 3824.63 7155.57
- 3884.71 7226.06 3896.46 7304.92 3876.72 7356.92 3842.03 7411.32
- 3772.14 7449.97 3729.39 7502.16 3691.80 7565.30 3676.08 7616.14
- 3674.75 7660.81 3675.42 7711.29 3697.02 7781.10 3683.75 7845.18
- 3658.38 7900.72 3605.11 7936.91 3550.44 7936.87 3474.46 7931.28
- 3369.76 7886.45 3278.70 7864.15 3173.22 7840.13 3094.08 7834.77
- 3017.74 7837.05 2947.18 7854.18 2870.08 7898.58 2797.99 7926.16
- 2710.92 7960.08 2620.29 7970.98 2512.48 7984.97 2422.32 7924.89
- 2392.77 7857.65 2391.45 7784.57 2428.92 7740.51 2454.31 7666.60
- 2509.05 7558.24 2480.38 7458.57 2427.49 7427.25 2384.34 7390.92
- 2327.19 7350.48 2292.31 7329.04 2267.46 7318.59 2236.68 7297.16
-4 0 -1 0 0 16 10 0.0000000 4 120 570 2550 7200 Account\001
--6
-6 2025 4050 3900 5475
-3 3 1 1 -1 7 2 0 -1 4.000 0 0 0 36
- 2192 4771 2109 4696 2117 4531 2236 4434 2401 4276 2484 4141
- 2604 4089 2821 4134 2964 4179 3137 4194 3324 4156 3489 4156
- 3594 4239 3586 4396 3609 4501 3729 4584 3826 4734 3796 4839
- 3684 4936 3616 5056 3609 5139 3624 5274 3564 5379 3459 5394
- 3257 5334 3061 5296 2919 5304 2769 5371 2604 5424 2394 5409
- 2326 5274 2371 5176 2424 4951 2341 4869 2236 4794 2192 4771
- 2201.46 4777.59 2170.68 4756.16 2121.05 4725.00 2091.21 4653.18
- 2096.49 4571.61 2136.06 4493.25 2209.74 4457.21 2275.07 4399.47
- 2367.67 4317.29 2424.12 4247.35 2453.68 4167.29 2509.03 4119.30
- 2571.02 4092.38 2659.88 4083.27 2771.99 4121.24 2854.15 4142.63
- 2930.02 4172.26 3003.36 4186.80 3096.53 4196.31 3181.48 4191.46
- 3280.22 4160.40 3361.85 4152.19 3448.74 4142.01 3521.65 4167.35
- 3578.03 4203.76 3612.76 4280.39 3582.99 4359.54 3588.06 4420.93
- 3593.07 4477.25 3630.62 4533.24 3704.80 4559.03 3758.63 4614.57
- 3818.71 4685.06 3830.46 4763.92 3810.72 4815.92 3776.03 4870.32
- 3706.14 4908.97 3663.39 4961.16 3625.80 5024.30 3610.08 5075.14
- 3608.75 5119.81 3609.42 5170.29 3631.02 5240.10 3617.75 5304.18
- 3592.38 5359.72 3539.11 5395.91 3484.44 5395.87 3408.46 5390.28
- 3303.76 5345.45 3212.70 5323.15 3107.22 5299.13 3028.08 5293.77
- 2951.74 5296.05 2881.18 5313.18 2804.08 5357.58 2731.99 5385.16
- 2644.92 5419.08 2554.29 5429.98 2446.48 5443.97 2356.32 5383.89
- 2326.77 5316.65 2325.45 5243.57 2362.92 5199.51 2388.31 5125.60
- 2443.05 5017.24 2414.38 4917.57 2361.49 4886.25 2318.34 4849.92
- 2261.19 4809.48 2226.31 4788.04 2201.46 4777.59 2170.68 4756.16
-4 0 -1 0 0 16 10 0.0000000 4 150 1275 2326 4726 WordProbToolRep\001
--6
-6 2250 2250 4050 3675
-3 3 1 1 -1 7 2 0 -1 4.000 0 0 0 36
- 2394 2971 2311 2896 2319 2731 2438 2634 2603 2476 2686 2341
- 2806 2289 3023 2334 3166 2379 3339 2394 3526 2356 3691 2356
- 3796 2439 3788 2596 3811 2701 3931 2784 4028 2934 3998 3039
- 3886 3136 3818 3256 3811 3339 3826 3474 3766 3579 3661 3594
- 3459 3534 3263 3496 3121 3504 2971 3571 2806 3624 2596 3609
- 2528 3474 2573 3376 2626 3151 2543 3069 2438 2994 2394 2971
- 2403.46 2977.59 2372.68 2956.16 2323.05 2925.00 2293.21 2853.18
- 2298.49 2771.61 2338.06 2693.25 2411.74 2657.21 2477.07 2599.47
- 2569.67 2517.29 2626.12 2447.35 2655.68 2367.29 2711.03 2319.30
- 2773.02 2292.38 2861.88 2283.27 2973.99 2321.24 3056.15 2342.63
- 3132.02 2372.26 3205.36 2386.80 3298.53 2396.31 3383.48 2391.46
- 3482.22 2360.40 3563.85 2352.19 3650.74 2342.01 3723.65 2367.35
- 3780.03 2403.76 3814.76 2480.39 3784.99 2559.54 3790.06 2620.93
- 3795.07 2677.25 3832.62 2733.24 3906.80 2759.03 3960.63 2814.57
- 4020.71 2885.06 4032.46 2963.92 4012.72 3015.92 3978.03 3070.32
- 3908.14 3108.97 3865.39 3161.16 3827.80 3224.30 3812.08 3275.14
- 3810.75 3319.81 3811.42 3370.29 3833.02 3440.10 3819.75 3504.18
- 3794.38 3559.72 3741.11 3595.91 3686.44 3595.87 3610.46 3590.28
- 3505.76 3545.45 3414.70 3523.15 3309.22 3499.13 3230.08 3493.77
- 3153.74 3496.05 3083.18 3513.18 3006.08 3557.58 2933.99 3585.16
- 2846.92 3619.08 2756.29 3629.98 2648.48 3643.97 2558.32 3583.89
- 2528.77 3516.65 2527.45 3443.57 2564.92 3399.51 2590.31 3325.60
- 2645.05 3217.24 2616.38 3117.57 2563.49 3086.25 2520.34 3049.92
- 2463.19 3009.48 2428.31 2988.04 2403.46 2977.59 2372.68 2956.16
-4 0 -1 0 0 16 10 0.0000000 4 150 900 2701 2851 Computation\001
-4 0 -1 0 0 16 10 0.0000000 4 150 600 2701 3076 Manager\001
--6
-6 4725 6000 6525 7425
-3 3 1 1 -1 7 2 0 -1 4.000 0 0 0 36
- 4824 6713 4741 6638 4749 6473 4868 6376 5033 6218 5116 6083
- 5236 6031 5453 6076 5596 6121 5769 6136 5956 6098 6121 6098
- 6226 6181 6218 6338 6241 6443 6361 6526 6458 6676 6428 6781
- 6316 6878 6248 6998 6241 7081 6256 7216 6196 7321 6091 7336
- 5889 7276 5693 7238 5551 7246 5401 7313 5236 7366 5026 7351
- 4958 7216 5003 7118 5056 6893 4973 6811 4868 6736 4824 6713
- 4833.46 6719.59 4802.68 6698.16 4753.05 6667.00 4723.21 6595.18
- 4728.49 6513.61 4768.06 6435.25 4841.74 6399.21 4907.07 6341.47
- 4999.67 6259.29 5056.12 6189.35 5085.68 6109.29 5141.03 6061.30
- 5203.02 6034.38 5291.88 6025.27 5403.99 6063.24 5486.15 6084.63
- 5562.02 6114.26 5635.36 6128.80 5728.53 6138.31 5813.48 6133.46
- 5912.22 6102.40 5993.85 6094.19 6080.74 6084.01 6153.65 6109.35
- 6210.03 6145.76 6244.76 6222.39 6214.99 6301.54 6220.06 6362.93
- 6225.07 6419.25 6262.62 6475.24 6336.80 6501.03 6390.63 6556.57
- 6450.71 6627.06 6462.46 6705.92 6442.72 6757.92 6408.03 6812.32
- 6338.14 6850.97 6295.39 6903.16 6257.80 6966.30 6242.08 7017.14
- 6240.75 7061.81 6241.42 7112.29 6263.02 7182.10 6249.75 7246.18
- 6224.38 7301.72 6171.11 7337.91 6116.44 7337.87 6040.46 7332.28
- 5935.76 7287.45 5844.70 7265.15 5739.22 7241.13 5660.08 7235.77
- 5583.74 7238.05 5513.18 7255.18 5436.08 7299.58 5363.99 7327.16
- 5276.92 7361.08 5186.29 7371.98 5078.48 7385.97 4988.32 7325.89
- 4958.77 7258.65 4957.45 7185.57 4994.92 7141.51 5020.31 7067.60
- 5075.05 6959.24 5046.38 6859.57 4993.49 6828.25 4950.34 6791.92
- 4893.19 6751.48 4858.31 6730.04 4833.46 6719.59 4802.68 6698.16
-4 0 -1 0 0 16 10 0.0000000 4 120 465 5176 6601 Broker\001
--6
-6 149 6599 1949 8024
-3 3 1 1 -1 7 2 0 -1 4.000 0 0 0 36
- 256 7312 173 7237 181 7072 300 6975 465 6817 548 6682
- 668 6630 885 6675 1028 6720 1201 6735 1388 6697 1553 6697
- 1658 6780 1650 6937 1673 7042 1793 7125 1890 7275 1860 7380
- 1748 7477 1680 7597 1673 7680 1688 7815 1628 7920 1523 7935
- 1321 7875 1125 7837 983 7845 833 7912 668 7965 458 7950
- 390 7815 435 7717 488 7492 405 7410 300 7335 256 7312
- 265.46 7318.59 234.68 7297.16 185.05 7266.00 155.21 7194.18
- 160.49 7112.61 200.06 7034.25 273.74 6998.21 339.07 6940.47
- 431.67 6858.29 488.12 6788.35 517.68 6708.29 573.03 6660.30
- 635.02 6633.38 723.88 6624.27 835.99 6662.24 918.15 6683.63
- 994.02 6713.26 1067.36 6727.80 1160.53 6737.31 1245.48 6732.46
- 1344.22 6701.40 1425.85 6693.19 1512.74 6683.01 1585.65 6708.35
- 1642.03 6744.76 1676.76 6821.39 1646.99 6900.54 1652.06 6961.93
- 1657.07 7018.25 1694.62 7074.24 1768.80 7100.03 1822.63 7155.57
- 1882.71 7226.06 1894.46 7304.92 1874.72 7356.92 1840.03 7411.32
- 1770.14 7449.97 1727.39 7502.16 1689.80 7565.30 1674.08 7616.14
- 1672.75 7660.81 1673.42 7711.29 1695.02 7781.10 1681.75 7845.18
- 1656.38 7900.72 1603.11 7936.91 1548.44 7936.87 1472.46 7931.28
- 1367.76 7886.45 1276.70 7864.15 1171.22 7840.13 1092.08 7834.77
- 1015.74 7837.05 945.18 7854.18 868.08 7898.58 795.99 7926.16
- 708.92 7960.08 618.29 7970.98 510.48 7984.97 420.32 7924.89
- 390.77 7857.65 389.45 7784.57 426.92 7740.51 452.31 7666.60
- 507.05 7558.24 478.38 7458.57 425.49 7427.25 382.34 7390.92
- 325.19 7350.48 290.31 7329.04 265.46 7318.59 234.68 7297.16
-4 0 -1 0 0 16 10 0.0000000 4 120 945 525 7125 WordChecker\001
-4 0 -1 0 0 16 10 0.0000000 4 150 420 525 7350 Agent\001
--6
-6 4049 1724 5849 3149
-3 3 1 1 -1 7 2 0 -1 4.000 0 0 0 36
- 4201 2476 4118 2401 4126 2236 4245 2139 4410 1981 4493 1846
- 4613 1794 4830 1839 4973 1884 5146 1899 5333 1861 5498 1861
- 5603 1944 5595 2101 5618 2206 5738 2289 5835 2439 5805 2544
- 5693 2641 5625 2761 5618 2844 5633 2979 5573 3084 5468 3099
- 5266 3039 5070 3001 4928 3009 4778 3076 4613 3129 4403 3114
- 4335 2979 4380 2881 4433 2656 4350 2574 4245 2499 4201 2476
- 4210.46 2482.59 4179.68 2461.16 4130.05 2430.00 4100.21 2358.18
- 4105.49 2276.61 4145.06 2198.25 4218.74 2162.21 4284.07 2104.47
- 4376.67 2022.29 4433.12 1952.35 4462.68 1872.29 4518.03 1824.30
- 4580.02 1797.38 4668.88 1788.27 4780.99 1826.24 4863.15 1847.63
- 4939.02 1877.26 5012.36 1891.80 5105.53 1901.31 5190.48 1896.46
- 5289.22 1865.40 5370.85 1857.19 5457.74 1847.01 5530.65 1872.35
- 5587.03 1908.76 5621.76 1985.39 5591.99 2064.54 5597.06 2125.93
- 5602.07 2182.25 5639.62 2238.24 5713.80 2264.03 5767.63 2319.57
- 5827.71 2390.06 5839.46 2468.92 5819.72 2520.92 5785.03 2575.32
- 5715.14 2613.97 5672.39 2666.16 5634.80 2729.30 5619.08 2780.14
- 5617.75 2824.81 5618.42 2875.29 5640.02 2945.10 5626.75 3009.18
- 5601.38 3064.72 5548.11 3100.91 5493.44 3100.87 5417.46 3095.28
- 5312.76 3050.45 5221.70 3028.15 5116.22 3004.13 5037.08 2998.77
- 4960.74 3001.05 4890.18 3018.18 4813.08 3062.58 4740.99 3090.16
- 4653.92 3124.08 4563.29 3134.98 4455.48 3148.97 4365.32 3088.89
- 4335.77 3021.65 4334.45 2948.57 4371.92 2904.51 4397.31 2830.60
- 4452.05 2722.24 4423.38 2622.57 4370.49 2591.25 4327.34 2554.92
- 4270.19 2514.48 4235.31 2493.04 4210.46 2482.59 4179.68 2461.16
-4 0 -1 0 0 16 10 0.0000000 4 150 1260 4350 2400 Class Membership\001
-4 0 -1 0 0 16 10 0.0000000 4 120 765 4575 2625 Determiner\001
--6
-1 3 0 1 -1 0 0 0 20 0.0000000 1 0.000 5101 5100 75 75 5101 5100 5176 5175
-1 3 0 1 -1 0 0 0 20 0.0000000 1 0.000 5775 4800 75 75 5775 4800 5850 4875
-1 3 0 1 -1 0 0 0 20 0.0000000 1 0.000 5925 4275 75 75 5925 4275 6000 4350
-1 3 0 1 -1 0 0 0 20 0.0000000 1 0.000 6750 1650 75 75 6750 1650 6825 1725
-1 3 0 1 -1 0 0 0 20 0.0000000 1 0.000 5100 3750 75 75 5100 3750 5175 3825
-1 3 0 1 -1 0 0 0 20 0.0000000 1 0.000 4275 3975 75 75 4275 3975 4350 4050
-1 3 0 1 -1 0 0 0 20 0.0000000 1 0.000 1575 4875 75 75 1575 4875 1650 4950
-1 3 0 1 -1 0 0 0 20 0.0000000 1 0.000 750 4875 75 75 750 4875 825 4950
-1 3 0 1 -1 0 0 0 20 0.0000000 1 0.000 2325 5550 75 75 2325 5550 2400 5625
-1 3 0 1 -1 0 0 0 20 0.0000000 1 0.000 3375 5550 75 75 3375 5550 3450 5625
-1 3 0 1 -1 0 0 0 20 0.0000000 1 0.000 6225 1800 75 75 6225 1800 6300 1875
-2 1 0 1 -1 7 0 0 20 0.000 0 0 -1 1 0 2
- 1 1 1.00 60.00 120.00
- 2475 900 3150 750
-2 1 0 1 -1 7 0 0 20 0.000 0 0 -1 1 0 2
- 1 1 1.00 60.00 120.00
- 5775 750 5100 750
-2 1 0 1 -1 7 0 0 20 0.000 0 0 -1 1 0 2
- 1 1 1.00 60.00 120.00
- 750 3300 975 1725
-2 1 0 1 -1 7 0 0 20 0.000 0 0 -1 0 0 2
- 6750 1650 6900 1875
-2 1 0 1 -1 7 0 0 20 0.000 0 0 -1 0 0 2
- 5925 4275 6450 4125
-2 1 0 1 -1 7 0 0 20 0.000 0 0 -1 0 0 2
- 5775 4800 6525 5400
-2 1 0 1 -1 7 0 0 20 0.000 0 0 -1 0 0 2
- 750 4800 900 6525
-2 1 0 1 -1 7 0 0 20 0.000 0 0 -1 0 0 2
- 1575 4875 2400 6675
-2 1 0 1 -1 7 0 0 20 0.000 0 0 -1 1 0 2
- 1 1 1.00 60.00 120.00
- 2400 2400 2100 1650
-2 1 0 1 -1 7 0 0 20 0.000 0 0 -1 1 0 2
- 1 1 1.00 60.00 120.00
- 2250 4200 1650 1650
-2 1 0 1 -1 7 0 0 20 0.000 0 0 -1 0 0 2
- 4275 3975 3900 3675
-2 1 0 1 -1 7 0 0 20 0.000 0 0 -1 1 0 2
- 1 1 1.00 60.00 120.00
- 4200 2025 2250 1350
-2 1 0 1 -1 7 0 0 20 0.000 0 0 -1 0 0 2
- 4800 3150 5100 3750
-2 1 0 1 -1 7 0 0 20 0.000 0 0 -1 0 0 2
- 5100 5100 5250 5850
-2 1 0 1 -1 7 0 0 20 0.000 0 0 -1 0 0 2
- 2325 5550 1650 6600
-2 1 0 1 -1 7 0 0 20 0.000 0 0 -1 0 0 2
- 3375 5550 3450 6600
-2 1 0 1 -1 7 0 0 20 0.000 0 0 -1 0 0 2
- 6225 1800 5625 3750
Copied: branches/daly/version4/doc/manual/figs/sm2small.fig (from rev 249, branches/daly/version4/doc/manual/figs/sm2.fig)
===================================================================
--- branches/daly/version4/doc/manual/figs/sm2small.fig (rev 0)
+++ branches/daly/version4/doc/manual/figs/sm2small.fig 2007-05-24 17:58:57 UTC (rev 250)
@@ -0,0 +1,451 @@
+#FIG 3.1
+Landscape
+Center
+Inches
+1200 2
+6 3225 75 5025 1500
+3 3 1 1 -1 7 2 0 -1 4.000 0 0 0 36
+ 3324 788 3241 713 3249 548 3368 451 3533 293 3616 158
+ 3736 106 3953 151 4096 196 4269 211 4456 173 4621 173
+ 4726 256 4718 413 4741 518 4861 601 4958 751 4928 856
+ 4816 953 4748 1073 4741 1156 4756 1291 4696 1396 4591 1411
+ 4389 1351 4193 1313 4051 1321 3901 1388 3736 1441 3526 1426
+ 3458 1291 3503 1193 3556 968 3473 886 3368 811 3324 788
+ 3333.46 794.59 3302.68 773.16 3253.05 742.00 3223.21 670.18
+ 3228.49 588.61 3268.06 510.25 3341.74 474.21 3407.07 416.47
+ 3499.67 334.29 3556.12 264.35 3585.68 184.29 3641.03 136.30
+ 3703.02 109.38 3791.88 100.27 3903.99 138.24 3986.15 159.63
+ 4062.02 189.26 4135.36 203.80 4228.53 213.31 4313.48 208.46
+ 4412.22 177.40 4493.85 169.19 4580.74 159.01 4653.65 184.35
+ 4710.03 220.76 4744.76 297.39 4714.99 376.54 4720.06 437.93
+ 4725.07 494.25 4762.62 550.24 4836.80 576.03 4890.63 631.57
+ 4950.71 702.06 4962.46 780.92 4942.72 832.92 4908.03 887.32
+ 4838.14 925.97 4795.39 978.16 4757.80 1041.30 4742.08 1092.14
+ 4740.75 1136.81 4741.42 1187.29 4763.02 1257.10 4749.75 1321.18
+ 4724.38 1376.72 4671.11 1412.91 4616.44 1412.87 4540.46 1407.28
+ 4435.76 1362.45 4344.70 1340.15 4239.22 1316.13 4160.08 1310.77
+ 4083.74 1313.05 4013.18 1330.18 3936.08 1374.58 3863.99 1402.16
+ 3776.92 1436.08 3686.29 1446.98 3578.48 1460.97 3488.32 1400.89
+ 3458.77 1333.65 3457.45 1260.57 3494.92 1216.51 3520.31 1142.60
+ 3575.05 1034.24 3546.38 934.57 3493.49 903.25 3450.34 866.92
+ 3393.19 826.48 3358.31 805.04 3333.46 794.59 3302.68 773.16
+4 0 -1 0 0 16 10 0.0000000 4 150 1290 3451 751 BaseRegObjectRef\001
+-6
+6 5850 225 7650 1650
+3 3 1 1 -1 7 2 0 -1 4.000 0 0 0 36
+ 5964 983 5881 908 5889 743 6008 646 6173 488 6256 353
+ 6376 301 6593 346 6736 391 6909 406 7096 368 7261 368
+ 7366 451 7358 608 7381 713 7501 796 7598 946 7568 1051
+ 7456 1148 7388 1268 7381 1351 7396 1486 7336 1591 7231 1606
+ 7029 1546 6833 1508 6691 1516 6541 1583 6376 1636 6166 1621
+ 6098 1486 6143 1388 6196 1163 6113 1081 6008 1006 5964 983
+ 5973.46 989.59 5942.68 968.16 5893.05 937.00 5863.21 865.18
+ 5868.49 783.61 5908.06 705.25 5981.74 669.21 6047.07 611.47
+ 6139.67 529.29 6196.12 459.35 6225.68 379.29 6281.03 331.30
+ 6343.02 304.38 6431.88 295.27 6543.99 333.24 6626.15 354.63
+ 6702.02 384.26 6775.36 398.80 6868.53 408.31 6953.48 403.46
+ 7052.22 372.40 7133.85 364.19 7220.74 354.01 7293.65 379.35
+ 7350.03 415.76 7384.76 492.39 7354.99 571.54 7360.06 632.93
+ 7365.07 689.25 7402.62 745.24 7476.80 771.03 7530.63 826.57
+ 7590.71 897.06 7602.46 975.92 7582.72 1027.92 7548.03 1082.32
+ 7478.14 1120.97 7435.39 1173.16 7397.80 1236.30 7382.08 1287.14
+ 7380.75 1331.81 7381.42 1382.29 7403.02 1452.10 7389.75 1516.18
+ 7364.38 1571.72 7311.11 1607.91 7256.44 1607.87 7180.46 1602.28
+ 7075.76 1557.45 6984.70 1535.15 6879.22 1511.13 6800.08 1505.77
+ 6723.74 1508.05 6653.18 1525.18 6576.08 1569.58 6503.99 1597.16
+ 6416.92 1631.08 6326.29 1641.98 6218.48 1655.97 6128.32 1595.89
+ 6098.77 1528.65 6097.45 1455.57 6134.92 1411.51 6160.31 1337.60
+ 6215.05 1229.24 6186.38 1129.57 6133.49 1098.25 6090.34 1061.92
+ 6033.19 1021.48 5998.31 1000.04 5973.46 989.59 5942.68 968.16
+4 0 -1 0 0 16 10 0.0000000 4 150 735 6301 826 HolderRep\001
+-6
+6 6450 1875 8250 3300
+3 3 1 1 -1 7 2 0 -1 4.000 0 0 0 36
+ 6609 2603 6526 2528 6534 2363 6653 2266 6818 2108 6901 1973
+ 7021 1921 7238 1966 7381 2011 7554 2026 7741 1988 7906 1988
+ 8011 2071 8003 2228 8026 2333 8146 2416 8243 2566 8213 2671
+ 8101 2768 8033 2888 8026 2971 8041 3106 7981 3211 7876 3226
+ 7674 3166 7478 3128 7336 3136 7186 3203 7021 3256 6811 3241
+ 6743 3106 6788 3008 6841 2783 6758 2701 6653 2626 6609 2603
+ 6618.46 2609.59 6587.68 2588.16 6538.05 2557.00 6508.21 2485.18
+ 6513.49 2403.61 6553.06 2325.25 6626.74 2289.21 6692.07 2231.47
+ 6784.67 2149.29 6841.12 2079.35 6870.68 1999.29 6926.03 1951.30
+ 6988.02 1924.38 7076.88 1915.27 7188.99 1953.24 7271.15 1974.63
+ 7347.02 2004.26 7420.36 2018.80 7513.53 2028.31 7598.48 2023.46
+ 7697.22 1992.40 7778.85 1984.19 7865.74 1974.01 7938.65 1999.35
+ 7995.03 2035.76 8029.76 2112.39 7999.99 2191.54 8005.06 2252.93
+ 8010.07 2309.25 8047.62 2365.24 8121.80 2391.03 8175.63 2446.57
+ 8235.71 2517.06 8247.46 2595.92 8227.72 2647.92 8193.03 2702.32
+ 8123.14 2740.97 8080.39 2793.16 8042.80 2856.30 8027.08 2907.14
+ 8025.75 2951.81 8026.42 3002.29 8048.02 3072.10 8034.75 3136.18
+ 8009.38 3191.72 7956.11 3227.91 7901.44 3227.87 7825.46 3222.28
+ 7720.76 3177.45 7629.70 3155.15 7524.22 3131.13 7445.08 3125.77
+ 7368.74 3128.05 7298.18 3145.18 7221.08 3189.58 7148.99 3217.16
+ 7061.92 3251.08 6971.29 3261.98 6863.48 3275.97 6773.32 3215.89
+ 6743.77 3148.65 6742.45 3075.57 6779.92 3031.51 6805.31 2957.60
+ 6860.05 2849.24 6831.38 2749.57 6778.49 2718.25 6735.34 2681.92
+ 6678.19 2641.48 6643.31 2620.04 6618.46 2609.59 6587.68 2588.16
+4 0 -1 0 0 16 10 0.0000000 4 150 435 6976 2476 Group\001
+-6
+6 74 3374 1949 4799
+3 3 1 1 -1 7 2 0 -1 4.000 0 0 0 36
+ 241 4095 158 4020 166 3855 285 3758 450 3600 533 3465
+ 653 3413 870 3458 1013 3503 1186 3518 1373 3480 1538 3480
+ 1643 3563 1635 3720 1658 3825 1778 3908 1875 4058 1845 4163
+ 1733 4260 1665 4380 1658 4463 1673 4598 1613 4703 1508 4718
+ 1306 4658 1110 4620 968 4628 818 4695 653 4748 443 4733
+ 375 4598 420 4500 473 4275 390 4193 285 4118 241 4095
+ 250.46 4101.59 219.68 4080.16 170.05 4049.00 140.21 3977.18
+ 145.49 3895.61 185.06 3817.25 258.74 3781.21 324.07 3723.47
+ 416.67 3641.29 473.12 3571.35 502.68 3491.29 558.03 3443.30
+ 620.02 3416.38 708.88 3407.27 820.99 3445.24 903.15 3466.63
+ 979.02 3496.26 1052.36 3510.80 1145.53 3520.31 1230.48 3515.46
+ 1329.22 3484.40 1410.85 3476.19 1497.74 3466.01 1570.65 3491.35
+ 1627.03 3527.76 1661.76 3604.39 1631.99 3683.54 1637.06 3744.93
+ 1642.07 3801.25 1679.62 3857.24 1753.80 3883.03 1807.63 3938.57
+ 1867.71 4009.06 1879.46 4087.92 1859.72 4139.92 1825.03 4194.32
+ 1755.14 4232.97 1712.39 4285.16 1674.80 4348.30 1659.08 4399.14
+ 1657.75 4443.81 1658.42 4494.29 1680.02 4564.10 1666.75 4628.18
+ 1641.38 4683.72 1588.11 4719.91 1533.44 4719.87 1457.46 4714.28
+ 1352.76 4669.45 1261.70 4647.15 1156.22 4623.13 1077.08 4617.77
+ 1000.74 4620.05 930.18 4637.18 853.08 4681.58 780.99 4709.16
+ 693.92 4743.08 603.29 4753.98 495.48 4767.97 405.32 4707.89
+ 375.77 4640.65 374.45 4567.57 411.92 4523.51 437.31 4449.60
+ 492.05 4341.24 463.38 4241.57 410.49 4210.25 367.34 4173.92
+ 310.19 4133.48 275.31 4112.04 250.46 4101.59 219.68 4080.16
+4 0 -1 0 0 16 10 0.0000000 4 150 1050 450 3975 AbelianToolRep\001
+-6
+6 600 225 2400 1650
+3 3 1 1 -1 7 2 0 -1 4.000 0 0 0 36
+ 714 938 631 863 639 698 758 601 923 443 1006 308
+ 1126 256 1343 301 1486 346 1659 361 1846 323 2011 323
+ 2116 406 2108 563 2131 668 2251 751 2348 901 2318 1006
+ 2206 1103 2138 1223 2131 1306 2146 1441 2086 1546 1981 1561
+ 1779 1501 1583 1463 1441 1471 1291 1538 1126 1591 916 1576
+ 848 1441 893 1343 946 1118 863 1036 758 961 714 938
+ 723.46 944.59 692.68 923.16 643.05 892.00 613.21 820.18
+ 618.49 738.61 658.06 660.25 731.74 624.21 797.07 566.47
+ 889.67 484.29 946.12 414.35 975.68 334.29 1031.03 286.30
+ 1093.02 259.38 1181.88 250.27 1293.99 288.24 1376.15 309.63
+ 1452.02 339.26 1525.36 353.80 1618.53 363.31 1703.48 358.46
+ 1802.22 327.40 1883.85 319.19 1970.74 309.01 2043.65 334.35
+ 2100.03 370.76 2134.76 447.39 2104.99 526.54 2110.06 587.93
+ 2115.07 644.25 2152.62 700.24 2226.80 726.03 2280.63 781.57
+ 2340.71 852.06 2352.46 930.92 2332.72 982.92 2298.03 1037.32
+ 2228.14 1075.97 2185.39 1128.16 2147.80 1191.30 2132.08 1242.14
+ 2130.75 1286.81 2131.42 1337.29 2153.02 1407.10 2139.75 1471.18
+ 2114.38 1526.72 2061.11 1562.91 2006.44 1562.87 1930.46 1557.28
+ 1825.76 1512.45 1734.70 1490.15 1629.22 1466.13 1550.08 1460.77
+ 1473.74 1463.05 1403.18 1480.18 1326.08 1524.58 1253.99 1552.16
+ 1166.92 1586.08 1076.29 1596.98 968.48 1610.97 878.32 1550.89
+ 848.77 1483.65 847.45 1410.57 884.92 1366.51 910.31 1292.60
+ 965.05 1184.24 936.38 1084.57 883.49 1053.25 840.34 1016.92
+ 783.19 976.48 748.31 955.04 723.46 944.59 692.68 923.16
+4 0 -1 0 0 16 10 0.0000000 4 150 1155 901 826 ActiveObjectRep\001
+-6
+6 6374 5174 8174 6599
+3 3 1 1 -1 7 2 0 -1 4.000 0 0 0 36
+ 6523 5880 6440 5805 6448 5640 6567 5543 6732 5385 6815 5250
+ 6935 5198 7152 5243 7295 5288 7468 5303 7655 5265 7820 5265
+ 7925 5348 7917 5505 7940 5610 8060 5693 8157 5843 8127 5948
+ 8015 6045 7947 6165 7940 6248 7955 6383 7895 6488 7790 6503
+ 7588 6443 7392 6405 7250 6413 7100 6480 6935 6533 6725 6518
+ 6657 6383 6702 6285 6755 6060 6672 5978 6567 5903 6523 5880
+ 6532.46 5886.59 6501.68 5865.16 6452.05 5834.00 6422.21 5762.18
+ 6427.49 5680.61 6467.06 5602.25 6540.74 5566.21 6606.07 5508.47
+ 6698.67 5426.29 6755.12 5356.35 6784.68 5276.29 6840.03 5228.30
+ 6902.02 5201.38 6990.88 5192.27 7102.99 5230.24 7185.15 5251.63
+ 7261.02 5281.26 7334.36 5295.80 7427.53 5305.31 7512.48 5300.46
+ 7611.22 5269.40 7692.85 5261.19 7779.74 5251.01 7852.65 5276.35
+ 7909.03 5312.76 7943.76 5389.39 7913.99 5468.54 7919.06 5529.93
+ 7924.07 5586.25 7961.62 5642.24 8035.80 5668.03 8089.63 5723.57
+ 8149.71 5794.06 8161.46 5872.92 8141.72 5924.92 8107.03 5979.32
+ 8037.14 6017.97 7994.39 6070.16 7956.80 6133.30 7941.08 6184.14
+ 7939.75 6228.81 7940.42 6279.29 7962.02 6349.10 7948.75 6413.18
+ 7923.38 6468.72 7870.11 6504.91 7815.44 6504.87 7739.46 6499.28
+ 7634.76 6454.45 7543.70 6432.15 7438.22 6408.13 7359.08 6402.77
+ 7282.74 6405.05 7212.18 6422.18 7135.08 6466.58 7062.99 6494.16
+ 6975.92 6528.08 6885.29 6538.98 6777.48 6552.97 6687.32 6492.89
+ 6657.77 6425.65 6656.45 6352.57 6693.92 6308.51 6719.31 6234.60
+ 6774.05 6126.24 6745.38 6026.57 6692.49 5995.25 6649.34 5958.92
+ 6592.19 5918.48 6557.31 5897.04 6532.46 5886.59 6501.68 5865.16
+4 0 -1 0 0 16 10 0.0000000 4 120 720 6825 5700 DataStore\001
+-6
+6 6449 3449 8249 4874
+3 3 1 1 -1 7 2 0 -1 4.000 0 0 0 36
+ 6596 4183 6513 4108 6521 3943 6640 3846 6805 3688 6888 3553
+ 7008 3501 7225 3546 7368 3591 7541 3606 7728 3568 7893 3568
+ 7998 3651 7990 3808 8013 3913 8133 3996 8230 4146 8200 4251
+ 8088 4348 8020 4468 8013 4551 8028 4686 7968 4791 7863 4806
+ 7661 4746 7465 4708 7323 4716 7173 4783 7008 4836 6798 4821
+ 6730 4686 6775 4588 6828 4363 6745 4281 6640 4206 6596 4183
+ 6605.46 4189.59 6574.68 4168.16 6525.05 4137.00 6495.21 4065.18
+ 6500.49 3983.61 6540.06 3905.25 6613.74 3869.21 6679.07 3811.47
+ 6771.67 3729.29 6828.12 3659.35 6857.68 3579.29 6913.03 3531.30
+ 6975.02 3504.38 7063.88 3495.27 7175.99 3533.24 7258.15 3554.63
+ 7334.02 3584.26 7407.36 3598.80 7500.53 3608.31 7585.48 3603.46
+ 7684.22 3572.40 7765.85 3564.19 7852.74 3554.01 7925.65 3579.35
+ 7982.03 3615.76 8016.76 3692.39 7986.99 3771.54 7992.06 3832.93
+ 7997.07 3889.25 8034.62 3945.24 8108.80 3971.03 8162.63 4026.57
+ 8222.71 4097.06 8234.46 4175.92 8214.72 4227.92 8180.03 4282.32
+ 8110.14 4320.97 8067.39 4373.16 8029.80 4436.30 8014.08 4487.14
+ 8012.75 4531.81 8013.42 4582.29 8035.02 4652.10 8021.75 4716.18
+ 7996.38 4771.72 7943.11 4807.91 7888.44 4807.87 7812.46 4802.28
+ 7707.76 4757.45 7616.70 4735.15 7511.22 4711.13 7432.08 4705.77
+ 7355.74 4708.05 7285.18 4725.18 7208.08 4769.58 7135.99 4797.16
+ 7048.92 4831.08 6958.29 4841.98 6850.48 4855.97 6760.32 4795.89
+ 6730.77 4728.65 6729.45 4655.57 6766.92 4611.51 6792.31 4537.60
+ 6847.05 4429.24 6818.38 4329.57 6765.49 4298.25 6722.34 4261.92
+ 6665.19 4221.48 6630.31 4200.04 6605.46 4189.59 6574.68 4168.16
+4 0 -1 0 0 16 10 0.0000000 4 120 255 6975 4050 ISS\001
+-6
+6 4125 3750 5925 5175
+3 3 1 1 -1 7 2 0 -1 4.000 0 0 0 36
+ 4250 4468 4167 4393 4175 4228 4294 4131 4459 3973 4542 3838
+ 4662 3786 4879 3831 5022 3876 5195 3891 5382 3853 5547 3853
+ 5652 3936 5644 4093 5667 4198 5787 4281 5884 4431 5854 4536
+ 5742 4633 5674 4753 5667 4836 5682 4971 5622 5076 5517 5091
+ 5315 5031 5119 4993 4977 5001 4827 5068 4662 5121 4452 5106
+ 4384 4971 4429 4873 4482 4648 4399 4566 4294 4491 4250 4468
+ 4259.46 4474.59 4228.68 4453.16 4179.05 4422.00 4149.21 4350.18
+ 4154.49 4268.61 4194.06 4190.25 4267.74 4154.21 4333.07 4096.47
+ 4425.67 4014.29 4482.12 3944.35 4511.68 3864.29 4567.03 3816.30
+ 4629.02 3789.38 4717.88 3780.27 4829.99 3818.24 4912.15 3839.63
+ 4988.02 3869.26 5061.36 3883.80 5154.53 3893.31 5239.48 3888.46
+ 5338.22 3857.40 5419.85 3849.19 5506.74 3839.01 5579.65 3864.35
+ 5636.03 3900.76 5670.76 3977.39 5640.99 4056.54 5646.06 4117.93
+ 5651.07 4174.25 5688.62 4230.24 5762.80 4256.03 5816.63 4311.57
+ 5876.71 4382.06 5888.46 4460.92 5868.72 4512.92 5834.03 4567.32
+ 5764.14 4605.97 5721.39 4658.16 5683.80 4721.30 5668.08 4772.14
+ 5666.75 4816.81 5667.42 4867.29 5689.02 4937.10 5675.75 5001.18
+ 5650.38 5056.72 5597.11 5092.91 5542.44 5092.87 5466.46 5087.28
+ 5361.76 5042.45 5270.70 5020.15 5165.22 4996.13 5086.08 4990.77
+ 5009.74 4993.05 4939.18 5010.18 4862.08 5054.58 4789.99 5082.16
+ 4702.92 5116.08 4612.29 5126.98 4504.48 5140.97 4414.32 5080.89
+ 4384.77 5013.65 4383.45 4940.57 4420.92 4896.51 4446.31 4822.60
+ 4501.05 4714.24 4472.38 4614.57 4419.49 4583.25 4376.34 4546.92
+ 4319.19 4506.48 4284.31 4485.04 4259.46 4474.59 4228.68 4453.16
+4 0 -1 0 0 16 10 0.0000000 4 120 480 4576 4351 FPGIC\001
+-6
+6 2099 6599 3899 8024
+3 3 1 1 -1 7 2 0 -1 4.000 0 0 0 36
+ 2258 7312 2175 7237 2183 7072 2302 6975 2467 6817 2550 6682
+ 2670 6630 2887 6675 3030 6720 3203 6735 3390 6697 3555 6697
+ 3660 6780 3652 6937 3675 7042 3795 7125 3892 7275 3862 7380
+ 3750 7477 3682 7597 3675 7680 3690 7815 3630 7920 3525 7935
+ 3323 7875 3127 7837 2985 7845 2835 7912 2670 7965 2460 7950
+ 2392 7815 2437 7717 2490 7492 2407 7410 2302 7335 2258 7312
+ 2267.46 7318.59 2236.68 7297.16 2187.05 7266.00 2157.21 7194.18
+ 2162.49 7112.61 2202.06 7034.25 2275.74 6998.21 2341.07 6940.47
+ 2433.67 6858.29 2490.12 6788.35 2519.68 6708.29 2575.03 6660.30
+ 2637.02 6633.38 2725.88 6624.27 2837.99 6662.24 2920.15 6683.63
+ 2996.02 6713.26 3069.36 6727.80 3162.53 6737.31 3247.48 6732.46
+ 3346.22 6701.40 3427.85 6693.19 3514.74 6683.01 3587.65 6708.35
+ 3644.03 6744.76 3678.76 6821.39 3648.99 6900.54 3654.06 6961.93
+ 3659.07 7018.25 3696.62 7074.24 3770.80 7100.03 3824.63 7155.57
+ 3884.71 7226.06 3896.46 7304.92 3876.72 7356.92 3842.03 7411.32
+ 3772.14 7449.97 3729.39 7502.16 3691.80 7565.30 3676.08 7616.14
+ 3674.75 7660.81 3675.42 7711.29 3697.02 7781.10 3683.75 7845.18
+ 3658.38 7900.72 3605.11 7936.91 3550.44 7936.87 3474.46 7931.28
+ 3369.76 7886.45 3278.70 7864.15 3173.22 7840.13 3094.08 7834.77
+ 3017.74 7837.05 2947.18 7854.18 2870.08 7898.58 2797.99 7926.16
+ 2710.92 7960.08 2620.29 7970.98 2512.48 7984.97 2422.32 7924.89
+ 2392.77 7857.65 2391.45 7784.57 2428.92 7740.51 2454.31 7666.60
+ 2509.05 7558.24 2480.38 7458.57 2427.49 7427.25 2384.34 7390.92
+ 2327.19 7350.48 2292.31 7329.04 2267.46 7318.59 2236.68 7297.16
+4 0 -1 0 0 16 10 0.0000000 4 120 570 2550 7200 Account\001
+-6
+6 2025 4050 3900 5475
+3 3 1 1 -1 7 2 0 -1 4.000 0 0 0 36
+ 2192 4771 2109 4696 2117 4531 2236 4434 2401 4276 2484 4141
+ 2604 4089 2821 4134 2964 4179 3137 4194 3324 4156 3489 4156
+ 3594 4239 3586 4396 3609 4501 3729 4584 3826 4734 3796 4839
+ 3684 4936 3616 5056 3609 5139 3624 5274 3564 5379 3459 5394
+ 3257 5334 3061 5296 2919 5304 2769 5371 2604 5424 2394 5409
+ 2326 5274 2371 5176 2424 4951 2341 4869 2236 4794 2192 4771
+ 2201.46 4777.59 2170.68 4756.16 2121.05 4725.00 2091.21 4653.18
+ 2096.49 4571.61 2136.06 4493.25 2209.74 4457.21 2275.07 4399.47
+ 2367.67 4317.29 2424.12 4247.35 2453.68 4167.29 2509.03 4119.30
+ 2571.02 4092.38 2659.88 4083.27 2771.99 4121.24 2854.15 4142.63
+ 2930.02 4172.26 3003.36 4186.80 3096.53 4196.31 3181.48 4191.46
+ 3280.22 4160.40 3361.85 4152.19 3448.74 4142.01 3521.65 4167.35
+ 3578.03 4203.76 3612.76 4280.39 3582.99 4359.54 3588.06 4420.93
+ 3593.07 4477.25 3630.62 4533.24 3704.80 4559.03 3758.63 4614.57
+ 3818.71 4685.06 3830.46 4763.92 3810.72 4815.92 3776.03 4870.32
+ 3706.14 4908.97 3663.39 4961.16 3625.80 5024.30 3610.08 5075.14
+ 3608.75 5119.81 3609.42 5170.29 3631.02 5240.10 3617.75 5304.18
+ 3592.38 5359.72 3539.11 5395.91 3484.44 5395.87 3408.46 5390.28
+ 3303.76 5345.45 3212.70 5323.15 3107.22 5299.13 3028.08 5293.77
+ 2951.74 5296.05 2881.18 5313.18 2804.08 5357.58 2731.99 5385.16
+ 2644.92 5419.08 2554.29 5429.98 2446.48 5443.97 2356.32 5383.89
+ 2326.77 5316.65 2325.45 5243.57 2362.92 5199.51 2388.31 5125.60
+ 2443.05 5017.24 2414.38 4917.57 2361.49 4886.25 2318.34 4849.92
+ 2261.19 4809.48 2226.31 4788.04 2201.46 4777.59 2170.68 4756.16
+4 0 -1 0 0 16 10 0.0000000 4 150 1275 2326 4726 WordProbToolRep\001
+-6
+6 2250 2250 4050 3675
+3 3 1 1 -1 7 2 0 -1 4.000 0 0 0 36
+ 2394 2971 2311 2896 2319 2731 2438 2634 2603 2476 2686 2341
+ 2806 2289 3023 2334 3166 2379 3339 2394 3526 2356 3691 2356
+ 3796 2439 3788 2596 3811 2701 3931 2784 4028 2934 3998 3039
+ 3886 3136 3818 3256 3811 3339 3826 3474 3766 3579 3661 3594
+ 3459 3534 3263 3496 3121 3504 2971 3571 2806 3624 2596 3609
+ 2528 3474 2573 3376 2626 3151 2543 3069 2438 2994 2394 2971
+ 2403.46 2977.59 2372.68 2956.16 2323.05 2925.00 2293.21 2853.18
+ 2298.49 2771.61 2338.06 2693.25 2411.74 2657.21 2477.07 2599.47
+ 2569.67 2517.29 2626.12 2447.35 2655.68 2367.29 2711.03 2319.30
+ 2773.02 2292.38 2861.88 2283.27 2973.99 2321.24 3056.15 2342.63
+ 3132.02 2372.26 3205.36 2386.80 3298.53 2396.31 3383.48 2391.46
+ 3482.22 2360.40 3563.85 2352.19 3650.74 2342.01 3723.65 2367.35
+ 3780.03 2403.76 3814.76 2480.39 3784.99 2559.54 3790.06 2620.93
+ 3795.07 2677.25 3832.62 2733.24 3906.80 2759.03 3960.63 2814.57
+ 4020.71 2885.06 4032.46 2963.92 4012.72 3015.92 3978.03 3070.32
+ 3908.14 3108.97 3865.39 3161.16 3827.80 3224.30 3812.08 3275.14
+ 3810.75 3319.81 3811.42 3370.29 3833.02 3440.10 3819.75 3504.18
+ 3794.38 3559.72 3741.11 3595.91 3686.44 3595.87 3610.46 3590.28
+ 3505.76 3545.45 3414.70 3523.15 3309.22 3499.13 3230.08 3493.77
+ 3153.74 3496.05 3083.18 3513.18 3006.08 3557.58 2933.99 3585.16
+ 2846.92 3619.08 2756.29 3629.98 2648.48 3643.97 2558.32 3583.89
+ 2528.77 3516.65 2527.45 3443.57 2564.92 3399.51 2590.31 3325.60
+ 2645.05 3217.24 2616.38 3117.57 2563.49 3086.25 2520.34 3049.92
+ 2463.19 3009.48 2428.31 2988.04 2403.46 2977.59 2372.68 2956.16
+4 0 -1 0 0 16 10 0.0000000 4 150 900 2701 2851 Computation\001
+4 0 -1 0 0 16 10 0.0000000 4 150 600 2701 3076 Manager\001
+-6
+6 4725 6000 6525 7425
+3 3 1 1 -1 7 2 0 -1 4.000 0 0 0 36
+ 4824 6713 4741 6638 4749 6473 4868 6376 5033 6218 5116 6083
+ 5236 6031 5453 6076 5596 6121 5769 6136 5956 6098 6121 6098
+ 6226 6181 6218 6338 6241 6443 6361 6526 6458 6676 6428 6781
+ 6316 6878 6248 6998 6241 7081 6256 7216 6196 7321 6091 7336
+ 5889 7276 5693 7238 5551 7246 5401 7313 5236 7366 5026 7351
+ 4958 7216 5003 7118 5056 6893 4973 6811 4868 6736 4824 6713
+ 4833.46 6719.59 4802.68 6698.16 4753.05 6667.00 4723.21 6595.18
+ 4728.49 6513.61 4768.06 6435.25 4841.74 6399.21 4907.07 6341.47
+ 4999.67 6259.29 5056.12 6189.35 5085.68 6109.29 5141.03 6061.30
+ 5203.02 6034.38 5291.88 6025.27 5403.99 6063.24 5486.15 6084.63
+ 5562.02 6114.26 5635.36 6128.80 5728.53 6138.31 5813.48 6133.46
+ 5912.22 6102.40 5993.85 6094.19 6080.74 6084.01 6153.65 6109.35
+ 6210.03 6145.76 6244.76 6222.39 6214.99 6301.54 6220.06 6362.93
+ 6225.07 6419.25 6262.62 6475.24 6336.80 6501.03 6390.63 6556.57
+ 6450.71 6627.06 6462.46 6705.92 6442.72 6757.92 6408.03 6812.32
+ 6338.14 6850.97 6295.39 6903.16 6257.80 6966.30 6242.08 7017.14
+ 6240.75 7061.81 6241.42 7112.29 6263.02 7182.10 6249.75 7246.18
+ 6224.38 7301.72 6171.11 7337.91 6116.44 7337.87 6040.46 7332.28
+ 5935.76 7287.45 5844.70 7265.15 5739.22 7241.13 5660.08 7235.77
+ 5583.74 7238.05 5513.18 7255.18 5436.08 7299.58 5363.99 7327.16
+ 5276.92 7361.08 5186.29 7371.98 5078.48 7385.97 4988.32 7325.89
+ 4958.77 7258.65 4957.45 7185.57 4994.92 7141.51 5020.31 7067.60
+ 5075.05 6959.24 5046.38 6859.57 4993.49 6828.25 4950.34 6791.92
+ 4893.19 6751.48 4858.31 6730.04 4833.46 6719.59 4802.68 6698.16
+4 0 -1 0 0 16 10 0.0000000 4 120 465 5176 6601 Broker\001
+-6
+6 149 6599 1949 8024
+3 3 1 1 -1 7 2 0 -1 4.000 0 0 0 36
+ 256 7312 173 7237 181 7072 300 6975 465 6817 548 6682
+ 668 6630 885 6675 1028 6720 1201 6735 1388 6697 1553 6697
+ 1658 6780 1650 6937 1673 7042 1793 7125 1890 7275 1860 7380
+ 1748 7477 1680 7597 1673 7680 1688 7815 1628 7920 1523 7935
+ 1321 7875 1125 7837 983 7845 833 7912 668 7965 458 7950
+ 390 7815 435 7717 488 7492 405 7410 300 7335 256 7312
+ 265.46 7318.59 234.68 7297.16 185.05 7266.00 155.21 7194.18
+ 160.49 7112.61 200.06 7034.25 273.74 6998.21 339.07 6940.47
+ 431.67 6858.29 488.12 6788.35 517.68 6708.29 573.03 6660.30
+ 635.02 6633.38 723.88 6624.27 835.99 6662.24 918.15 6683.63
+ 994.02 6713.26 1067.36 6727.80 1160.53 6737.31 1245.48 6732.46
+ 1344.22 6701.40 1425.85 6693.19 1512.74 6683.01 1585.65 6708.35
+ 1642.03 6744.76 1676.76 6821.39 1646.99 6900.54 1652.06 6961.93
+ 1657.07 7018.25 1694.62 7074.24 1768.80 7100.03 1822.63 7155.57
+ 1882.71 7226.06 1894.46 7304.92 1874.72 7356.92 1840.03 7411.32
+ 1770.14 7449.97 1727.39 7502.16 1689.80 7565.30 1674.08 7616.14
+ 1672.75 7660.81 1673.42 7711.29 1695.02 7781.10 1681.75 7845.18
+ 1656.38 7900.72 1603.11 7936.91 1548.44 7936.87 1472.46 7931.28
+ 1367.76 7886.45 1276.70 7864.15 1171.22 7840.13 1092.08 7834.77
+ 1015.74 7837.05 945.18 7854.18 868.08 7898.58 795.99 7926.16
+ 708.92 7960.08 618.29 7970.98 510.48 7984.97 420.32 7924.89
+ 390.77 7857.65 389.45 7784.57 426.92 7740.51 452.31 7666.60
+ 507.05 7558.24 478.38 7458.57 425.49 7427.25 382.34 7390.92
+ 325.19 7350.48 290.31 7329.04 265.46 7318.59 234.68 7297.16
+4 0 -1 0 0 16 10 0.0000000 4 120 945 525 7125 WordChecker\001
+4 0 -1 0 0 16 10 0.0000000 4 150 420 525 7350 Agent\001
+-6
+6 4049 1724 5849 3149
+3 3 1 1 -1 7 2 0 -1 4.000 0 0 0 36
+ 4201 2476 4118 2401 4126 2236 4245 2139 4410 1981 4493 1846
+ 4613 1794 4830 1839 4973 1884 5146 1899 5333 1861 5498 1861
+ 5603 1944 5595 2101 5618 2206 5738 2289 5835 2439 5805 2544
+ 5693 2641 5625 2761 5618 2844 5633 2979 5573 3084 5468 3099
+ 5266 3039 5070 3001 4928 3009 4778 3076 4613 3129 4403 3114
+ 4335 2979 4380 2881 4433 2656 4350 2574 4245 2499 4201 2476
+ 4210.46 2482.59 4179.68 2461.16 4130.05 2430.00 4100.21 2358.18
+ 4105.49 2276.61 4145.06 2198.25 4218.74 2162.21 4284.07 2104.47
+ 4376.67 2022.29 4433.12 1952.35 4462.68 1872.29 4518.03 1824.30
+ 4580.02 1797.38 4668.88 1788.27 4780.99 1826.24 4863.15 1847.63
+ 4939.02 1877.26 5012.36 1891.80 5105.53 1901.31 5190.48 1896.46
+ 5289.22 1865.40 5370.85 1857.19 5457.74 1847.01 5530.65 1872.35
+ 5587.03 1908.76 5621.76 1985.39 5591.99 2064.54 5597.06 2125.93
+ 5602.07 2182.25 5639.62 2238.24 5713.80 2264.03 5767.63 2319.57
+ 5827.71 2390.06 5839.46 2468.92 5819.72 2520.92 5785.03 2575.32
+ 5715.14 2613.97 5672.39 2666.16 5634.80 2729.30 5619.08 2780.14
+ 5617.75 2824.81 5618.42 2875.29 5640.02 2945.10 5626.75 3009.18
+ 5601.38 3064.72 5548.11 3100.91 5493.44 3100.87 5417.46 3095.28
+ 5312.76 3050.45 5221.70 3028.15 5116.22 3004.13 5037.08 2998.77
+ 4960.74 3001.05 4890.18 3018.18 4813.08 3062.58 4740.99 3090.16
+ 4653.92 3124.08 4563.29 3134.98 4455.48 3148.97 4365.32 3088.89
+ 4335.77 3021.65 4334.45 2948.57 4371.92 2904.51 4397.31 2830.60
+ 4452.05 2722.24 4423.38 2622.57 4370.49 2591.25 4327.34 2554.92
+ 4270.19 2514.48 4235.31 2493.04 4210.46 2482.59 4179.68 2461.16
+4 0 -1 0 0 16 10 0.0000000 4 150 1260 4350 2400 Class Membership\001
+4 0 -1 0 0 16 10 0.0000000 4 120 765 4575 2625 Determiner\001
+-6
+1 3 0 1 -1 0 0 0 20 0.0000000 1 0.000 5101 5100 75 75 5101 5100 5176 5175
+1 3 0 1 -1 0 0 0 20 0.0000000 1 0.000 5775 4800 75 75 5775 4800 5850 4875
+1 3 0 1 -1 0 0 0 20 0.0000000 1 0.000 5925 4275 75 75 5925 4275 6000 4350
+1 3 0 1 -1 0 0 0 20 0.0000000 1 0.000 6750 1650 75 75 6750 1650 6825 1725
+1 3 0 1 -1 0 0 0 20 0.0000000 1 0.000 5100 3750 75 75 5100 3750 5175 3825
+1 3 0 1 -1 0 0 0 20 0.0000000 1 0.000 4275 3975 75 75 4275 3975 4350 4050
+1 3 0 1 -1 0 0 0 20 0.0000000 1 0.000 1575 4875 75 75 1575 4875 1650 4950
+1 3 0 1 -1 0 0 0 20 0.0000000 1 0.000 750 4875 75 75 750 4875 825 4950
+1 3 0 1 -1 0 0 0 20 0.0000000 1 0.000 2325 5550 75 75 2325 5550 2400 5625
+1 3 0 1 -1 0 0 0 20 0.0000000 1 0.000 3375 5550 75 75 3375 5550 3450 5625
+1 3 0 1 -1 0 0 0 20 0.0000000 1 0.000 6225 1800 75 75 6225 1800 6300 1875
+2 1 0 1 -1 7 0 0 20 0.000 0 0 -1 1 0 2
+ 1 1 1.00 60.00 120.00
+ 2475 900 3150 750
+2 1 0 1 -1 7 0 0 20 0.000 0 0 -1 1 0 2
+ 1 1 1.00 60.00 120.00
+ 5775 750 5100 750
+2 1 0 1 -1 7 0 0 20 0.000 0 0 -1 1 0 2
+ 1 1 1.00 60.00 120.00
+ 750 3300 975 1725
+2 1 0 1 -1 7 0 0 20 0.000 0 0 -1 0 0 2
+ 6750 1650 6900 1875
+2 1 0 1 -1 7 0 0 20 0.000 0 0 -1 0 0 2
+ 5925 4275 6450 4125
+2 1 0 1 -1 7 0 0 20 0.000 0 0 -1 0 0 2
+ 5775 4800 6525 5400
+2 1 0 1 -1 7 0 0 20 0.000 0 0 -1 0 0 2
+ 750 4800 900 6525
+2 1 0 1 -1 7 0 0 20 0.000 0 0 -1 0 0 2
+ 1575 4875 2400 6675
+2 1 0 1 -1 7 0 0 20 0.000 0 0 -1 1 0 2
+ 1 1 1.00 60.00 120.00
+ 2400 2400 2100 1650
+2 1 0 1 -1 7 0 0 20 0.000 0 0 -1 1 0 2
+ 1 1 1.00 60.00 120.00
+ 2250 4200 1650 1650
+2 1 0 1 -1 7 0 0 20 0.000 0 0 -1 0 0 2
+ 4275 3975 3900 3675
+2 1 0 1 -1 7 0 0 20 0.000 0 0 -1 1 0 2
+ 1 1 1.00 60.00 120.00
+ 4200 2025 2250 1350
+2 1 0 1 -1 7 0 0 20 0.000 0 0 -1 0 0 2
+ 4800 3150 5100 3750
+2 1 0 1 -1 7 0 0 20 0.000 0 0 -1 0 0 2
+ 5100 5100 5250 5850
+2 1 0 1 -1 7 0 0 20 0.000 0 0 -1 0 0 2
+ 2325 5550 1650 6600
+2 1 0 1 -1 7 0 0 20 0.000 0 0 -1 0 0 2
+ 3375 5550 3450 6600
+2 1 0 1 -1 7 0 0 20 0.000 0 0 -1 0 0 2
+ 6225 1800 5625 3750
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <ybr...@us...> - 2007-05-24 17:41:43
|
Revision: 249
http://svn.sourceforge.net/magnus/?rev=249&view=rev
Author: ybryukhov
Date: 2007-05-24 10:41:39 -0700 (Thu, 24 May 2007)
Log Message:
-----------
more
Added Paths:
-----------
branches/daly/version13/src/back_end/KB/test/test-kbmag_small.C
Removed Paths:
-------------
branches/daly/version13/src/back_end/KB/test/test-kbmag.C
Deleted: branches/daly/version13/src/back_end/KB/test/test-kbmag.C
===================================================================
Copied: branches/daly/version13/src/back_end/KB/test/test-kbmag_small.C (from rev 248, branches/daly/version13/src/back_end/KB/test/test-kbmag.C)
===================================================================
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <ybr...@us...> - 2007-05-24 16:58:08
|
Revision: 248
http://svn.sourceforge.net/magnus/?rev=248&view=rev
Author: ybryukhov
Date: 2007-05-24 09:57:59 -0700 (Thu, 24 May 2007)
Log Message:
-----------
again
Added Paths:
-----------
branches/daly/version13/src/doc/magnus_html/class_SGofNGinitPreimageARCer-members_small.html
Removed Paths:
-------------
branches/daly/version13/src/doc/magnus_html/class_SGofNGinitPreimageARCer-members.html
Deleted: branches/daly/version13/src/doc/magnus_html/class_SGofNGinitPreimageARCer-members.html
===================================================================
--- branches/daly/version13/src/doc/magnus_html/class_SGofNGinitPreimageARCer-members.html 2007-05-24 16:57:33 UTC (rev 247)
+++ branches/daly/version13/src/doc/magnus_html/class_SGofNGinitPreimageARCer-members.html 2007-05-24 16:57:59 UTC (rev 248)
@@ -1,37 +0,0 @@
-<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
-<html><head><meta name="robots" content="noindex">
-<meta http-equiv="Content-Type" content="text/html;charset=iso-8859-1">
-<title>Member List</title>
-<link href="doxygen.css" rel="stylesheet" type="text/css">
-</head><body bgcolor="#ffffff">
-<!-- Generated by Doxygen 1.2.6 -->
-<center>
-<a class="qindex" href="index.html">Main Page</a> <a class="qindex" href="hierarchy.html">Class Hierarchy</a> <a class="qindex" href="annotated.html">Compound List</a> <a class="qindex" href="files.html">File List</a> <a class="qindex" href="functions.html">Compound Members</a> <a class="qindex" href="globals.html">File Members</a> </center>
-<hr><h1>SGofNGinitPreimageARCer Member List</h1>This is the complete list of members for <a class="el" href="class_SGofNGinitPreimageARCer.html">SGofNGinitPreimageARCer</a>, including all inherited members.<ul>
-<li><a class="el" href="class_ARCer.html#a0">ARCer</a>(ComputationManager &boss, const int delay=1)
-<li><a class="el" href="class_ARCer.html#n2">bInterrupted</a>
-<code> [protected]</code><li><a class="el" href="class_ARCer.html#a3">delay</a>()
-<code> [inline]</code><li><a class="el" href="class_ARCer.html#a2">getPid</a>()
-<code> [inline]</code><li><a class="el" href="class_SGofNGinitPreimageARCer.html#a3">getSubgroup</a>() const
-<li><a class="el" href="class_ARCer.html#a1">isInterrupted</a>()
-<code> [inline]</code><li><a class="el" href="class_ARCer.html#n0">pid</a>
-<code> [protected]</code><li><a class="el" href="class_SGofNGinitPreimageARCer.html#a6">readResults</a>(istream &)
-<code> [virtual]</code><li><a class="el" href="class_SGofNGinitPreimageARCer.html#a4">runComputation</a>()
-<code> [virtual]</code><li><a class="el" href="class_SGofNGinitPreimageARCer.html#a2">setArguments</a>(const NilpotentGroup &NG, const VectorOf< Word > &gens)
-<li><a class="el" href="class_SGofNGinitPreimageARCer.html#a0">SGofNGinitPreimageARCer</a>(ComputationManager &boss)
-<li><a class="el" href="class_ARCer.html#m0">startDir</a>
-<li><a class="el" href="class_ARCer.html#a4">takeControl</a>()
-<code> [virtual]</code><li><a class="el" href="class_ARCer.html#a5">terminate</a>()
-<code> [virtual]</code><li><a class="el" href="class_ARCer.html#n3">theBoss</a>
-<code> [protected]</code><li><a class="el" href="class_ARCer.html#n1">theDelay</a>
-<code> [protected]</code><li><a class="el" href="class_SGofNGinitPreimageARCer.html#o0">theSubgroup</a>
-<code> [private]</code><li><a class="el" href="class_SGofNGinitPreimageARCer.html#a5">writeResults</a>(ostream &)
-<code> [virtual]</code><li><a class="el" href="class_SGofNGinitPreimageARCer.html#a1">~SGofNGinitPreimageARCer</a>()
-</ul>
-<hr><address><small>Generated at Tue Jun 19 09:50:06 2001 for Magnus Classes by
-<a href="http://www.doxygen.org/index.html">
-<img src="doxygen.gif" alt="doxygen" align="middle" border=0
-width=110 height=53></a>1.2.6 written by <a href="mailto:di...@st...">Dimitri van Heesch</a>,
- © 1997-2001</small></address>
-</body>
-</html>
Copied: branches/daly/version13/src/doc/magnus_html/class_SGofNGinitPreimageARCer-members_small.html (from rev 247, branches/daly/version13/src/doc/magnus_html/class_SGofNGinitPreimageARCer-members.html)
===================================================================
--- branches/daly/version13/src/doc/magnus_html/class_SGofNGinitPreimageARCer-members_small.html (rev 0)
+++ branches/daly/version13/src/doc/magnus_html/class_SGofNGinitPreimageARCer-members_small.html 2007-05-24 16:57:59 UTC (rev 248)
@@ -0,0 +1,37 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
+<html><head><meta name="robots" content="noindex">
+<meta http-equiv="Content-Type" content="text/html;charset=iso-8859-1">
+<title>Member List</title>
+<link href="doxygen.css" rel="stylesheet" type="text/css">
+</head><body bgcolor="#ffffff">
+<!-- Generated by Doxygen 1.2.6 -->
+<center>
+<a class="qindex" href="index.html">Main Page</a> <a class="qindex" href="hierarchy.html">Class Hierarchy</a> <a class="qindex" href="annotated.html">Compound List</a> <a class="qindex" href="files.html">File List</a> <a class="qindex" href="functions.html">Compound Members</a> <a class="qindex" href="globals.html">File Members</a> </center>
+<hr><h1>SGofNGinitPreimageARCer Member List</h1>This is the complete list of members for <a class="el" href="class_SGofNGinitPreimageARCer.html">SGofNGinitPreimageARCer</a>, including all inherited members.<ul>
+<li><a class="el" href="class_ARCer.html#a0">ARCer</a>(ComputationManager &boss, const int delay=1)
+<li><a class="el" href="class_ARCer.html#n2">bInterrupted</a>
+<code> [protected]</code><li><a class="el" href="class_ARCer.html#a3">delay</a>()
+<code> [inline]</code><li><a class="el" href="class_ARCer.html#a2">getPid</a>()
+<code> [inline]</code><li><a class="el" href="class_SGofNGinitPreimageARCer.html#a3">getSubgroup</a>() const
+<li><a class="el" href="class_ARCer.html#a1">isInterrupted</a>()
+<code> [inline]</code><li><a class="el" href="class_ARCer.html#n0">pid</a>
+<code> [protected]</code><li><a class="el" href="class_SGofNGinitPreimageARCer.html#a6">readResults</a>(istream &)
+<code> [virtual]</code><li><a class="el" href="class_SGofNGinitPreimageARCer.html#a4">runComputation</a>()
+<code> [virtual]</code><li><a class="el" href="class_SGofNGinitPreimageARCer.html#a2">setArguments</a>(const NilpotentGroup &NG, const VectorOf< Word > &gens)
+<li><a class="el" href="class_SGofNGinitPreimageARCer.html#a0">SGofNGinitPreimageARCer</a>(ComputationManager &boss)
+<li><a class="el" href="class_ARCer.html#m0">startDir</a>
+<li><a class="el" href="class_ARCer.html#a4">takeControl</a>()
+<code> [virtual]</code><li><a class="el" href="class_ARCer.html#a5">terminate</a>()
+<code> [virtual]</code><li><a class="el" href="class_ARCer.html#n3">theBoss</a>
+<code> [protected]</code><li><a class="el" href="class_ARCer.html#n1">theDelay</a>
+<code> [protected]</code><li><a class="el" href="class_SGofNGinitPreimageARCer.html#o0">theSubgroup</a>
+<code> [private]</code><li><a class="el" href="class_SGofNGinitPreimageARCer.html#a5">writeResults</a>(ostream &)
+<code> [virtual]</code><li><a class="el" href="class_SGofNGinitPreimageARCer.html#a1">~SGofNGinitPreimageARCer</a>()
+</ul>
+<hr><address><small>Generated at Tue Jun 19 09:50:06 2001 for Magnus Classes by
+<a href="http://www.doxygen.org/index.html">
+<img src="doxygen.gif" alt="doxygen" align="middle" border=0
+width=110 height=53></a>1.2.6 written by <a href="mailto:di...@st...">Dimitri van Heesch</a>,
+ © 1997-2001</small></address>
+</body>
+</html>
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <ybr...@us...> - 2007-05-24 16:57:39
|
Revision: 247
http://svn.sourceforge.net/magnus/?rev=247&view=rev
Author: ybryukhov
Date: 2007-05-24 09:57:33 -0700 (Thu, 24 May 2007)
Log Message:
-----------
again
Added Paths:
-----------
branches/daly/version13/src/doc/magnus_html/class_SGofNGinitPreimageARCer_small.html
Removed Paths:
-------------
branches/daly/version13/src/doc/magnus_html/class_SGofNGinitPreimageARCer.html
Deleted: branches/daly/version13/src/doc/magnus_html/class_SGofNGinitPreimageARCer.html
===================================================================
--- branches/daly/version13/src/doc/magnus_html/class_SGofNGinitPreimageARCer.html 2007-05-24 16:57:10 UTC (rev 246)
+++ branches/daly/version13/src/doc/magnus_html/class_SGofNGinitPreimageARCer.html 2007-05-24 16:57:33 UTC (rev 247)
@@ -1,283 +0,0 @@
-<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
-<html><head><meta name="robots" content="noindex">
-<meta http-equiv="Content-Type" content="text/html;charset=iso-8859-1">
-<title>SGofNGinitPreimageARCer class Reference</title>
-<link href="doxygen.css" rel="stylesheet" type="text/css">
-</head><body bgcolor="#ffffff">
-<!-- Generated by Doxygen 1.2.6 -->
-<center>
-<a class="qindex" href="index.html">Main Page</a> <a class="qindex" href="hierarchy.html">Class Hierarchy</a> <a class="qindex" href="annotated.html">Compound List</a> <a class="qindex" href="files.html">File List</a> <a class="qindex" href="functions.html">Compound Members</a> <a class="qindex" href="globals.html">File Members</a> </center>
-<hr><h1>SGofNGinitPreimageARCer Class Reference</h1><code>#include <<a class="el" href="SGNilpotentQuotients_h-source.html">SGNilpotentQuotients.h</a>></code>
-<p>
-<p>Inheritance diagram for SGofNGinitPreimageARCer::
-<p><center><img src="class_SGofNGinitPreimageARCer.gif" usemap="#SGofNGinitPreimageARCer_map" border="0"></center>
-<map name="SGofNGinitPreimageARCer_map">
-<area href="class_ARCer.html" alt="ARCer" shape="rect" coords="0,0,165,24">
-</map>
-<a href="class_SGofNGinitPreimageARCer-members.html">List of all members.</a><table border=0 cellpadding=0 cellspacing=0>
-<tr><td colspan=2><br><h2>Public Methods</h2></td></tr>
-<tr><td nowrap align=right valign=top> </td><td valign=bottom><a class="el" href="class_SGofNGinitPreimageARCer.html#a0">SGofNGinitPreimageARCer</a> (<a class="el" href="class_ComputationManager.html">ComputationManager</a> &boss)</td></tr>
-<tr><td nowrap align=right valign=top> </td><td valign=bottom><a class="el" href="class_SGofNGinitPreimageARCer.html#a1">~SGofNGinitPreimageARCer</a> ()</td></tr>
-<tr><td nowrap align=right valign=top>void </td><td valign=bottom><a class="el" href="class_SGofNGinitPreimageARCer.html#a2">setArguments</a> (const <a class="el" href="class_NilpotentGroup.html">NilpotentGroup</a> &NG, const <a class="el" href="class_VectorOf.html">VectorOf</a>< <a class="el" href="class_Word.html">Word</a> > &gens)</td></tr>
-<tr><td nowrap align=right valign=top>const <a class="el" href="class_SGOfNilpotentGroup.html">SGOfNilpotentGroup</a>& </td><td valign=bottom><a class="el" href="class_SGofNGinitPreimageARCer.html#a3">getSubgroup</a> () const</td></tr>
-<tr><td nowrap align=right valign=top>void </td><td valign=bottom><a class="el" href="class_SGofNGinitPreimageARCer.html#a4">runComputation</a> ()</td></tr>
-<tr><td nowrap align=right valign=top>void </td><td valign=bottom><a class="el" href="class_SGofNGinitPreimageARCer.html#a5">writeResults</a> (ostream &)</td></tr>
-<tr><td nowrap align=right valign=top>void </td><td valign=bottom><a class="el" href="class_SGofNGinitPreimageARCer.html#a6">readResults</a> (istream &)</td></tr>
-<tr><td colspan=2><br><h2>Private Attributes</h2></td></tr>
-<tr><td nowrap align=right valign=top><a class="el" href="class_SGOfNilpotentGroup.html">SGOfNilpotentGroup</a>* </td><td valign=bottom><a class="el" href="class_SGofNGinitPreimageARCer.html#o0">theSubgroup</a></td></tr>
-</table>
-<hr><h2>Constructor & Destructor Documentation</h2>
-<a name="a0" doxytag="SGofNGinitPreimageARCer::SGofNGinitPreimageARCer"></a><p>
-<table width="100%" cellpadding="2" cellspacing="0" border="0">
- <tr>
- <td class="md">
- <table cellpadding="0" cellspacing="0" border="0">
- <tr>
- <td nowrap valign="top"><b>
-SGofNGinitPreimageARCer::SGofNGinitPreimageARCer (
- </b></td>
- <td valign="bottom"><b>
-<a class="el" href="class_ComputationManager.html">ComputationManager</a> & <em>boss</em> )
- </b></td>
- </tr>
-
- </table>
- </td>
- </tr>
-</table>
-<table cellspacing=5 cellpadding=0 border=0>
- <tr>
- <td>
-
- </td>
- <td>
-
-<p>
- </td>
- </tr>
-</table>
-<a name="a1" doxytag="SGofNGinitPreimageARCer::~SGofNGinitPreimageARCer"></a><p>
-<table width="100%" cellpadding="2" cellspacing="0" border="0">
- <tr>
- <td class="md">
- <table cellpadding="0" cellspacing="0" border="0">
- <tr>
- <td nowrap valign="top"><b>
-SGofNGinitPreimageARCer::~SGofNGinitPreimageARCer (
- </b></td>
- <td valign="bottom"><b>
-)
- </b></td>
- </tr>
-
- </table>
- </td>
- </tr>
-</table>
-<table cellspacing=5 cellpadding=0 border=0>
- <tr>
- <td>
-
- </td>
- <td>
-
-<p>
- </td>
- </tr>
-</table>
-<hr><h2>Member Function Documentation</h2>
-<a name="a2" doxytag="SGofNGinitPreimageARCer::setArguments"></a><p>
-<table width="100%" cellpadding="2" cellspacing="0" border="0">
- <tr>
- <td class="md">
- <table cellpadding="0" cellspacing="0" border="0">
- <tr>
- <td nowrap valign="top"><b>
-void SGofNGinitPreimageARCer::setArguments (
- </b></td>
- <td valign="bottom"><b>
-const <a class="el" href="class_NilpotentGroup.html">NilpotentGroup</a> & <em>NG</em>,
- </b></td>
- </tr>
- <tr>
- <td></td>
- <td><b>
-const <a class="el" href="class_VectorOf.html">VectorOf</a>< <a class="el" href="class_Word.html">Word</a> > & <em>gens</em> )
- </b></td>
- </tr>
-
- </table>
- </td>
- </tr>
-</table>
-<table cellspacing=5 cellpadding=0 border=0>
- <tr>
- <td>
-
- </td>
- <td>
-
-<p>
- </td>
- </tr>
-</table>
-<a name="a3" doxytag="SGofNGinitPreimageARCer::getSubgroup"></a><p>
-<table width="100%" cellpadding="2" cellspacing="0" border="0">
- <tr>
- <td class="md">
- <table cellpadding="0" cellspacing="0" border="0">
- <tr>
- <td nowrap valign="top"><b>
-const <a class="el" href="class_SGOfNilpotentGroup.html">SGOfNilpotentGroup</a>& SGofNGinitPreimageARCer::getSubgroup (
- </b></td>
- <td valign="bottom"><b>
-) const
- </b></td>
- </tr>
-
- </table>
- </td>
- </tr>
-</table>
-<table cellspacing=5 cellpadding=0 border=0>
- <tr>
- <td>
-
- </td>
- <td>
-
-<p>
- </td>
- </tr>
-</table>
-<a name="a4" doxytag="SGofNGinitPreimageARCer::runComputation"></a><p>
-<table width="100%" cellpadding="2" cellspacing="0" border="0">
- <tr>
- <td class="md">
- <table cellpadding="0" cellspacing="0" border="0">
- <tr>
- <td nowrap valign="top"><b>
-void SGofNGinitPreimageARCer::runComputation (
- </b></td>
- <td valign="bottom"><b>
-)<code> [virtual]</code>
- </b></td>
- </tr>
-
- </table>
- </td>
- </tr>
-</table>
-<table cellspacing=5 cellpadding=0 border=0>
- <tr>
- <td>
-
- </td>
- <td>
-
-<p>
-
-<p>
-Reimplemented from <a class="el" href="class_ARCer.html#a6">ARCer</a>. </td>
- </tr>
-</table>
-<a name="a5" doxytag="SGofNGinitPreimageARCer::writeResults"></a><p>
-<table width="100%" cellpadding="2" cellspacing="0" border="0">
- <tr>
- <td class="md">
- <table cellpadding="0" cellspacing="0" border="0">
- <tr>
- <td nowrap valign="top"><b>
-void SGofNGinitPreimageARCer::writeResults (
- </b></td>
- <td valign="bottom"><b>
-ostream & <em>ostr</em> )<code> [virtual]</code>
- </b></td>
- </tr>
-
- </table>
- </td>
- </tr>
-</table>
-<table cellspacing=5 cellpadding=0 border=0>
- <tr>
- <td>
-
- </td>
- <td>
-
-<p>
-
-<p>
-Reimplemented from <a class="el" href="class_ARCer.html#a7">ARCer</a>. </td>
- </tr>
-</table>
-<a name="a6" doxytag="SGofNGinitPreimageARCer::readResults"></a><p>
-<table width="100%" cellpadding="2" cellspacing="0" border="0">
- <tr>
- <td class="md">
- <table cellpadding="0" cellspacing="0" border="0">
- <tr>
- <td nowrap valign="top"><b>
-void SGofNGinitPreimageARCer::readResults (
- </b></td>
- <td valign="bottom"><b>
-istream & <em>istr</em> )<code> [virtual]</code>
- </b></td>
- </tr>
-
- </table>
- </td>
- </tr>
-</table>
-<table cellspacing=5 cellpadding=0 border=0>
- <tr>
- <td>
-
- </td>
- <td>
-
-<p>
-
-<p>
-Reimplemented from <a class="el" href="class_ARCer.html#a8">ARCer</a>. </td>
- </tr>
-</table>
-<hr><h2>Member Data Documentation</h2>
-<a name="o0" doxytag="SGofNGinitPreimageARCer::theSubgroup"></a><p>
-<table width="100%" cellpadding="2" cellspacing="0" border="0">
- <tr>
- <td class="md">
- <table cellpadding="0" cellspacing="0" border="0">
- <tr>
- <td nowrap valign="top"><b>
-<a class="el" href="class_SGOfNilpotentGroup.html">SGOfNilpotentGroup</a>* SGofNGinitPreimageARCer::theSubgroup<code> [private]</code>
- </b></td>
- </tr>
-
- </table>
- </td>
- </tr>
-</table>
-<table cellspacing=5 cellpadding=0 border=0>
- <tr>
- <td>
-
- </td>
- <td>
-
-<p>
-
-<p>
-Definition at line <a class="el" href="SGNilpotentQuotients_h-source.html#l00226">226</a> of file <a class="el" href="SGNilpotentQuotients_h-source.html">SGNilpotentQuotients.h</a>. </td>
- </tr>
-</table>
-<hr>The documentation for this class was generated from the following file:<ul>
-<li>/magnus/back_end/SMApps/include/<a class="el" href="SGNilpotentQuotients_h-source.html">SGNilpotentQuotients.h</a></ul>
-<hr><address><small>Generated at Tue Jun 19 09:50:06 2001 for Magnus Classes by
-<a href="http://www.doxygen.org/index.html">
-<img src="doxygen.gif" alt="doxygen" align="middle" border=0
-width=110 height=53></a>1.2.6 written by <a href="mailto:di...@st...">Dimitri van Heesch</a>,
- © 1997-2001</small></address>
-</body>
-</html>
Copied: branches/daly/version13/src/doc/magnus_html/class_SGofNGinitPreimageARCer_small.html (from rev 246, branches/daly/version13/src/doc/magnus_html/class_SGofNGinitPreimageARCer.html)
===================================================================
--- branches/daly/version13/src/doc/magnus_html/class_SGofNGinitPreimageARCer_small.html (rev 0)
+++ branches/daly/version13/src/doc/magnus_html/class_SGofNGinitPreimageARCer_small.html 2007-05-24 16:57:33 UTC (rev 247)
@@ -0,0 +1,283 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
+<html><head><meta name="robots" content="noindex">
+<meta http-equiv="Content-Type" content="text/html;charset=iso-8859-1">
+<title>SGofNGinitPreimageARCer class Reference</title>
+<link href="doxygen.css" rel="stylesheet" type="text/css">
+</head><body bgcolor="#ffffff">
+<!-- Generated by Doxygen 1.2.6 -->
+<center>
+<a class="qindex" href="index.html">Main Page</a> <a class="qindex" href="hierarchy.html">Class Hierarchy</a> <a class="qindex" href="annotated.html">Compound List</a> <a class="qindex" href="files.html">File List</a> <a class="qindex" href="functions.html">Compound Members</a> <a class="qindex" href="globals.html">File Members</a> </center>
+<hr><h1>SGofNGinitPreimageARCer Class Reference</h1><code>#include <<a class="el" href="SGNilpotentQuotients_h-source.html">SGNilpotentQuotients.h</a>></code>
+<p>
+<p>Inheritance diagram for SGofNGinitPreimageARCer::
+<p><center><img src="class_SGofNGinitPreimageARCer.gif" usemap="#SGofNGinitPreimageARCer_map" border="0"></center>
+<map name="SGofNGinitPreimageARCer_map">
+<area href="class_ARCer.html" alt="ARCer" shape="rect" coords="0,0,165,24">
+</map>
+<a href="class_SGofNGinitPreimageARCer-members.html">List of all members.</a><table border=0 cellpadding=0 cellspacing=0>
+<tr><td colspan=2><br><h2>Public Methods</h2></td></tr>
+<tr><td nowrap align=right valign=top> </td><td valign=bottom><a class="el" href="class_SGofNGinitPreimageARCer.html#a0">SGofNGinitPreimageARCer</a> (<a class="el" href="class_ComputationManager.html">ComputationManager</a> &boss)</td></tr>
+<tr><td nowrap align=right valign=top> </td><td valign=bottom><a class="el" href="class_SGofNGinitPreimageARCer.html#a1">~SGofNGinitPreimageARCer</a> ()</td></tr>
+<tr><td nowrap align=right valign=top>void </td><td valign=bottom><a class="el" href="class_SGofNGinitPreimageARCer.html#a2">setArguments</a> (const <a class="el" href="class_NilpotentGroup.html">NilpotentGroup</a> &NG, const <a class="el" href="class_VectorOf.html">VectorOf</a>< <a class="el" href="class_Word.html">Word</a> > &gens)</td></tr>
+<tr><td nowrap align=right valign=top>const <a class="el" href="class_SGOfNilpotentGroup.html">SGOfNilpotentGroup</a>& </td><td valign=bottom><a class="el" href="class_SGofNGinitPreimageARCer.html#a3">getSubgroup</a> () const</td></tr>
+<tr><td nowrap align=right valign=top>void </td><td valign=bottom><a class="el" href="class_SGofNGinitPreimageARCer.html#a4">runComputation</a> ()</td></tr>
+<tr><td nowrap align=right valign=top>void </td><td valign=bottom><a class="el" href="class_SGofNGinitPreimageARCer.html#a5">writeResults</a> (ostream &)</td></tr>
+<tr><td nowrap align=right valign=top>void </td><td valign=bottom><a class="el" href="class_SGofNGinitPreimageARCer.html#a6">readResults</a> (istream &)</td></tr>
+<tr><td colspan=2><br><h2>Private Attributes</h2></td></tr>
+<tr><td nowrap align=right valign=top><a class="el" href="class_SGOfNilpotentGroup.html">SGOfNilpotentGroup</a>* </td><td valign=bottom><a class="el" href="class_SGofNGinitPreimageARCer.html#o0">theSubgroup</a></td></tr>
+</table>
+<hr><h2>Constructor & Destructor Documentation</h2>
+<a name="a0" doxytag="SGofNGinitPreimageARCer::SGofNGinitPreimageARCer"></a><p>
+<table width="100%" cellpadding="2" cellspacing="0" border="0">
+ <tr>
+ <td class="md">
+ <table cellpadding="0" cellspacing="0" border="0">
+ <tr>
+ <td nowrap valign="top"><b>
+SGofNGinitPreimageARCer::SGofNGinitPreimageARCer (
+ </b></td>
+ <td valign="bottom"><b>
+<a class="el" href="class_ComputationManager.html">ComputationManager</a> & <em>boss</em> )
+ </b></td>
+ </tr>
+
+ </table>
+ </td>
+ </tr>
+</table>
+<table cellspacing=5 cellpadding=0 border=0>
+ <tr>
+ <td>
+
+ </td>
+ <td>
+
+<p>
+ </td>
+ </tr>
+</table>
+<a name="a1" doxytag="SGofNGinitPreimageARCer::~SGofNGinitPreimageARCer"></a><p>
+<table width="100%" cellpadding="2" cellspacing="0" border="0">
+ <tr>
+ <td class="md">
+ <table cellpadding="0" cellspacing="0" border="0">
+ <tr>
+ <td nowrap valign="top"><b>
+SGofNGinitPreimageARCer::~SGofNGinitPreimageARCer (
+ </b></td>
+ <td valign="bottom"><b>
+)
+ </b></td>
+ </tr>
+
+ </table>
+ </td>
+ </tr>
+</table>
+<table cellspacing=5 cellpadding=0 border=0>
+ <tr>
+ <td>
+
+ </td>
+ <td>
+
+<p>
+ </td>
+ </tr>
+</table>
+<hr><h2>Member Function Documentation</h2>
+<a name="a2" doxytag="SGofNGinitPreimageARCer::setArguments"></a><p>
+<table width="100%" cellpadding="2" cellspacing="0" border="0">
+ <tr>
+ <td class="md">
+ <table cellpadding="0" cellspacing="0" border="0">
+ <tr>
+ <td nowrap valign="top"><b>
+void SGofNGinitPreimageARCer::setArguments (
+ </b></td>
+ <td valign="bottom"><b>
+const <a class="el" href="class_NilpotentGroup.html">NilpotentGroup</a> & <em>NG</em>,
+ </b></td>
+ </tr>
+ <tr>
+ <td></td>
+ <td><b>
+const <a class="el" href="class_VectorOf.html">VectorOf</a>< <a class="el" href="class_Word.html">Word</a> > & <em>gens</em> )
+ </b></td>
+ </tr>
+
+ </table>
+ </td>
+ </tr>
+</table>
+<table cellspacing=5 cellpadding=0 border=0>
+ <tr>
+ <td>
+
+ </td>
+ <td>
+
+<p>
+ </td>
+ </tr>
+</table>
+<a name="a3" doxytag="SGofNGinitPreimageARCer::getSubgroup"></a><p>
+<table width="100%" cellpadding="2" cellspacing="0" border="0">
+ <tr>
+ <td class="md">
+ <table cellpadding="0" cellspacing="0" border="0">
+ <tr>
+ <td nowrap valign="top"><b>
+const <a class="el" href="class_SGOfNilpotentGroup.html">SGOfNilpotentGroup</a>& SGofNGinitPreimageARCer::getSubgroup (
+ </b></td>
+ <td valign="bottom"><b>
+) const
+ </b></td>
+ </tr>
+
+ </table>
+ </td>
+ </tr>
+</table>
+<table cellspacing=5 cellpadding=0 border=0>
+ <tr>
+ <td>
+
+ </td>
+ <td>
+
+<p>
+ </td>
+ </tr>
+</table>
+<a name="a4" doxytag="SGofNGinitPreimageARCer::runComputation"></a><p>
+<table width="100%" cellpadding="2" cellspacing="0" border="0">
+ <tr>
+ <td class="md">
+ <table cellpadding="0" cellspacing="0" border="0">
+ <tr>
+ <td nowrap valign="top"><b>
+void SGofNGinitPreimageARCer::runComputation (
+ </b></td>
+ <td valign="bottom"><b>
+)<code> [virtual]</code>
+ </b></td>
+ </tr>
+
+ </table>
+ </td>
+ </tr>
+</table>
+<table cellspacing=5 cellpadding=0 border=0>
+ <tr>
+ <td>
+
+ </td>
+ <td>
+
+<p>
+
+<p>
+Reimplemented from <a class="el" href="class_ARCer.html#a6">ARCer</a>. </td>
+ </tr>
+</table>
+<a name="a5" doxytag="SGofNGinitPreimageARCer::writeResults"></a><p>
+<table width="100%" cellpadding="2" cellspacing="0" border="0">
+ <tr>
+ <td class="md">
+ <table cellpadding="0" cellspacing="0" border="0">
+ <tr>
+ <td nowrap valign="top"><b>
+void SGofNGinitPreimageARCer::writeResults (
+ </b></td>
+ <td valign="bottom"><b>
+ostream & <em>ostr</em> )<code> [virtual]</code>
+ </b></td>
+ </tr>
+
+ </table>
+ </td>
+ </tr>
+</table>
+<table cellspacing=5 cellpadding=0 border=0>
+ <tr>
+ <td>
+
+ </td>
+ <td>
+
+<p>
+
+<p>
+Reimplemented from <a class="el" href="class_ARCer.html#a7">ARCer</a>. </td>
+ </tr>
+</table>
+<a name="a6" doxytag="SGofNGinitPreimageARCer::readResults"></a><p>
+<table width="100%" cellpadding="2" cellspacing="0" border="0">
+ <tr>
+ <td class="md">
+ <table cellpadding="0" cellspacing="0" border="0">
+ <tr>
+ <td nowrap valign="top"><b>
+void SGofNGinitPreimageARCer::readResults (
+ </b></td>
+ <td valign="bottom"><b>
+istream & <em>istr</em> )<code> [virtual]</code>
+ </b></td>
+ </tr>
+
+ </table>
+ </td>
+ </tr>
+</table>
+<table cellspacing=5 cellpadding=0 border=0>
+ <tr>
+ <td>
+
+ </td>
+ <td>
+
+<p>
+
+<p>
+Reimplemented from <a class="el" href="class_ARCer.html#a8">ARCer</a>. </td>
+ </tr>
+</table>
+<hr><h2>Member Data Documentation</h2>
+<a name="o0" doxytag="SGofNGinitPreimageARCer::theSubgroup"></a><p>
+<table width="100%" cellpadding="2" cellspacing="0" border="0">
+ <tr>
+ <td class="md">
+ <table cellpadding="0" cellspacing="0" border="0">
+ <tr>
+ <td nowrap valign="top"><b>
+<a class="el" href="class_SGOfNilpotentGroup.html">SGOfNilpotentGroup</a>* SGofNGinitPreimageARCer::theSubgroup<code> [private]</code>
+ </b></td>
+ </tr>
+
+ </table>
+ </td>
+ </tr>
+</table>
+<table cellspacing=5 cellpadding=0 border=0>
+ <tr>
+ <td>
+
+ </td>
+ <td>
+
+<p>
+
+<p>
+Definition at line <a class="el" href="SGNilpotentQuotients_h-source.html#l00226">226</a> of file <a class="el" href="SGNilpotentQuotients_h-source.html">SGNilpotentQuotients.h</a>. </td>
+ </tr>
+</table>
+<hr>The documentation for this class was generated from the following file:<ul>
+<li>/magnus/back_end/SMApps/include/<a class="el" href="SGNilpotentQuotients_h-source.html">SGNilpotentQuotients.h</a></ul>
+<hr><address><small>Generated at Tue Jun 19 09:50:06 2001 for Magnus Classes by
+<a href="http://www.doxygen.org/index.html">
+<img src="doxygen.gif" alt="doxygen" align="middle" border=0
+width=110 height=53></a>1.2.6 written by <a href="mailto:di...@st...">Dimitri van Heesch</a>,
+ © 1997-2001</small></address>
+</body>
+</html>
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <ybr...@us...> - 2007-05-24 16:57:12
|
Revision: 246
http://svn.sourceforge.net/magnus/?rev=246&view=rev
Author: ybryukhov
Date: 2007-05-24 09:57:10 -0700 (Thu, 24 May 2007)
Log Message:
-----------
again
Added Paths:
-----------
branches/daly/version13/src/doc/magnus_html/class_SGofNGinitPreimageARCer_small.gif
Removed Paths:
-------------
branches/daly/version13/src/doc/magnus_html/class_SGofNGinitPreimageARCer.gif
Deleted: branches/daly/version13/src/doc/magnus_html/class_SGofNGinitPreimageARCer.gif
===================================================================
(Binary files differ)
Copied: branches/daly/version13/src/doc/magnus_html/class_SGofNGinitPreimageARCer_small.gif (from rev 245, branches/daly/version13/src/doc/magnus_html/class_SGofNGinitPreimageARCer.gif)
===================================================================
(Binary files differ)
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <ybr...@us...> - 2007-05-24 16:44:50
|
Revision: 245
http://svn.sourceforge.net/magnus/?rev=245&view=rev
Author: ybryukhov
Date: 2007-05-24 09:44:48 -0700 (Thu, 24 May 2007)
Log Message:
-----------
and more
Added Paths:
-----------
branches/daly/version13/src/doc/magnus_html/config_h-source_small.html
Removed Paths:
-------------
branches/daly/version13/src/doc/magnus_html/config_h-source.html
Deleted: branches/daly/version13/src/doc/magnus_html/config_h-source.html
===================================================================
--- branches/daly/version13/src/doc/magnus_html/config_h-source.html 2007-05-24 16:44:22 UTC (rev 244)
+++ branches/daly/version13/src/doc/magnus_html/config_h-source.html 2007-05-24 16:44:48 UTC (rev 245)
@@ -1,45 +0,0 @@
-<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
-<html><head><meta name="robots" content="noindex">
-<meta http-equiv="Content-Type" content="text/html;charset=iso-8859-1">
-<title>/magnus/back_end/global/config.h Source File</title>
-<link href="doxygen.css" rel="stylesheet" type="text/css">
-</head><body bgcolor="#ffffff">
-<!-- Generated by Doxygen 1.2.6 -->
-<center>
-<a class="qindex" href="index.html">Main Page</a> <a class="qindex" href="hierarchy.html">Class Hierarchy</a> <a class="qindex" href="annotated.html">Compound List</a> <a class="qindex" href="files.html">File List</a> <a class="qindex" href="functions.html">Compound Members</a> <a class="qindex" href="globals.html">File Members</a> </center>
-<hr><h1>/magnus/back_end/global/config.h</h1><a href="config_h.html">Go to the documentation of this file.</a><div class="fragment"><pre>00001 <font class="comment">/*</font>
-00002 <font class="comment"> * $Id: config.h.in,v 1.3 1997/02/03 22:52:29 alex Exp $ </font>
-00003 <font class="comment"> */</font>
-00004
-00005 <font class="comment">// Copyright (C) 1994 The New York Group Theory Cooperative</font>
-00006 <font class="comment">// See magnus/doc/COPYRIGHT for the full notice.</font>
-00007
-00008 <font class="comment">// Contents: Configuration variables set up by the config script</font>
-00009 <font class="comment">//</font>
-00010 <font class="comment">// Principal Author: Jon Lennox</font>
-00011 <font class="comment">//</font>
-00012 <font class="comment">// Status: Useable.</font>
-00013 <font class="comment">//</font>
-00014 <font class="comment">// Revision History:</font>
-00015 <font class="comment">//</font>
-00016
-00017 <font class="preprocessor">#ifndef _CONFIG_H_</font>
-00018 <font class="preprocessor"></font><font class="preprocessor">#define _CONFIG_H_</font>
-00019 <font class="preprocessor"></font>
-<a name="l00020"></a><a class="code" href="config_h.html#a0">00020</a> <font class="preprocessor">#define MAGNUS_HOME "/home/users/alex/magnus"</font>
-00021 <font class="preprocessor"></font><font class="comment">// We keep this compiled-in value to ease debugging.</font>
-00022 <font class="comment">// Use MagnusHome::magnusHome() in back_end/general/ for</font>
-00023 <font class="comment">// the Magnus root directory.</font>
-00024
-<a name="l00025"></a><a class="code" href="config_h.html#a1">00025</a> <font class="preprocessor">#define LINUX</font>
-00026 <font class="preprocessor"></font>
-<a name="l00027"></a><a class="code" href="config_h.html#a2">00027</a> <font class="preprocessor">#define MAGNUS_TMP "/tmp"</font>
-00028 <font class="preprocessor"></font>
-00029 <font class="preprocessor">#endif </font><font class="comment">/* _CONFIG_H_ */</font>
-</pre></div><hr><address><small>Generated at Tue Jun 19 09:49:36 2001 for Magnus Classes by
-<a href="http://www.doxygen.org/index.html">
-<img src="doxygen.gif" alt="doxygen" align="middle" border=0
-width=110 height=53></a>1.2.6 written by <a href="mailto:di...@st...">Dimitri van Heesch</a>,
- © 1997-2001</small></address>
-</body>
-</html>
Copied: branches/daly/version13/src/doc/magnus_html/config_h-source_small.html (from rev 244, branches/daly/version13/src/doc/magnus_html/config_h-source.html)
===================================================================
--- branches/daly/version13/src/doc/magnus_html/config_h-source_small.html (rev 0)
+++ branches/daly/version13/src/doc/magnus_html/config_h-source_small.html 2007-05-24 16:44:48 UTC (rev 245)
@@ -0,0 +1,45 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
+<html><head><meta name="robots" content="noindex">
+<meta http-equiv="Content-Type" content="text/html;charset=iso-8859-1">
+<title>/magnus/back_end/global/config.h Source File</title>
+<link href="doxygen.css" rel="stylesheet" type="text/css">
+</head><body bgcolor="#ffffff">
+<!-- Generated by Doxygen 1.2.6 -->
+<center>
+<a class="qindex" href="index.html">Main Page</a> <a class="qindex" href="hierarchy.html">Class Hierarchy</a> <a class="qindex" href="annotated.html">Compound List</a> <a class="qindex" href="files.html">File List</a> <a class="qindex" href="functions.html">Compound Members</a> <a class="qindex" href="globals.html">File Members</a> </center>
+<hr><h1>/magnus/back_end/global/config.h</h1><a href="config_h.html">Go to the documentation of this file.</a><div class="fragment"><pre>00001 <font class="comment">/*</font>
+00002 <font class="comment"> * $Id: config.h.in,v 1.3 1997/02/03 22:52:29 alex Exp $ </font>
+00003 <font class="comment"> */</font>
+00004
+00005 <font class="comment">// Copyright (C) 1994 The New York Group Theory Cooperative</font>
+00006 <font class="comment">// See magnus/doc/COPYRIGHT for the full notice.</font>
+00007
+00008 <font class="comment">// Contents: Configuration variables set up by the config script</font>
+00009 <font class="comment">//</font>
+00010 <font class="comment">// Principal Author: Jon Lennox</font>
+00011 <font class="comment">//</font>
+00012 <font class="comment">// Status: Useable.</font>
+00013 <font class="comment">//</font>
+00014 <font class="comment">// Revision History:</font>
+00015 <font class="comment">//</font>
+00016
+00017 <font class="preprocessor">#ifndef _CONFIG_H_</font>
+00018 <font class="preprocessor"></font><font class="preprocessor">#define _CONFIG_H_</font>
+00019 <font class="preprocessor"></font>
+<a name="l00020"></a><a class="code" href="config_h.html#a0">00020</a> <font class="preprocessor">#define MAGNUS_HOME "/home/users/alex/magnus"</font>
+00021 <font class="preprocessor"></font><font class="comment">// We keep this compiled-in value to ease debugging.</font>
+00022 <font class="comment">// Use MagnusHome::magnusHome() in back_end/general/ for</font>
+00023 <font class="comment">// the Magnus root directory.</font>
+00024
+<a name="l00025"></a><a class="code" href="config_h.html#a1">00025</a> <font class="preprocessor">#define LINUX</font>
+00026 <font class="preprocessor"></font>
+<a name="l00027"></a><a class="code" href="config_h.html#a2">00027</a> <font class="preprocessor">#define MAGNUS_TMP "/tmp"</font>
+00028 <font class="preprocessor"></font>
+00029 <font class="preprocessor">#endif </font><font class="comment">/* _CONFIG_H_ */</font>
+</pre></div><hr><address><small>Generated at Tue Jun 19 09:49:36 2001 for Magnus Classes by
+<a href="http://www.doxygen.org/index.html">
+<img src="doxygen.gif" alt="doxygen" align="middle" border=0
+width=110 height=53></a>1.2.6 written by <a href="mailto:di...@st...">Dimitri van Heesch</a>,
+ © 1997-2001</small></address>
+</body>
+</html>
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <ybr...@us...> - 2007-05-24 16:44:44
|
Revision: 244
http://svn.sourceforge.net/magnus/?rev=244&view=rev
Author: ybryukhov
Date: 2007-05-24 09:44:22 -0700 (Thu, 24 May 2007)
Log Message:
-----------
one more
Added Paths:
-----------
branches/daly/version13/src/doc/magnus_html/config_h_small.html
Removed Paths:
-------------
branches/daly/version13/src/doc/magnus_html/config_h.html
Deleted: branches/daly/version13/src/doc/magnus_html/config_h.html
===================================================================
--- branches/daly/version13/src/doc/magnus_html/config_h.html 2007-05-24 16:25:28 UTC (rev 243)
+++ branches/daly/version13/src/doc/magnus_html/config_h.html 2007-05-24 16:44:22 UTC (rev 244)
@@ -1,101 +0,0 @@
-<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
-<html><head><meta name="robots" content="noindex">
-<meta http-equiv="Content-Type" content="text/html;charset=iso-8859-1">
-<title>config.h File Reference</title>
-<link href="doxygen.css" rel="stylesheet" type="text/css">
-</head><body bgcolor="#ffffff">
-<!-- Generated by Doxygen 1.2.6 -->
-<center>
-<a class="qindex" href="index.html">Main Page</a> <a class="qindex" href="hierarchy.html">Class Hierarchy</a> <a class="qindex" href="annotated.html">Compound List</a> <a class="qindex" href="files.html">File List</a> <a class="qindex" href="functions.html">Compound Members</a> <a class="qindex" href="globals.html">File Members</a> </center>
-<hr><h1>/magnus/back_end/global/config.h File Reference</h1>
-<p>
-<a href="config_h-source.html">Go to the source code of this file.</a><table border=0 cellpadding=0 cellspacing=0>
-<tr><td colspan=2><br><h2>Defines</h2></td></tr>
-<tr><td nowrap align=right valign=top>#define </td><td valign=bottom><a class="el" href="config_h.html#a0">MAGNUS_HOME</a> "/home/users/alex/magnus"</td></tr>
-<tr><td nowrap align=right valign=top>#define </td><td valign=bottom><a class="el" href="config_h.html#a1">LINUX</a></td></tr>
-<tr><td nowrap align=right valign=top>#define </td><td valign=bottom><a class="el" href="config_h.html#a2">MAGNUS_TMP</a> "/tmp"</td></tr>
-</table>
-<hr><h2>Define Documentation</h2>
-<a name="a0" doxytag="config.h::MAGNUS_HOME"></a><p>
-<table width="100%" cellpadding="2" cellspacing="0" border="0">
- <tr>
- <td class="md">
- <table cellpadding="0" cellspacing="0" border="0">
- <tr>
- <td nowrap valign="top"><b>
-#define MAGNUS_HOME "/home/users/alex/magnus"
- </table>
- </td>
- </tr>
-</table>
-<table cellspacing=5 cellpadding=0 border=0>
- <tr>
- <td>
-
- </td>
- <td>
-
-<p>
-
-<p>
-Definition at line <a class="el" href="config_h-source.html#l00020">20</a> of file <a class="el" href="config_h-source.html">config.h</a>. </td>
- </tr>
-</table>
-<a name="a1" doxytag="config.h::LINUX"></a><p>
-<table width="100%" cellpadding="2" cellspacing="0" border="0">
- <tr>
- <td class="md">
- <table cellpadding="0" cellspacing="0" border="0">
- <tr>
- <td nowrap valign="top"><b>
-#define LINUX
- </table>
- </td>
- </tr>
-</table>
-<table cellspacing=5 cellpadding=0 border=0>
- <tr>
- <td>
-
- </td>
- <td>
-
-<p>
-<b>Value:</b><div class="fragment"><pre>
-</pre></div>
-<p>
-Definition at line <a class="el" href="config_h-source.html#l00025">25</a> of file <a class="el" href="config_h-source.html">config.h</a>. </td>
- </tr>
-</table>
-<a name="a2" doxytag="config.h::MAGNUS_TMP"></a><p>
-<table width="100%" cellpadding="2" cellspacing="0" border="0">
- <tr>
- <td class="md">
- <table cellpadding="0" cellspacing="0" border="0">
- <tr>
- <td nowrap valign="top"><b>
-#define MAGNUS_TMP "/tmp"
- </table>
- </td>
- </tr>
-</table>
-<table cellspacing=5 cellpadding=0 border=0>
- <tr>
- <td>
-
- </td>
- <td>
-
-<p>
-
-<p>
-Definition at line <a class="el" href="config_h-source.html#l00027">27</a> of file <a class="el" href="config_h-source.html">config.h</a>. </td>
- </tr>
-</table>
-<hr><address><small>Generated at Tue Jun 19 09:49:44 2001 for Magnus Classes by
-<a href="http://www.doxygen.org/index.html">
-<img src="doxygen.gif" alt="doxygen" align="middle" border=0
-width=110 height=53></a>1.2.6 written by <a href="mailto:di...@st...">Dimitri van Heesch</a>,
- © 1997-2001</small></address>
-</body>
-</html>
Copied: branches/daly/version13/src/doc/magnus_html/config_h_small.html (from rev 243, branches/daly/version13/src/doc/magnus_html/config_h.html)
===================================================================
--- branches/daly/version13/src/doc/magnus_html/config_h_small.html (rev 0)
+++ branches/daly/version13/src/doc/magnus_html/config_h_small.html 2007-05-24 16:44:22 UTC (rev 244)
@@ -0,0 +1,101 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
+<html><head><meta name="robots" content="noindex">
+<meta http-equiv="Content-Type" content="text/html;charset=iso-8859-1">
+<title>config.h File Reference</title>
+<link href="doxygen.css" rel="stylesheet" type="text/css">
+</head><body bgcolor="#ffffff">
+<!-- Generated by Doxygen 1.2.6 -->
+<center>
+<a class="qindex" href="index.html">Main Page</a> <a class="qindex" href="hierarchy.html">Class Hierarchy</a> <a class="qindex" href="annotated.html">Compound List</a> <a class="qindex" href="files.html">File List</a> <a class="qindex" href="functions.html">Compound Members</a> <a class="qindex" href="globals.html">File Members</a> </center>
+<hr><h1>/magnus/back_end/global/config.h File Reference</h1>
+<p>
+<a href="config_h-source.html">Go to the source code of this file.</a><table border=0 cellpadding=0 cellspacing=0>
+<tr><td colspan=2><br><h2>Defines</h2></td></tr>
+<tr><td nowrap align=right valign=top>#define </td><td valign=bottom><a class="el" href="config_h.html#a0">MAGNUS_HOME</a> "/home/users/alex/magnus"</td></tr>
+<tr><td nowrap align=right valign=top>#define </td><td valign=bottom><a class="el" href="config_h.html#a1">LINUX</a></td></tr>
+<tr><td nowrap align=right valign=top>#define </td><td valign=bottom><a class="el" href="config_h.html#a2">MAGNUS_TMP</a> "/tmp"</td></tr>
+</table>
+<hr><h2>Define Documentation</h2>
+<a name="a0" doxytag="config.h::MAGNUS_HOME"></a><p>
+<table width="100%" cellpadding="2" cellspacing="0" border="0">
+ <tr>
+ <td class="md">
+ <table cellpadding="0" cellspacing="0" border="0">
+ <tr>
+ <td nowrap valign="top"><b>
+#define MAGNUS_HOME "/home/users/alex/magnus"
+ </table>
+ </td>
+ </tr>
+</table>
+<table cellspacing=5 cellpadding=0 border=0>
+ <tr>
+ <td>
+
+ </td>
+ <td>
+
+<p>
+
+<p>
+Definition at line <a class="el" href="config_h-source.html#l00020">20</a> of file <a class="el" href="config_h-source.html">config.h</a>. </td>
+ </tr>
+</table>
+<a name="a1" doxytag="config.h::LINUX"></a><p>
+<table width="100%" cellpadding="2" cellspacing="0" border="0">
+ <tr>
+ <td class="md">
+ <table cellpadding="0" cellspacing="0" border="0">
+ <tr>
+ <td nowrap valign="top"><b>
+#define LINUX
+ </table>
+ </td>
+ </tr>
+</table>
+<table cellspacing=5 cellpadding=0 border=0>
+ <tr>
+ <td>
+
+ </td>
+ <td>
+
+<p>
+<b>Value:</b><div class="fragment"><pre>
+</pre></div>
+<p>
+Definition at line <a class="el" href="config_h-source.html#l00025">25</a> of file <a class="el" href="config_h-source.html">config.h</a>. </td>
+ </tr>
+</table>
+<a name="a2" doxytag="config.h::MAGNUS_TMP"></a><p>
+<table width="100%" cellpadding="2" cellspacing="0" border="0">
+ <tr>
+ <td class="md">
+ <table cellpadding="0" cellspacing="0" border="0">
+ <tr>
+ <td nowrap valign="top"><b>
+#define MAGNUS_TMP "/tmp"
+ </table>
+ </td>
+ </tr>
+</table>
+<table cellspacing=5 cellpadding=0 border=0>
+ <tr>
+ <td>
+
+ </td>
+ <td>
+
+<p>
+
+<p>
+Definition at line <a class="el" href="config_h-source.html#l00027">27</a> of file <a class="el" href="config_h-source.html">config.h</a>. </td>
+ </tr>
+</table>
+<hr><address><small>Generated at Tue Jun 19 09:49:44 2001 for Magnus Classes by
+<a href="http://www.doxygen.org/index.html">
+<img src="doxygen.gif" alt="doxygen" align="middle" border=0
+width=110 height=53></a>1.2.6 written by <a href="mailto:di...@st...">Dimitri van Heesch</a>,
+ © 1997-2001</small></address>
+</body>
+</html>
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <ybr...@us...> - 2007-05-24 16:25:58
|
Revision: 243
http://svn.sourceforge.net/magnus/?rev=243&view=rev
Author: ybryukhov
Date: 2007-05-24 09:25:28 -0700 (Thu, 24 May 2007)
Log Message:
-----------
another case-sensitivity issue
Added Paths:
-----------
branches/daly/version13/src/doc/manual/figs/sm2small.fig
Removed Paths:
-------------
branches/daly/version13/src/doc/manual/figs/sm2.fig
Deleted: branches/daly/version13/src/doc/manual/figs/sm2.fig
===================================================================
--- branches/daly/version13/src/doc/manual/figs/sm2.fig 2007-05-24 16:07:37 UTC (rev 242)
+++ branches/daly/version13/src/doc/manual/figs/sm2.fig 2007-05-24 16:25:28 UTC (rev 243)
@@ -1,451 +0,0 @@
-#FIG 3.1
-Landscape
-Center
-Inches
-1200 2
-6 3225 75 5025 1500
-3 3 1 1 -1 7 2 0 -1 4.000 0 0 0 36
- 3324 788 3241 713 3249 548 3368 451 3533 293 3616 158
- 3736 106 3953 151 4096 196 4269 211 4456 173 4621 173
- 4726 256 4718 413 4741 518 4861 601 4958 751 4928 856
- 4816 953 4748 1073 4741 1156 4756 1291 4696 1396 4591 1411
- 4389 1351 4193 1313 4051 1321 3901 1388 3736 1441 3526 1426
- 3458 1291 3503 1193 3556 968 3473 886 3368 811 3324 788
- 3333.46 794.59 3302.68 773.16 3253.05 742.00 3223.21 670.18
- 3228.49 588.61 3268.06 510.25 3341.74 474.21 3407.07 416.47
- 3499.67 334.29 3556.12 264.35 3585.68 184.29 3641.03 136.30
- 3703.02 109.38 3791.88 100.27 3903.99 138.24 3986.15 159.63
- 4062.02 189.26 4135.36 203.80 4228.53 213.31 4313.48 208.46
- 4412.22 177.40 4493.85 169.19 4580.74 159.01 4653.65 184.35
- 4710.03 220.76 4744.76 297.39 4714.99 376.54 4720.06 437.93
- 4725.07 494.25 4762.62 550.24 4836.80 576.03 4890.63 631.57
- 4950.71 702.06 4962.46 780.92 4942.72 832.92 4908.03 887.32
- 4838.14 925.97 4795.39 978.16 4757.80 1041.30 4742.08 1092.14
- 4740.75 1136.81 4741.42 1187.29 4763.02 1257.10 4749.75 1321.18
- 4724.38 1376.72 4671.11 1412.91 4616.44 1412.87 4540.46 1407.28
- 4435.76 1362.45 4344.70 1340.15 4239.22 1316.13 4160.08 1310.77
- 4083.74 1313.05 4013.18 1330.18 3936.08 1374.58 3863.99 1402.16
- 3776.92 1436.08 3686.29 1446.98 3578.48 1460.97 3488.32 1400.89
- 3458.77 1333.65 3457.45 1260.57 3494.92 1216.51 3520.31 1142.60
- 3575.05 1034.24 3546.38 934.57 3493.49 903.25 3450.34 866.92
- 3393.19 826.48 3358.31 805.04 3333.46 794.59 3302.68 773.16
-4 0 -1 0 0 16 10 0.0000000 4 150 1290 3451 751 BaseRegObjectRef\001
--6
-6 5850 225 7650 1650
-3 3 1 1 -1 7 2 0 -1 4.000 0 0 0 36
- 5964 983 5881 908 5889 743 6008 646 6173 488 6256 353
- 6376 301 6593 346 6736 391 6909 406 7096 368 7261 368
- 7366 451 7358 608 7381 713 7501 796 7598 946 7568 1051
- 7456 1148 7388 1268 7381 1351 7396 1486 7336 1591 7231 1606
- 7029 1546 6833 1508 6691 1516 6541 1583 6376 1636 6166 1621
- 6098 1486 6143 1388 6196 1163 6113 1081 6008 1006 5964 983
- 5973.46 989.59 5942.68 968.16 5893.05 937.00 5863.21 865.18
- 5868.49 783.61 5908.06 705.25 5981.74 669.21 6047.07 611.47
- 6139.67 529.29 6196.12 459.35 6225.68 379.29 6281.03 331.30
- 6343.02 304.38 6431.88 295.27 6543.99 333.24 6626.15 354.63
- 6702.02 384.26 6775.36 398.80 6868.53 408.31 6953.48 403.46
- 7052.22 372.40 7133.85 364.19 7220.74 354.01 7293.65 379.35
- 7350.03 415.76 7384.76 492.39 7354.99 571.54 7360.06 632.93
- 7365.07 689.25 7402.62 745.24 7476.80 771.03 7530.63 826.57
- 7590.71 897.06 7602.46 975.92 7582.72 1027.92 7548.03 1082.32
- 7478.14 1120.97 7435.39 1173.16 7397.80 1236.30 7382.08 1287.14
- 7380.75 1331.81 7381.42 1382.29 7403.02 1452.10 7389.75 1516.18
- 7364.38 1571.72 7311.11 1607.91 7256.44 1607.87 7180.46 1602.28
- 7075.76 1557.45 6984.70 1535.15 6879.22 1511.13 6800.08 1505.77
- 6723.74 1508.05 6653.18 1525.18 6576.08 1569.58 6503.99 1597.16
- 6416.92 1631.08 6326.29 1641.98 6218.48 1655.97 6128.32 1595.89
- 6098.77 1528.65 6097.45 1455.57 6134.92 1411.51 6160.31 1337.60
- 6215.05 1229.24 6186.38 1129.57 6133.49 1098.25 6090.34 1061.92
- 6033.19 1021.48 5998.31 1000.04 5973.46 989.59 5942.68 968.16
-4 0 -1 0 0 16 10 0.0000000 4 150 735 6301 826 HolderRep\001
--6
-6 6450 1875 8250 3300
-3 3 1 1 -1 7 2 0 -1 4.000 0 0 0 36
- 6609 2603 6526 2528 6534 2363 6653 2266 6818 2108 6901 1973
- 7021 1921 7238 1966 7381 2011 7554 2026 7741 1988 7906 1988
- 8011 2071 8003 2228 8026 2333 8146 2416 8243 2566 8213 2671
- 8101 2768 8033 2888 8026 2971 8041 3106 7981 3211 7876 3226
- 7674 3166 7478 3128 7336 3136 7186 3203 7021 3256 6811 3241
- 6743 3106 6788 3008 6841 2783 6758 2701 6653 2626 6609 2603
- 6618.46 2609.59 6587.68 2588.16 6538.05 2557.00 6508.21 2485.18
- 6513.49 2403.61 6553.06 2325.25 6626.74 2289.21 6692.07 2231.47
- 6784.67 2149.29 6841.12 2079.35 6870.68 1999.29 6926.03 1951.30
- 6988.02 1924.38 7076.88 1915.27 7188.99 1953.24 7271.15 1974.63
- 7347.02 2004.26 7420.36 2018.80 7513.53 2028.31 7598.48 2023.46
- 7697.22 1992.40 7778.85 1984.19 7865.74 1974.01 7938.65 1999.35
- 7995.03 2035.76 8029.76 2112.39 7999.99 2191.54 8005.06 2252.93
- 8010.07 2309.25 8047.62 2365.24 8121.80 2391.03 8175.63 2446.57
- 8235.71 2517.06 8247.46 2595.92 8227.72 2647.92 8193.03 2702.32
- 8123.14 2740.97 8080.39 2793.16 8042.80 2856.30 8027.08 2907.14
- 8025.75 2951.81 8026.42 3002.29 8048.02 3072.10 8034.75 3136.18
- 8009.38 3191.72 7956.11 3227.91 7901.44 3227.87 7825.46 3222.28
- 7720.76 3177.45 7629.70 3155.15 7524.22 3131.13 7445.08 3125.77
- 7368.74 3128.05 7298.18 3145.18 7221.08 3189.58 7148.99 3217.16
- 7061.92 3251.08 6971.29 3261.98 6863.48 3275.97 6773.32 3215.89
- 6743.77 3148.65 6742.45 3075.57 6779.92 3031.51 6805.31 2957.60
- 6860.05 2849.24 6831.38 2749.57 6778.49 2718.25 6735.34 2681.92
- 6678.19 2641.48 6643.31 2620.04 6618.46 2609.59 6587.68 2588.16
-4 0 -1 0 0 16 10 0.0000000 4 150 435 6976 2476 Group\001
--6
-6 74 3374 1949 4799
-3 3 1 1 -1 7 2 0 -1 4.000 0 0 0 36
- 241 4095 158 4020 166 3855 285 3758 450 3600 533 3465
- 653 3413 870 3458 1013 3503 1186 3518 1373 3480 1538 3480
- 1643 3563 1635 3720 1658 3825 1778 3908 1875 4058 1845 4163
- 1733 4260 1665 4380 1658 4463 1673 4598 1613 4703 1508 4718
- 1306 4658 1110 4620 968 4628 818 4695 653 4748 443 4733
- 375 4598 420 4500 473 4275 390 4193 285 4118 241 4095
- 250.46 4101.59 219.68 4080.16 170.05 4049.00 140.21 3977.18
- 145.49 3895.61 185.06 3817.25 258.74 3781.21 324.07 3723.47
- 416.67 3641.29 473.12 3571.35 502.68 3491.29 558.03 3443.30
- 620.02 3416.38 708.88 3407.27 820.99 3445.24 903.15 3466.63
- 979.02 3496.26 1052.36 3510.80 1145.53 3520.31 1230.48 3515.46
- 1329.22 3484.40 1410.85 3476.19 1497.74 3466.01 1570.65 3491.35
- 1627.03 3527.76 1661.76 3604.39 1631.99 3683.54 1637.06 3744.93
- 1642.07 3801.25 1679.62 3857.24 1753.80 3883.03 1807.63 3938.57
- 1867.71 4009.06 1879.46 4087.92 1859.72 4139.92 1825.03 4194.32
- 1755.14 4232.97 1712.39 4285.16 1674.80 4348.30 1659.08 4399.14
- 1657.75 4443.81 1658.42 4494.29 1680.02 4564.10 1666.75 4628.18
- 1641.38 4683.72 1588.11 4719.91 1533.44 4719.87 1457.46 4714.28
- 1352.76 4669.45 1261.70 4647.15 1156.22 4623.13 1077.08 4617.77
- 1000.74 4620.05 930.18 4637.18 853.08 4681.58 780.99 4709.16
- 693.92 4743.08 603.29 4753.98 495.48 4767.97 405.32 4707.89
- 375.77 4640.65 374.45 4567.57 411.92 4523.51 437.31 4449.60
- 492.05 4341.24 463.38 4241.57 410.49 4210.25 367.34 4173.92
- 310.19 4133.48 275.31 4112.04 250.46 4101.59 219.68 4080.16
-4 0 -1 0 0 16 10 0.0000000 4 150 1050 450 3975 AbelianToolRep\001
--6
-6 600 225 2400 1650
-3 3 1 1 -1 7 2 0 -1 4.000 0 0 0 36
- 714 938 631 863 639 698 758 601 923 443 1006 308
- 1126 256 1343 301 1486 346 1659 361 1846 323 2011 323
- 2116 406 2108 563 2131 668 2251 751 2348 901 2318 1006
- 2206 1103 2138 1223 2131 1306 2146 1441 2086 1546 1981 1561
- 1779 1501 1583 1463 1441 1471 1291 1538 1126 1591 916 1576
- 848 1441 893 1343 946 1118 863 1036 758 961 714 938
- 723.46 944.59 692.68 923.16 643.05 892.00 613.21 820.18
- 618.49 738.61 658.06 660.25 731.74 624.21 797.07 566.47
- 889.67 484.29 946.12 414.35 975.68 334.29 1031.03 286.30
- 1093.02 259.38 1181.88 250.27 1293.99 288.24 1376.15 309.63
- 1452.02 339.26 1525.36 353.80 1618.53 363.31 1703.48 358.46
- 1802.22 327.40 1883.85 319.19 1970.74 309.01 2043.65 334.35
- 2100.03 370.76 2134.76 447.39 2104.99 526.54 2110.06 587.93
- 2115.07 644.25 2152.62 700.24 2226.80 726.03 2280.63 781.57
- 2340.71 852.06 2352.46 930.92 2332.72 982.92 2298.03 1037.32
- 2228.14 1075.97 2185.39 1128.16 2147.80 1191.30 2132.08 1242.14
- 2130.75 1286.81 2131.42 1337.29 2153.02 1407.10 2139.75 1471.18
- 2114.38 1526.72 2061.11 1562.91 2006.44 1562.87 1930.46 1557.28
- 1825.76 1512.45 1734.70 1490.15 1629.22 1466.13 1550.08 1460.77
- 1473.74 1463.05 1403.18 1480.18 1326.08 1524.58 1253.99 1552.16
- 1166.92 1586.08 1076.29 1596.98 968.48 1610.97 878.32 1550.89
- 848.77 1483.65 847.45 1410.57 884.92 1366.51 910.31 1292.60
- 965.05 1184.24 936.38 1084.57 883.49 1053.25 840.34 1016.92
- 783.19 976.48 748.31 955.04 723.46 944.59 692.68 923.16
-4 0 -1 0 0 16 10 0.0000000 4 150 1155 901 826 ActiveObjectRep\001
--6
-6 6374 5174 8174 6599
-3 3 1 1 -1 7 2 0 -1 4.000 0 0 0 36
- 6523 5880 6440 5805 6448 5640 6567 5543 6732 5385 6815 5250
- 6935 5198 7152 5243 7295 5288 7468 5303 7655 5265 7820 5265
- 7925 5348 7917 5505 7940 5610 8060 5693 8157 5843 8127 5948
- 8015 6045 7947 6165 7940 6248 7955 6383 7895 6488 7790 6503
- 7588 6443 7392 6405 7250 6413 7100 6480 6935 6533 6725 6518
- 6657 6383 6702 6285 6755 6060 6672 5978 6567 5903 6523 5880
- 6532.46 5886.59 6501.68 5865.16 6452.05 5834.00 6422.21 5762.18
- 6427.49 5680.61 6467.06 5602.25 6540.74 5566.21 6606.07 5508.47
- 6698.67 5426.29 6755.12 5356.35 6784.68 5276.29 6840.03 5228.30
- 6902.02 5201.38 6990.88 5192.27 7102.99 5230.24 7185.15 5251.63
- 7261.02 5281.26 7334.36 5295.80 7427.53 5305.31 7512.48 5300.46
- 7611.22 5269.40 7692.85 5261.19 7779.74 5251.01 7852.65 5276.35
- 7909.03 5312.76 7943.76 5389.39 7913.99 5468.54 7919.06 5529.93
- 7924.07 5586.25 7961.62 5642.24 8035.80 5668.03 8089.63 5723.57
- 8149.71 5794.06 8161.46 5872.92 8141.72 5924.92 8107.03 5979.32
- 8037.14 6017.97 7994.39 6070.16 7956.80 6133.30 7941.08 6184.14
- 7939.75 6228.81 7940.42 6279.29 7962.02 6349.10 7948.75 6413.18
- 7923.38 6468.72 7870.11 6504.91 7815.44 6504.87 7739.46 6499.28
- 7634.76 6454.45 7543.70 6432.15 7438.22 6408.13 7359.08 6402.77
- 7282.74 6405.05 7212.18 6422.18 7135.08 6466.58 7062.99 6494.16
- 6975.92 6528.08 6885.29 6538.98 6777.48 6552.97 6687.32 6492.89
- 6657.77 6425.65 6656.45 6352.57 6693.92 6308.51 6719.31 6234.60
- 6774.05 6126.24 6745.38 6026.57 6692.49 5995.25 6649.34 5958.92
- 6592.19 5918.48 6557.31 5897.04 6532.46 5886.59 6501.68 5865.16
-4 0 -1 0 0 16 10 0.0000000 4 120 720 6825 5700 DataStore\001
--6
-6 6449 3449 8249 4874
-3 3 1 1 -1 7 2 0 -1 4.000 0 0 0 36
- 6596 4183 6513 4108 6521 3943 6640 3846 6805 3688 6888 3553
- 7008 3501 7225 3546 7368 3591 7541 3606 7728 3568 7893 3568
- 7998 3651 7990 3808 8013 3913 8133 3996 8230 4146 8200 4251
- 8088 4348 8020 4468 8013 4551 8028 4686 7968 4791 7863 4806
- 7661 4746 7465 4708 7323 4716 7173 4783 7008 4836 6798 4821
- 6730 4686 6775 4588 6828 4363 6745 4281 6640 4206 6596 4183
- 6605.46 4189.59 6574.68 4168.16 6525.05 4137.00 6495.21 4065.18
- 6500.49 3983.61 6540.06 3905.25 6613.74 3869.21 6679.07 3811.47
- 6771.67 3729.29 6828.12 3659.35 6857.68 3579.29 6913.03 3531.30
- 6975.02 3504.38 7063.88 3495.27 7175.99 3533.24 7258.15 3554.63
- 7334.02 3584.26 7407.36 3598.80 7500.53 3608.31 7585.48 3603.46
- 7684.22 3572.40 7765.85 3564.19 7852.74 3554.01 7925.65 3579.35
- 7982.03 3615.76 8016.76 3692.39 7986.99 3771.54 7992.06 3832.93
- 7997.07 3889.25 8034.62 3945.24 8108.80 3971.03 8162.63 4026.57
- 8222.71 4097.06 8234.46 4175.92 8214.72 4227.92 8180.03 4282.32
- 8110.14 4320.97 8067.39 4373.16 8029.80 4436.30 8014.08 4487.14
- 8012.75 4531.81 8013.42 4582.29 8035.02 4652.10 8021.75 4716.18
- 7996.38 4771.72 7943.11 4807.91 7888.44 4807.87 7812.46 4802.28
- 7707.76 4757.45 7616.70 4735.15 7511.22 4711.13 7432.08 4705.77
- 7355.74 4708.05 7285.18 4725.18 7208.08 4769.58 7135.99 4797.16
- 7048.92 4831.08 6958.29 4841.98 6850.48 4855.97 6760.32 4795.89
- 6730.77 4728.65 6729.45 4655.57 6766.92 4611.51 6792.31 4537.60
- 6847.05 4429.24 6818.38 4329.57 6765.49 4298.25 6722.34 4261.92
- 6665.19 4221.48 6630.31 4200.04 6605.46 4189.59 6574.68 4168.16
-4 0 -1 0 0 16 10 0.0000000 4 120 255 6975 4050 ISS\001
--6
-6 4125 3750 5925 5175
-3 3 1 1 -1 7 2 0 -1 4.000 0 0 0 36
- 4250 4468 4167 4393 4175 4228 4294 4131 4459 3973 4542 3838
- 4662 3786 4879 3831 5022 3876 5195 3891 5382 3853 5547 3853
- 5652 3936 5644 4093 5667 4198 5787 4281 5884 4431 5854 4536
- 5742 4633 5674 4753 5667 4836 5682 4971 5622 5076 5517 5091
- 5315 5031 5119 4993 4977 5001 4827 5068 4662 5121 4452 5106
- 4384 4971 4429 4873 4482 4648 4399 4566 4294 4491 4250 4468
- 4259.46 4474.59 4228.68 4453.16 4179.05 4422.00 4149.21 4350.18
- 4154.49 4268.61 4194.06 4190.25 4267.74 4154.21 4333.07 4096.47
- 4425.67 4014.29 4482.12 3944.35 4511.68 3864.29 4567.03 3816.30
- 4629.02 3789.38 4717.88 3780.27 4829.99 3818.24 4912.15 3839.63
- 4988.02 3869.26 5061.36 3883.80 5154.53 3893.31 5239.48 3888.46
- 5338.22 3857.40 5419.85 3849.19 5506.74 3839.01 5579.65 3864.35
- 5636.03 3900.76 5670.76 3977.39 5640.99 4056.54 5646.06 4117.93
- 5651.07 4174.25 5688.62 4230.24 5762.80 4256.03 5816.63 4311.57
- 5876.71 4382.06 5888.46 4460.92 5868.72 4512.92 5834.03 4567.32
- 5764.14 4605.97 5721.39 4658.16 5683.80 4721.30 5668.08 4772.14
- 5666.75 4816.81 5667.42 4867.29 5689.02 4937.10 5675.75 5001.18
- 5650.38 5056.72 5597.11 5092.91 5542.44 5092.87 5466.46 5087.28
- 5361.76 5042.45 5270.70 5020.15 5165.22 4996.13 5086.08 4990.77
- 5009.74 4993.05 4939.18 5010.18 4862.08 5054.58 4789.99 5082.16
- 4702.92 5116.08 4612.29 5126.98 4504.48 5140.97 4414.32 5080.89
- 4384.77 5013.65 4383.45 4940.57 4420.92 4896.51 4446.31 4822.60
- 4501.05 4714.24 4472.38 4614.57 4419.49 4583.25 4376.34 4546.92
- 4319.19 4506.48 4284.31 4485.04 4259.46 4474.59 4228.68 4453.16
-4 0 -1 0 0 16 10 0.0000000 4 120 480 4576 4351 FPGIC\001
--6
-6 2099 6599 3899 8024
-3 3 1 1 -1 7 2 0 -1 4.000 0 0 0 36
- 2258 7312 2175 7237 2183 7072 2302 6975 2467 6817 2550 6682
- 2670 6630 2887 6675 3030 6720 3203 6735 3390 6697 3555 6697
- 3660 6780 3652 6937 3675 7042 3795 7125 3892 7275 3862 7380
- 3750 7477 3682 7597 3675 7680 3690 7815 3630 7920 3525 7935
- 3323 7875 3127 7837 2985 7845 2835 7912 2670 7965 2460 7950
- 2392 7815 2437 7717 2490 7492 2407 7410 2302 7335 2258 7312
- 2267.46 7318.59 2236.68 7297.16 2187.05 7266.00 2157.21 7194.18
- 2162.49 7112.61 2202.06 7034.25 2275.74 6998.21 2341.07 6940.47
- 2433.67 6858.29 2490.12 6788.35 2519.68 6708.29 2575.03 6660.30
- 2637.02 6633.38 2725.88 6624.27 2837.99 6662.24 2920.15 6683.63
- 2996.02 6713.26 3069.36 6727.80 3162.53 6737.31 3247.48 6732.46
- 3346.22 6701.40 3427.85 6693.19 3514.74 6683.01 3587.65 6708.35
- 3644.03 6744.76 3678.76 6821.39 3648.99 6900.54 3654.06 6961.93
- 3659.07 7018.25 3696.62 7074.24 3770.80 7100.03 3824.63 7155.57
- 3884.71 7226.06 3896.46 7304.92 3876.72 7356.92 3842.03 7411.32
- 3772.14 7449.97 3729.39 7502.16 3691.80 7565.30 3676.08 7616.14
- 3674.75 7660.81 3675.42 7711.29 3697.02 7781.10 3683.75 7845.18
- 3658.38 7900.72 3605.11 7936.91 3550.44 7936.87 3474.46 7931.28
- 3369.76 7886.45 3278.70 7864.15 3173.22 7840.13 3094.08 7834.77
- 3017.74 7837.05 2947.18 7854.18 2870.08 7898.58 2797.99 7926.16
- 2710.92 7960.08 2620.29 7970.98 2512.48 7984.97 2422.32 7924.89
- 2392.77 7857.65 2391.45 7784.57 2428.92 7740.51 2454.31 7666.60
- 2509.05 7558.24 2480.38 7458.57 2427.49 7427.25 2384.34 7390.92
- 2327.19 7350.48 2292.31 7329.04 2267.46 7318.59 2236.68 7297.16
-4 0 -1 0 0 16 10 0.0000000 4 120 570 2550 7200 Account\001
--6
-6 2025 4050 3900 5475
-3 3 1 1 -1 7 2 0 -1 4.000 0 0 0 36
- 2192 4771 2109 4696 2117 4531 2236 4434 2401 4276 2484 4141
- 2604 4089 2821 4134 2964 4179 3137 4194 3324 4156 3489 4156
- 3594 4239 3586 4396 3609 4501 3729 4584 3826 4734 3796 4839
- 3684 4936 3616 5056 3609 5139 3624 5274 3564 5379 3459 5394
- 3257 5334 3061 5296 2919 5304 2769 5371 2604 5424 2394 5409
- 2326 5274 2371 5176 2424 4951 2341 4869 2236 4794 2192 4771
- 2201.46 4777.59 2170.68 4756.16 2121.05 4725.00 2091.21 4653.18
- 2096.49 4571.61 2136.06 4493.25 2209.74 4457.21 2275.07 4399.47
- 2367.67 4317.29 2424.12 4247.35 2453.68 4167.29 2509.03 4119.30
- 2571.02 4092.38 2659.88 4083.27 2771.99 4121.24 2854.15 4142.63
- 2930.02 4172.26 3003.36 4186.80 3096.53 4196.31 3181.48 4191.46
- 3280.22 4160.40 3361.85 4152.19 3448.74 4142.01 3521.65 4167.35
- 3578.03 4203.76 3612.76 4280.39 3582.99 4359.54 3588.06 4420.93
- 3593.07 4477.25 3630.62 4533.24 3704.80 4559.03 3758.63 4614.57
- 3818.71 4685.06 3830.46 4763.92 3810.72 4815.92 3776.03 4870.32
- 3706.14 4908.97 3663.39 4961.16 3625.80 5024.30 3610.08 5075.14
- 3608.75 5119.81 3609.42 5170.29 3631.02 5240.10 3617.75 5304.18
- 3592.38 5359.72 3539.11 5395.91 3484.44 5395.87 3408.46 5390.28
- 3303.76 5345.45 3212.70 5323.15 3107.22 5299.13 3028.08 5293.77
- 2951.74 5296.05 2881.18 5313.18 2804.08 5357.58 2731.99 5385.16
- 2644.92 5419.08 2554.29 5429.98 2446.48 5443.97 2356.32 5383.89
- 2326.77 5316.65 2325.45 5243.57 2362.92 5199.51 2388.31 5125.60
- 2443.05 5017.24 2414.38 4917.57 2361.49 4886.25 2318.34 4849.92
- 2261.19 4809.48 2226.31 4788.04 2201.46 4777.59 2170.68 4756.16
-4 0 -1 0 0 16 10 0.0000000 4 150 1275 2326 4726 WordProbToolRep\001
--6
-6 2250 2250 4050 3675
-3 3 1 1 -1 7 2 0 -1 4.000 0 0 0 36
- 2394 2971 2311 2896 2319 2731 2438 2634 2603 2476 2686 2341
- 2806 2289 3023 2334 3166 2379 3339 2394 3526 2356 3691 2356
- 3796 2439 3788 2596 3811 2701 3931 2784 4028 2934 3998 3039
- 3886 3136 3818 3256 3811 3339 3826 3474 3766 3579 3661 3594
- 3459 3534 3263 3496 3121 3504 2971 3571 2806 3624 2596 3609
- 2528 3474 2573 3376 2626 3151 2543 3069 2438 2994 2394 2971
- 2403.46 2977.59 2372.68 2956.16 2323.05 2925.00 2293.21 2853.18
- 2298.49 2771.61 2338.06 2693.25 2411.74 2657.21 2477.07 2599.47
- 2569.67 2517.29 2626.12 2447.35 2655.68 2367.29 2711.03 2319.30
- 2773.02 2292.38 2861.88 2283.27 2973.99 2321.24 3056.15 2342.63
- 3132.02 2372.26 3205.36 2386.80 3298.53 2396.31 3383.48 2391.46
- 3482.22 2360.40 3563.85 2352.19 3650.74 2342.01 3723.65 2367.35
- 3780.03 2403.76 3814.76 2480.39 3784.99 2559.54 3790.06 2620.93
- 3795.07 2677.25 3832.62 2733.24 3906.80 2759.03 3960.63 2814.57
- 4020.71 2885.06 4032.46 2963.92 4012.72 3015.92 3978.03 3070.32
- 3908.14 3108.97 3865.39 3161.16 3827.80 3224.30 3812.08 3275.14
- 3810.75 3319.81 3811.42 3370.29 3833.02 3440.10 3819.75 3504.18
- 3794.38 3559.72 3741.11 3595.91 3686.44 3595.87 3610.46 3590.28
- 3505.76 3545.45 3414.70 3523.15 3309.22 3499.13 3230.08 3493.77
- 3153.74 3496.05 3083.18 3513.18 3006.08 3557.58 2933.99 3585.16
- 2846.92 3619.08 2756.29 3629.98 2648.48 3643.97 2558.32 3583.89
- 2528.77 3516.65 2527.45 3443.57 2564.92 3399.51 2590.31 3325.60
- 2645.05 3217.24 2616.38 3117.57 2563.49 3086.25 2520.34 3049.92
- 2463.19 3009.48 2428.31 2988.04 2403.46 2977.59 2372.68 2956.16
-4 0 -1 0 0 16 10 0.0000000 4 150 900 2701 2851 Computation\001
-4 0 -1 0 0 16 10 0.0000000 4 150 600 2701 3076 Manager\001
--6
-6 4725 6000 6525 7425
-3 3 1 1 -1 7 2 0 -1 4.000 0 0 0 36
- 4824 6713 4741 6638 4749 6473 4868 6376 5033 6218 5116 6083
- 5236 6031 5453 6076 5596 6121 5769 6136 5956 6098 6121 6098
- 6226 6181 6218 6338 6241 6443 6361 6526 6458 6676 6428 6781
- 6316 6878 6248 6998 6241 7081 6256 7216 6196 7321 6091 7336
- 5889 7276 5693 7238 5551 7246 5401 7313 5236 7366 5026 7351
- 4958 7216 5003 7118 5056 6893 4973 6811 4868 6736 4824 6713
- 4833.46 6719.59 4802.68 6698.16 4753.05 6667.00 4723.21 6595.18
- 4728.49 6513.61 4768.06 6435.25 4841.74 6399.21 4907.07 6341.47
- 4999.67 6259.29 5056.12 6189.35 5085.68 6109.29 5141.03 6061.30
- 5203.02 6034.38 5291.88 6025.27 5403.99 6063.24 5486.15 6084.63
- 5562.02 6114.26 5635.36 6128.80 5728.53 6138.31 5813.48 6133.46
- 5912.22 6102.40 5993.85 6094.19 6080.74 6084.01 6153.65 6109.35
- 6210.03 6145.76 6244.76 6222.39 6214.99 6301.54 6220.06 6362.93
- 6225.07 6419.25 6262.62 6475.24 6336.80 6501.03 6390.63 6556.57
- 6450.71 6627.06 6462.46 6705.92 6442.72 6757.92 6408.03 6812.32
- 6338.14 6850.97 6295.39 6903.16 6257.80 6966.30 6242.08 7017.14
- 6240.75 7061.81 6241.42 7112.29 6263.02 7182.10 6249.75 7246.18
- 6224.38 7301.72 6171.11 7337.91 6116.44 7337.87 6040.46 7332.28
- 5935.76 7287.45 5844.70 7265.15 5739.22 7241.13 5660.08 7235.77
- 5583.74 7238.05 5513.18 7255.18 5436.08 7299.58 5363.99 7327.16
- 5276.92 7361.08 5186.29 7371.98 5078.48 7385.97 4988.32 7325.89
- 4958.77 7258.65 4957.45 7185.57 4994.92 7141.51 5020.31 7067.60
- 5075.05 6959.24 5046.38 6859.57 4993.49 6828.25 4950.34 6791.92
- 4893.19 6751.48 4858.31 6730.04 4833.46 6719.59 4802.68 6698.16
-4 0 -1 0 0 16 10 0.0000000 4 120 465 5176 6601 Broker\001
--6
-6 149 6599 1949 8024
-3 3 1 1 -1 7 2 0 -1 4.000 0 0 0 36
- 256 7312 173 7237 181 7072 300 6975 465 6817 548 6682
- 668 6630 885 6675 1028 6720 1201 6735 1388 6697 1553 6697
- 1658 6780 1650 6937 1673 7042 1793 7125 1890 7275 1860 7380
- 1748 7477 1680 7597 1673 7680 1688 7815 1628 7920 1523 7935
- 1321 7875 1125 7837 983 7845 833 7912 668 7965 458 7950
- 390 7815 435 7717 488 7492 405 7410 300 7335 256 7312
- 265.46 7318.59 234.68 7297.16 185.05 7266.00 155.21 7194.18
- 160.49 7112.61 200.06 7034.25 273.74 6998.21 339.07 6940.47
- 431.67 6858.29 488.12 6788.35 517.68 6708.29 573.03 6660.30
- 635.02 6633.38 723.88 6624.27 835.99 6662.24 918.15 6683.63
- 994.02 6713.26 1067.36 6727.80 1160.53 6737.31 1245.48 6732.46
- 1344.22 6701.40 1425.85 6693.19 1512.74 6683.01 1585.65 6708.35
- 1642.03 6744.76 1676.76 6821.39 1646.99 6900.54 1652.06 6961.93
- 1657.07 7018.25 1694.62 7074.24 1768.80 7100.03 1822.63 7155.57
- 1882.71 7226.06 1894.46 7304.92 1874.72 7356.92 1840.03 7411.32
- 1770.14 7449.97 1727.39 7502.16 1689.80 7565.30 1674.08 7616.14
- 1672.75 7660.81 1673.42 7711.29 1695.02 7781.10 1681.75 7845.18
- 1656.38 7900.72 1603.11 7936.91 1548.44 7936.87 1472.46 7931.28
- 1367.76 7886.45 1276.70 7864.15 1171.22 7840.13 1092.08 7834.77
- 1015.74 7837.05 945.18 7854.18 868.08 7898.58 795.99 7926.16
- 708.92 7960.08 618.29 7970.98 510.48 7984.97 420.32 7924.89
- 390.77 7857.65 389.45 7784.57 426.92 7740.51 452.31 7666.60
- 507.05 7558.24 478.38 7458.57 425.49 7427.25 382.34 7390.92
- 325.19 7350.48 290.31 7329.04 265.46 7318.59 234.68 7297.16
-4 0 -1 0 0 16 10 0.0000000 4 120 945 525 7125 WordChecker\001
-4 0 -1 0 0 16 10 0.0000000 4 150 420 525 7350 Agent\001
--6
-6 4049 1724 5849 3149
-3 3 1 1 -1 7 2 0 -1 4.000 0 0 0 36
- 4201 2476 4118 2401 4126 2236 4245 2139 4410 1981 4493 1846
- 4613 1794 4830 1839 4973 1884 5146 1899 5333 1861 5498 1861
- 5603 1944 5595 2101 5618 2206 5738 2289 5835 2439 5805 2544
- 5693 2641 5625 2761 5618 2844 5633 2979 5573 3084 5468 3099
- 5266 3039 5070 3001 4928 3009 4778 3076 4613 3129 4403 3114
- 4335 2979 4380 2881 4433 2656 4350 2574 4245 2499 4201 2476
- 4210.46 2482.59 4179.68 2461.16 4130.05 2430.00 4100.21 2358.18
- 4105.49 2276.61 4145.06 2198.25 4218.74 2162.21 4284.07 2104.47
- 4376.67 2022.29 4433.12 1952.35 4462.68 1872.29 4518.03 1824.30
- 4580.02 1797.38 4668.88 1788.27 4780.99 1826.24 4863.15 1847.63
- 4939.02 1877.26 5012.36 1891.80 5105.53 1901.31 5190.48 1896.46
- 5289.22 1865.40 5370.85 1857.19 5457.74 1847.01 5530.65 1872.35
- 5587.03 1908.76 5621.76 1985.39 5591.99 2064.54 5597.06 2125.93
- 5602.07 2182.25 5639.62 2238.24 5713.80 2264.03 5767.63 2319.57
- 5827.71 2390.06 5839.46 2468.92 5819.72 2520.92 5785.03 2575.32
- 5715.14 2613.97 5672.39 2666.16 5634.80 2729.30 5619.08 2780.14
- 5617.75 2824.81 5618.42 2875.29 5640.02 2945.10 5626.75 3009.18
- 5601.38 3064.72 5548.11 3100.91 5493.44 3100.87 5417.46 3095.28
- 5312.76 3050.45 5221.70 3028.15 5116.22 3004.13 5037.08 2998.77
- 4960.74 3001.05 4890.18 3018.18 4813.08 3062.58 4740.99 3090.16
- 4653.92 3124.08 4563.29 3134.98 4455.48 3148.97 4365.32 3088.89
- 4335.77 3021.65 4334.45 2948.57 4371.92 2904.51 4397.31 2830.60
- 4452.05 2722.24 4423.38 2622.57 4370.49 2591.25 4327.34 2554.92
- 4270.19 2514.48 4235.31 2493.04 4210.46 2482.59 4179.68 2461.16
-4 0 -1 0 0 16 10 0.0000000 4 150 1260 4350 2400 Class Membership\001
-4 0 -1 0 0 16 10 0.0000000 4 120 765 4575 2625 Determiner\001
--6
-1 3 0 1 -1 0 0 0 20 0.0000000 1 0.000 5101 5100 75 75 5101 5100 5176 5175
-1 3 0 1 -1 0 0 0 20 0.0000000 1 0.000 5775 4800 75 75 5775 4800 5850 4875
-1 3 0 1 -1 0 0 0 20 0.0000000 1 0.000 5925 4275 75 75 5925 4275 6000 4350
-1 3 0 1 -1 0 0 0 20 0.0000000 1 0.000 6750 1650 75 75 6750 1650 6825 1725
-1 3 0 1 -1 0 0 0 20 0.0000000 1 0.000 5100 3750 75 75 5100 3750 5175 3825
-1 3 0 1 -1 0 0 0 20 0.0000000 1 0.000 4275 3975 75 75 4275 3975 4350 4050
-1 3 0 1 -1 0 0 0 20 0.0000000 1 0.000 1575 4875 75 75 1575 4875 1650 4950
-1 3 0 1 -1 0 0 0 20 0.0000000 1 0.000 750 4875 75 75 750 4875 825 4950
-1 3 0 1 -1 0 0 0 20 0.0000000 1 0.000 2325 5550 75 75 2325 5550 2400 5625
-1 3 0 1 -1 0 0 0 20 0.0000000 1 0.000 3375 5550 75 75 3375 5550 3450 5625
-1 3 0 1 -1 0 0 0 20 0.0000000 1 0.000 6225 1800 75 75 6225 1800 6300 1875
-2 1 0 1 -1 7 0 0 20 0.000 0 0 -1 1 0 2
- 1 1 1.00 60.00 120.00
- 2475 900 3150 750
-2 1 0 1 -1 7 0 0 20 0.000 0 0 -1 1 0 2
- 1 1 1.00 60.00 120.00
- 5775 750 5100 750
-2 1 0 1 -1 7 0 0 20 0.000 0 0 -1 1 0 2
- 1 1 1.00 60.00 120.00
- 750 3300 975 1725
-2 1 0 1 -1 7 0 0 20 0.000 0 0 -1 0 0 2
- 6750 1650 6900 1875
-2 1 0 1 -1 7 0 0 20 0.000 0 0 -1 0 0 2
- 5925 4275 6450 4125
-2 1 0 1 -1 7 0 0 20 0.000 0 0 -1 0 0 2
- 5775 4800 6525 5400
-2 1 0 1 -1 7 0 0 20 0.000 0 0 -1 0 0 2
- 750 4800 900 6525
-2 1 0 1 -1 7 0 0 20 0.000 0 0 -1 0 0 2
- 1575 4875 2400 6675
-2 1 0 1 -1 7 0 0 20 0.000 0 0 -1 1 0 2
- 1 1 1.00 60.00 120.00
- 2400 2400 2100 1650
-2 1 0 1 -1 7 0 0 20 0.000 0 0 -1 1 0 2
- 1 1 1.00 60.00 120.00
- 2250 4200 1650 1650
-2 1 0 1 -1 7 0 0 20 0.000 0 0 -1 0 0 2
- 4275 3975 3900 3675
-2 1 0 1 -1 7 0 0 20 0.000 0 0 -1 1 0 2
- 1 1 1.00 60.00 120.00
- 4200 2025 2250 1350
-2 1 0 1 -1 7 0 0 20 0.000 0 0 -1 0 0 2
- 4800 3150 5100 3750
-2 1 0 1 -1 7 0 0 20 0.000 0 0 -1 0 0 2
- 5100 5100 5250 5850
-2 1 0 1 -1 7 0 0 20 0.000 0 0 -1 0 0 2
- 2325 5550 1650 6600
-2 1 0 1 -1 7 0 0 20 0.000 0 0 -1 0 0 2
- 3375 5550 3450 6600
-2 1 0 1 -1 7 0 0 20 0.000 0 0 -1 0 0 2
- 6225 1800 5625 3750
Copied: branches/daly/version13/src/doc/manual/figs/sm2small.fig (from rev 242, branches/daly/version13/src/doc/manual/figs/sm2.fig)
===================================================================
--- branches/daly/version13/src/doc/manual/figs/sm2small.fig (rev 0)
+++ branches/daly/version13/src/doc/manual/figs/sm2small.fig 2007-05-24 16:25:28 UTC (rev 243)
@@ -0,0 +1,451 @@
+#FIG 3.1
+Landscape
+Center
+Inches
+1200 2
+6 3225 75 5025 1500
+3 3 1 1 -1 7 2 0 -1 4.000 0 0 0 36
+ 3324 788 3241 713 3249 548 3368 451 3533 293 3616 158
+ 3736 106 3953 151 4096 196 4269 211 4456 173 4621 173
+ 4726 256 4718 413 4741 518 4861 601 4958 751 4928 856
+ 4816 953 4748 1073 4741 1156 4756 1291 4696 1396 4591 1411
+ 4389 1351 4193 1313 4051 1321 3901 1388 3736 1441 3526 1426
+ 3458 1291 3503 1193 3556 968 3473 886 3368 811 3324 788
+ 3333.46 794.59 3302.68 773.16 3253.05 742.00 3223.21 670.18
+ 3228.49 588.61 3268.06 510.25 3341.74 474.21 3407.07 416.47
+ 3499.67 334.29 3556.12 264.35 3585.68 184.29 3641.03 136.30
+ 3703.02 109.38 3791.88 100.27 3903.99 138.24 3986.15 159.63
+ 4062.02 189.26 4135.36 203.80 4228.53 213.31 4313.48 208.46
+ 4412.22 177.40 4493.85 169.19 4580.74 159.01 4653.65 184.35
+ 4710.03 220.76 4744.76 297.39 4714.99 376.54 4720.06 437.93
+ 4725.07 494.25 4762.62 550.24 4836.80 576.03 4890.63 631.57
+ 4950.71 702.06 4962.46 780.92 4942.72 832.92 4908.03 887.32
+ 4838.14 925.97 4795.39 978.16 4757.80 1041.30 4742.08 1092.14
+ 4740.75 1136.81 4741.42 1187.29 4763.02 1257.10 4749.75 1321.18
+ 4724.38 1376.72 4671.11 1412.91 4616.44 1412.87 4540.46 1407.28
+ 4435.76 1362.45 4344.70 1340.15 4239.22 1316.13 4160.08 1310.77
+ 4083.74 1313.05 4013.18 1330.18 3936.08 1374.58 3863.99 1402.16
+ 3776.92 1436.08 3686.29 1446.98 3578.48 1460.97 3488.32 1400.89
+ 3458.77 1333.65 3457.45 1260.57 3494.92 1216.51 3520.31 1142.60
+ 3575.05 1034.24 3546.38 934.57 3493.49 903.25 3450.34 866.92
+ 3393.19 826.48 3358.31 805.04 3333.46 794.59 3302.68 773.16
+4 0 -1 0 0 16 10 0.0000000 4 150 1290 3451 751 BaseRegObjectRef\001
+-6
+6 5850 225 7650 1650
+3 3 1 1 -1 7 2 0 -1 4.000 0 0 0 36
+ 5964 983 5881 908 5889 743 6008 646 6173 488 6256 353
+ 6376 301 6593 346 6736 391 6909 406 7096 368 7261 368
+ 7366 451 7358 608 7381 713 7501 796 7598 946 7568 1051
+ 7456 1148 7388 1268 7381 1351 7396 1486 7336 1591 7231 1606
+ 7029 1546 6833 1508 6691 1516 6541 1583 6376 1636 6166 1621
+ 6098 1486 6143 1388 6196 1163 6113 1081 6008 1006 5964 983
+ 5973.46 989.59 5942.68 968.16 5893.05 937.00 5863.21 865.18
+ 5868.49 783.61 5908.06 705.25 5981.74 669.21 6047.07 611.47
+ 6139.67 529.29 6196.12 459.35 6225.68 379.29 6281.03 331.30
+ 6343.02 304.38 6431.88 295.27 6543.99 333.24 6626.15 354.63
+ 6702.02 384.26 6775.36 398.80 6868.53 408.31 6953.48 403.46
+ 7052.22 372.40 7133.85 364.19 7220.74 354.01 7293.65 379.35
+ 7350.03 415.76 7384.76 492.39 7354.99 571.54 7360.06 632.93
+ 7365.07 689.25 7402.62 745.24 7476.80 771.03 7530.63 826.57
+ 7590.71 897.06 7602.46 975.92 7582.72 1027.92 7548.03 1082.32
+ 7478.14 1120.97 7435.39 1173.16 7397.80 1236.30 7382.08 1287.14
+ 7380.75 1331.81 7381.42 1382.29 7403.02 1452.10 7389.75 1516.18
+ 7364.38 1571.72 7311.11 1607.91 7256.44 1607.87 7180.46 1602.28
+ 7075.76 1557.45 6984.70 1535.15 6879.22 1511.13 6800.08 1505.77
+ 6723.74 1508.05 6653.18 1525.18 6576.08 1569.58 6503.99 1597.16
+ 6416.92 1631.08 6326.29 1641.98 6218.48 1655.97 6128.32 1595.89
+ 6098.77 1528.65 6097.45 1455.57 6134.92 1411.51 6160.31 1337.60
+ 6215.05 1229.24 6186.38 1129.57 6133.49 1098.25 6090.34 1061.92
+ 6033.19 1021.48 5998.31 1000.04 5973.46 989.59 5942.68 968.16
+4 0 -1 0 0 16 10 0.0000000 4 150 735 6301 826 HolderRep\001
+-6
+6 6450 1875 8250 3300
+3 3 1 1 -1 7 2 0 -1 4.000 0 0 0 36
+ 6609 2603 6526 2528 6534 2363 6653 2266 6818 2108 6901 1973
+ 7021 1921 7238 1966 7381 2011 7554 2026 7741 1988 7906 1988
+ 8011 2071 8003 2228 8026 2333 8146 2416 8243 2566 8213 2671
+ 8101 2768 8033 2888 8026 2971 8041 3106 7981 3211 7876 3226
+ 7674 3166 7478 3128 7336 3136 7186 3203 7021 3256 6811 3241
+ 6743 3106 6788 3008 6841 2783 6758 2701 6653 2626 6609 2603
+ 6618.46 2609.59 6587.68 2588.16 6538.05 2557.00 6508.21 2485.18
+ 6513.49 2403.61 6553.06 2325.25 6626.74 2289.21 6692.07 2231.47
+ 6784.67 2149.29 6841.12 2079.35 6870.68 1999.29 6926.03 1951.30
+ 6988.02 1924.38 7076.88 1915.27 7188.99 1953.24 7271.15 1974.63
+ 7347.02 2004.26 7420.36 2018.80 7513.53 2028.31 7598.48 2023.46
+ 7697.22 1992.40 7778.85 1984.19 7865.74 1974.01 7938.65 1999.35
+ 7995.03 2035.76 8029.76 2112.39 7999.99 2191.54 8005.06 2252.93
+ 8010.07 2309.25 8047.62 2365.24 8121.80 2391.03 8175.63 2446.57
+ 8235.71 2517.06 8247.46 2595.92 8227.72 2647.92 8193.03 2702.32
+ 8123.14 2740.97 8080.39 2793.16 8042.80 2856.30 8027.08 2907.14
+ 8025.75 2951.81 8026.42 3002.29 8048.02 3072.10 8034.75 3136.18
+ 8009.38 3191.72 7956.11 3227.91 7901.44 3227.87 7825.46 3222.28
+ 7720.76 3177.45 7629.70 3155.15 7524.22 3131.13 7445.08 3125.77
+ 7368.74 3128.05 7298.18 3145.18 7221.08 3189.58 7148.99 3217.16
+ 7061.92 3251.08 6971.29 3261.98 6863.48 3275.97 6773.32 3215.89
+ 6743.77 3148.65 6742.45 3075.57 6779.92 3031.51 6805.31 2957.60
+ 6860.05 2849.24 6831.38 2749.57 6778.49 2718.25 6735.34 2681.92
+ 6678.19 2641.48 6643.31 2620.04 6618.46 2609.59 6587.68 2588.16
+4 0 -1 0 0 16 10 0.0000000 4 150 435 6976 2476 Group\001
+-6
+6 74 3374 1949 4799
+3 3 1 1 -1 7 2 0 -1 4.000 0 0 0 36
+ 241 4095 158 4020 166 3855 285 3758 450 3600 533 3465
+ 653 3413 870 3458 1013 3503 1186 3518 1373 3480 1538 3480
+ 1643 3563 1635 3720 1658 3825 1778 3908 1875 4058 1845 4163
+ 1733 4260 1665 4380 1658 4463 1673 4598 1613 4703 1508 4718
+ 1306 4658 1110 4620 968 4628 818 4695 653 4748 443 4733
+ 375 4598 420 4500 473 4275 390 4193 285 4118 241 4095
+ 250.46 4101.59 219.68 4080.16 170.05 4049.00 140.21 3977.18
+ 145.49 3895.61 185.06 3817.25 258.74 3781.21 324.07 3723.47
+ 416.67 3641.29 473.12 3571.35 502.68 3491.29 558.03 3443.30
+ 620.02 3416.38 708.88 3407.27 820.99 3445.24 903.15 3466.63
+ 979.02 3496.26 1052.36 3510.80 1145.53 3520.31 1230.48 3515.46
+ 1329.22 3484.40 1410.85 3476.19 1497.74 3466.01 1570.65 3491.35
+ 1627.03 3527.76 1661.76 3604.39 1631.99 3683.54 1637.06 3744.93
+ 1642.07 3801.25 1679.62 3857.24 1753.80 3883.03 1807.63 3938.57
+ 1867.71 4009.06 1879.46 4087.92 1859.72 4139.92 1825.03 4194.32
+ 1755.14 4232.97 1712.39 4285.16 1674.80 4348.30 1659.08 4399.14
+ 1657.75 4443.81 1658.42 4494.29 1680.02 4564.10 1666.75 4628.18
+ 1641.38 4683.72 1588.11 4719.91 1533.44 4719.87 1457.46 4714.28
+ 1352.76 4669.45 1261.70 4647.15 1156.22 4623.13 1077.08 4617.77
+ 1000.74 4620.05 930.18 4637.18 853.08 4681.58 780.99 4709.16
+ 693.92 4743.08 603.29 4753.98 495.48 4767.97 405.32 4707.89
+ 375.77 4640.65 374.45 4567.57 411.92 4523.51 437.31 4449.60
+ 492.05 4341.24 463.38 4241.57 410.49 4210.25 367.34 4173.92
+ 310.19 4133.48 275.31 4112.04 250.46 4101.59 219.68 4080.16
+4 0 -1 0 0 16 10 0.0000000 4 150 1050 450 3975 AbelianToolRep\001
+-6
+6 600 225 2400 1650
+3 3 1 1 -1 7 2 0 -1 4.000 0 0 0 36
+ 714 938 631 863 639 698 758 601 923 443 1006 308
+ 1126 256 1343 301 1486 346 1659 361 1846 323 2011 323
+ 2116 406 2108 563 2131 668 2251 751 2348 901 2318 1006
+ 2206 1103 2138 1223 2131 1306 2146 1441 2086 1546 1981 1561
+ 1779 1501 1583 1463 1441 1471 1291 1538 1126 1591 916 1576
+ 848 1441 893 1343 946 1118 863 1036 758 961 714 938
+ 723.46 944.59 692.68 923.16 643.05 892.00 613.21 820.18
+ 618.49 738.61 658.06 660.25 731.74 624.21 797.07 566.47
+ 889.67 484.29 946.12 414.35 975.68 334.29 1031.03 286.30
+ 1093.02 259.38 1181.88 250.27 1293.99 288.24 1376.15 309.63
+ 1452.02 339.26 1525.36 353.80 1618.53 363.31 1703.48 358.46
+ 1802.22 327.40 1883.85 319.19 1970.74 309.01 2043.65 334.35
+ 2100.03 370.76 2134.76 447.39 2104.99 526.54 2110.06 587.93
+ 2115.07 644.25 2152.62 700.24 2226.80 726.03 2280.63 781.57
+ 2340.71 852.06 2352.46 930.92 2332.72 982.92 2298.03 1037.32
+ 2228.14 1075.97 2185.39 1128.16 2147.80 1191.30 2132.08 1242.14
+ 2130.75 1286.81 2131.42 1337.29 2153.02 1407.10 2139.75 1471.18
+ 2114.38 1526.72 2061.11 1562.91 2006.44 1562.87 1930.46 1557.28
+ 1825.76 1512.45 1734.70 1490.15 1629.22 1466.13 1550.08 1460.77
+ 1473.74 1463.05 1403.18 1480.18 1326.08 1524.58 1253.99 1552.16
+ 1166.92 1586.08 1076.29 1596.98 968.48 1610.97 878.32 1550.89
+ 848.77 1483.65 847.45 1410.57 884.92 1366.51 910.31 1292.60
+ 965.05 1184.24 936.38 1084.57 883.49 1053.25 840.34 1016.92
+ 783.19 976.48 748.31 955.04 723.46 944.59 692.68 923.16
+4 0 -1 0 0 16 10 0.0000000 4 150 1155 901 826 ActiveObjectRep\001
+-6
+6 6374 5174 8174 6599
+3 3 1 1 -1 7 2 0 -1 4.000 0 0 0 36
+ 6523 5880 6440 5805 6448 5640 6567 5543 6732 5385 6815 5250
+ 6935 5198 7152 5243 7295 5288 7468 5303 7655 5265 7820 5265
+ 7925 5348 7917 5505 7940 5610 8060 5693 8157 5843 8127 5948
+ 8015 6045 7947 6165 7940 6248 7955 6383 7895 6488 7790 6503
+ 7588 6443 7392 6405 7250 6413 7100 6480 6935 6533 6725 6518
+ 6657 6383 6702 6285 6755 6060 6672 5978 6567 5903 6523 5880
+ 6532.46 5886.59 6501.68 5865.16 6452.05 5834.00 6422.21 5762.18
+ 6427.49 5680.61 6467.06 5602.25 6540.74 5566.21 6606.07 5508.47
+ 6698.67 5426.29 6755.12 5356.35 6784.68 5276.29 6840.03 5228.30
+ 6902.02 5201.38 6990.88 5192.27 7102.99 5230.24 7185.15 5251.63
+ 7261.02 5281.26 7334.36 5295.80 7427.53 5305.31 7512.48 5300.46
+ 7611.22 5269.40 7692.85 5261.19 7779.74 5251.01 7852.65 5276.35
+ 7909.03 5312.76 7943.76 5389.39 7913.99 5468.54 7919.06 5529.93
+ 7924.07 5586.25 7961.62 5642.24 8035.80 5668.03 8089.63 5723.57
+ 8149.71 5794.06 8161.46 5872.92 8141.72 5924.92 8107.03 5979.32
+ 8037.14 6017.97 7994.39 6070.16 7956.80 6133.30 7941.08 6184.14
+ 7939.75 6228.81 7940.42 6279.29 7962.02 6349.10 7948.75 6413.18
+ 7923.38 6468.72 7870.11 6504.91 7815.44 6504.87 7739.46 6499.28
+ 7634.76 6454.45 7543.70 6432.15 7438.22 6408.13 7359.08 6402.77
+ 7282.74 6405.05 7212.18 6422.18 7135.08 6466.58 7062.99 6494.16
+ 6975.92 6528.08 6885.29 6538.98 6777.48 6552.97 6687.32 6492.89
+ 6657.77 6425.65 6656.45 6352.57 6693.92 6308.51 6719.31 6234.60
+ 6774.05 6126.24 6745.38 6026.57 6692.49 5995.25 6649.34 5958.92
+ 6592.19 5918.48 6557.31 5897.04 6532.46 5886.59 6501.68 5865.16
+4 0 -1 0 0 16 10 0.0000000 4 120 720 6825 5700 DataStore\001
+-6
+6 6449 3449 8249 4874
+3 3 1 1 -1 7 2 0 -1 4.000 0 0 0 36
+ 6596 4183 6513 4108 6521 3943 6640 3846 6805 3688 6888 3553
+ 7008 3501 7225 3546 7368 3591 7541 3606 7728 3568 7893 3568
+ 7998 3651 7990 3808 8013 3913 8133 3996 8230 4146 8200 4251
+ 8088 4348 8020 4468 8013 4551 8028 4686 7968 4791 7863 4806
+ 7661 4746 7465 4708 7323 4716 7173 4783 7008 4836 6798 4821
+ 6730 4686 6775 4588 6828 4363 6745 4281 6640 4206 6596 4183
+ 6605.46 4189.59 6574.68 4168.16 6525.05 4137.00 6495.21 4065.18
+ 6500.49 3983.61 6540.06 3905.25 6613.74 3869.21 6679.07 3811.47
+ 6771.67 3729.29 6828.12 3659.35 6857.68 3579.29 6913.03 3531.30
+ 6975.02 3504.38 7063.88 3495.27 7175.99 3533.24 7258.15 3554.63
+ 7334.02 3584.26 7407.36 3598.80 7500.53 3608.31 7585.48 3603.46
+ 7684.22 3572.40 7765.85 3564.19 7852.74 3554.01 7925.65 3579.35
+ 7982.03 3615.76 8016.76 3692.39 7986.99 3771.54 7992.06 3832.93
+ 7997.07 3889.25 8034.62 3945.24 8108.80 3971.03 8162.63 4026.57
+ 8222.71 4097.06 8234.46 4175.92 8214.72 4227.92 8180.03 4282.32
+ 8110.14 4320.97 8067.39 4373.16 8029.80 4436.30 8014.08 4487.14
+ 8012.75 4531.81 8013.42 4582.29 8035.02 4652.10 8021.75 4716.18
+ 7996.38 4771.72 7943.11 4807.91 7888.44 4807.87 7812.46 4802.28
+ 7707.76 4757.45 7616.70 4735.15 7511.22 4711.13 7432.08 4705.77
+ 7355.74 4708.05 7285.18 4725.18 7208.08 4769.58 7135.99 4797.16
+ 7048.92 4831.08 6958.29 4841.98 6850.48 4855.97 6760.32 4795.89
+ 6730.77 4728.65 6729.45 4655.57 6766.92 4611.51 6792.31 4537.60
+ 6847.05 4429.24 6818.38 4329.57 6765.49 4298.25 6722.34 4261.92
+ 6665.19 4221.48 6630.31 4200.04 6605.46 4189.59 6574.68 4168.16
+4 0 -1 0 0 16 10 0.0000000 4 120 255 6975 4050 ISS\001
+-6
+6 4125 3750 5925 5175
+3 3 1 1 -1 7 2 0 -1 4.000 0 0 0 36
+ 4250 4468 4167 4393 4175 4228 4294 4131 4459 3973 4542 3838
+ 4662 3786 4879 3831 5022 3876 5195 3891 5382 3853 5547 3853
+ 5652 3936 5644 4093 5667 4198 5787 4281 5884 4431 5854 4536
+ 5742 4633 5674 4753 5667 4836 5682 4971 5622 5076 5517 5091
+ 5315 5031 5119 4993 4977 5001 4827 5068 4662 5121 4452 5106
+ 4384 4971 4429 4873 4482 4648 4399 4566 4294 4491 4250 4468
+ 4259.46 4474.59 4228.68 4453.16 4179.05 4422.00 4149.21 4350.18
+ 4154.49 4268.61 4194.06 4190.25 4267.74 4154.21 4333.07 4096.47
+ 4425.67 4014.29 4482.12 3944.35 4511.68 3864.29 4567.03 3816.30
+ 4629.02 3789.38 4717.88 3780.27 4829.99 3818.24 4912.15 3839.63
+ 4988.02 3869.26 5061.36 3883.80 5154.53 3893.31 5239.48 3888.46
+ 5338.22 3857.40 5419.85 3849.19 5506.74 3839.01 5579.65 3864.35
+ 5636.03 3900.76 5670.76 3977.39 5640.99 4056.54 5646.06 4117.93
+ 5651.07 4174.25 5688.62 4230.24 5762.80 4256.03 5816.63 4311.57
+ 5876.71 4382.06 5888.46 4460.92 5868.72 4512.92 5834.03 4567.32
+ 5764.14 4605.97 5721.39 4658.16 5683.80 4721.30 5668.08 4772.14
+ 5666.75 4816.81 5667.42 4867.29 5689.02 4937.10 5675.75 5001.18
+ 5650.38 5056.72 5597.11 5092.91 5542.44 5092.87 5466.46 5087.28
+ 5361.76 5042.45 5270.70 5020.15 5165.22 4996.13 5086.08 4990.77
+ 5009.74 4993.05 4939.18 5010.18 4862.08 5054.58 4789.99 5082.16
+ 4702.92 5116.08 4612.29 5126.98 4504.48 5140.97 4414.32 5080.89
+ 4384.77 5013.65 4383.45 4940.57 4420.92 4896.51 4446.31 4822.60
+ 4501.05 4714.24 4472.38 4614.57 4419.49 4583.25 4376.34 4546.92
+ 4319.19 4506.48 4284.31 4485.04 4259.46 4474.59 4228.68 4453.16
+4 0 -1 0 0 16 10 0.0000000 4 120 480 4576 4351 FPGIC\001
+-6
+6 2099 6599 3899 8024
+3 3 1 1 -1 7 2 0 -1 4.000 0 0 0 36
+ 2258 7312 2175 7237 2183 7072 2302 6975 2467 6817 2550 6682
+ 2670 6630 2887 6675 3030 6720 3203 6735 3390 6697 3555 6697
+ 3660 6780 3652 6937 3675 7042 3795 7125 3892 7275 3862 7380
+ 3750 7477 3682 7597 3675 7680 3690 7815 3630 7920 3525 7935
+ 3323 7875 3127 7837 2985 7845 2835 7912 2670 7965 2460 7950
+ 2392 7815 2437 7717 2490 7492 2407 7410 2302 7335 2258 7312
+ 2267.46 7318.59 2236.68 7297.16 2187.05 7266.00 2157.21 7194.18
+ 2162.49 7112.61 2202.06 7034.25 2275.74 6998.21 2341.07 6940.47
+ 2433.67 6858.29 2490.12 6788.35 2519.68 6708.29 2575.03 6660.30
+ 2637.02 6633.38 2725.88 6624.27 2837.99 6662.24 2920.15 6683.63
+ 2996.02 6713.26 3069.36 6727.80 3162.53 6737.31 3247.48 6732.46
+ 3346.22 6701.40 3427.85 6693.19 3514.74 6683.01 3587.65 6708.35
+ 3644.03 6744.76 3678.76 6821.39 3648.99 6900.54 3654.06 6961.93
+ 3659.07 7018.25 3696.62 7074.24 3770.80 7100.03 3824.63 7155.57
+ 3884.71 7226.06 3896.46 7304.92 3876.72 7356.92 3842.03 7411.32
+ 3772.14 7449.97 3729.39 7502.16 3691.80 7565.30 3676.08 7616.14
+ 3674.75 7660.81 3675.42 7711.29 3697.02 7781.10 3683.75 7845.18
+ 3658.38 7900.72 3605.11 7936.91 3550.44 7936.87 3474.46 7931.28
+ 3369.76 7886.45 3278.70 7864.15 3173.22 7840.13 3094.08 7834.77
+ 3017.74 7837.05 2947.18 7854.18 2870.08 7898.58 2797.99 7926.16
+ 2710.92 7960.08 2620.29 7970.98 2512.48 7984.97 2422.32 7924.89
+ 2392.77 7857.65 2391.45 7784.57 2428.92 7740.51 2454.31 7666.60
+ 2509.05 7558.24 2480.38 7458.57 2427.49 7427.25 2384.34 7390.92
+ 2327.19 7350.48 2292.31 7329.04 2267.46 7318.59 2236.68 7297.16
+4 0 -1 0 0 16 10 0.0000000 4 120 570 2550 7200 Account\001
+-6
+6 2025 4050 3900 5475
+3 3 1 1 -1 7 2 0 -1 4.000 0 0 0 36
+ 2192 4771 2109 4696 2117 4531 2236 4434 2401 4276 2484 4141
+ 2604 4089 2821 4134 2964 4179 3137 4194 3324 4156 3489 4156
+ 3594 4239 3586 4396 3609 4501 3729 4584 3826 4734 3796 4839
+ 3684 4936 3616 5056 3609 5139 3624 5274 3564 5379 3459 5394
+ 3257 5334 3061 5296 2919 5304 2769 5371 2604 5424 2394 5409
+ 2326 5274 2371 5176 2424 4951 2341 4869 2236 4794 2192 4771
+ 2201.46 4777.59 2170.68 4756.16 2121.05 4725.00 2091.21 4653.18
+ 2096.49 4571.61 2136.06 4493.25 2209.74 4457.21 2275.07 4399.47
+ 2367.67 4317.29 2424.12 4247.35 2453.68 4167.29 2509.03 4119.30
+ 2571.02 4092.38 2659.88 4083.27 2771.99 4121.24 2854.15 4142.63
+ 2930.02 4172.26 3003.36 4186.80 3096.53 4196.31 3181.48 4191.46
+ 3280.22 4160.40 3361.85 4152.19 3448.74 4142.01 3521.65 4167.35
+ 3578.03 4203.76 3612.76 4280.39 3582.99 4359.54 3588.06 4420.93
+ 3593.07 4477.25 3630.62 4533.24 3704.80 4559.03 3758.63 4614.57
+ 3818.71 4685.06 3830.46 4763.92 3810.72 4815.92 3776.03 4870.32
+ 3706.14 4908.97 3663.39 4961.16 3625.80 5024.30 3610.08 5075.14
+ 3608.75 5119.81 3609.42 5170.29 3631.02 5240.10 3617.75 5304.18
+ 3592.38 5359.72 3539.11 5395.91 3484.44 5395.87 3408.46 5390.28
+ 3303.76 5345.45 3212.70 5323.15 3107.22 5299.13 3028.08 5293.77
+ 2951.74 5296.05 2881.18 5313.18 2804.08 5357.58 2731.99 5385.16
+ 2644.92 5419.08 2554.29 5429.98 2446.48 5443.97 2356.32 5383.89
+ 2326.77 5316.65 2325.45 5243.57 2362.92 5199.51 2388.31 5125.60
+ 2443.05 5017.24 2414.38 4917.57 2361.49 4886.25 2318.34 4849.92
+ 2261.19 4809.48 2226.31 4788.04 2201.46 4777.59 2170.68 4756.16
+4 0 -1 0 0 16 10 0.0000000 4 150 1275 2326 4726 WordProbToolRep\001
+-6
+6 2250 2250 4050 3675
+3 3 1 1 -1 7 2 0 -1 4.000 0 0 0 36
+ 2394 2971 2311 2896 2319 2731 2438 2634 2603 2476 2686 2341
+ 2806 2289 3023 2334 3166 2379 3339 2394 3526 2356 3691 2356
+ 3796 2439 3788 2596 3811 2701 3931 2784 4028 2934 3998 3039
+ 3886 3136 3818 3256 3811 3339 3826 3474 3766 3579 3661 3594
+ 3459 3534 3263 3496 3121 3504 2971 3571 2806 3624 2596 3609
+ 2528 3474 2573 3376 2626 3151 2543 3069 2438 2994 2394 2971
+ 2403.46 2977.59 2372.68 2956.16 2323.05 2925.00 2293.21 2853.18
+ 2298.49 2771.61 2338.06 2693.25 2411.74 2657.21 2477.07 2599.47
+ 2569.67 2517.29 2626.12 2447.35 2655.68 2367.29 2711.03 2319.30
+ 2773.02 2292.38 2861.88 2283.27 2973.99 2321.24 3056.15 2342.63
+ 3132.02 2372.26 3205.36 2386.80 3298.53 2396.31 3383.48 2391.46
+ 3482.22 2360.40 3563.85 2352.19 3650.74 2342.01 3723.65 2367.35
+ 3780.03 2403.76 3814.76 2480.39 3784.99 2559.54 3790.06 2620.93
+ 3795.07 2677.25 3832.62 2733.24 3906.80 2759.03 3960.63 2814.57
+ 4020.71 2885.06 4032.46 2963.92 4012.72 3015.92 3978.03 3070.32
+ 3908.14 3108.97 3865.39 3161.16 3827.80 3224.30 3812.08 3275.14
+ 3810.75 3319.81 3811.42 3370.29 3833.02 3440.10 3819.75 3504.18
+ 3794.38 3559.72 3741.11 3595.91 3686.44 3595.87 3610.46 3590.28
+ 3505.76 3545.45 3414.70 3523.15 3309.22 3499.13 3230.08 3493.77
+ 3153.74 3496.05 3083.18 3513.18 3006.08 3557.58 2933.99 3585.16
+ 2846.92 3619.08 2756.29 3629.98 2648.48 3643.97 2558.32 3583.89
+ 2528.77 3516.65 2527.45 3443.57 2564.92 3399.51 2590.31 3325.60
+ 2645.05 3217.24 2616.38 3117.57 2563.49 3086.25 2520.34 3049.92
+ 2463.19 3009.48 2428.31 2988.04 2403.46 2977.59 2372.68 2956.16
+4 0 -1 0 0 16 10 0.0000000 4 150 900 2701 2851 Computation\001
+4 0 -1 0 0 16 10 0.0000000 4 150 600 2701 3076 Manager\001
+-6
+6 4725 6000 6525 7425
+3 3 1 1 -1 7 2 0 -1 4.000 0 0 0 36
+ 4824 6713 4741 6638 4749 6473 4868 6376 5033 6218 5116 6083
+ 5236 6031 5453 6076 5596 6121 5769 6136 5956 6098 6121 6098
+ 6226 6181 6218 6338 6241 6443 6361 6526 6458 6676 6428 6781
+ 6316 6878 6248 6998 6241 7081 6256 7216 6196 7321 6091 7336
+ 5889 7276 5693 7238 5551 7246 5401 7313 5236 7366 5026 7351
+ 4958 7216 5003 7118 5056 6893 4973 6811 4868 6736 4824 6713
+ 4833.46 6719.59 4802.68 6698.16 4753.05 6667.00 4723.21 6595.18
+ 4728.49 6513.61 4768.06 6435.25 4841.74 6399.21 4907.07 6341.47
+ 4999.67 6259.29 5056.12 6189.35 5085.68 6109.29 5141.03 6061.30
+ 5203.02 6034.38 5291.88 6025.27 5403.99 6063.24 5486.15 6084.63
+ 5562.02 6114.26 5635.36 6128.80 5728.53 6138.31 5813.48 6133.46
+ 5912.22 6102.40 5993.85 6094.19 6080.74 6084.01 6153.65 6109.35
+ 6210.03 6145.76 6244.76 6222.39 6214.99 6301.54 6220.06 6362.93
+ 6225.07 6419.25 6262.62 6475.24 6336.80 6501.03 6390.63 6556.57
+ 6450.71 6627.06 6462.46 6705.92 6442.72 6757.92 6408.03 6812.32
+ 6338.14 6850.97 6295.39 6903.16 6257.80 6966.30 6242.08 7017.14
+ 6240.75 7061.81 6241.42 7112.29 6263.02 7182.10 6249.75 7246.18
+ 6224.38 7301.72 6171.11 7337.91 6116.44 7337.87 6040.46 7332.28
+ 5935.76 7287.45 5844.70 7265.15 5739.22 7241.13 5660.08 7235.77
+ 5583.74 7238.05 5513.18 7255.18 5436.08 7299.58 5363.99 7327.16
+ 5276.92 7361.08 5186.29 7371.98 5078.48 7385.97 4988.32 7325.89
+ 4958.77 7258.65 4957.45 7185.57 4994.92 7141.51 5020.31 7067.60
+ 5075.05 6959.24 5046.38 6859.57 4993.49 6828.25 4950.34 6791.92
+ 4893.19 6751.48 4858.31 6730.04 4833.46 6719.59 4802.68 6698.16
+4 0 -1 0 0 16 10 0.0000000 4 120 465 5176 6601 Broker\001
+-6
+6 149 6599 1949 8024
+3 3 1 1 -1 7 2 0 -1 4.000 0 0 0 36
+ 256 7312 173 7237 181 7072 300 6975 465 6817 548 6682
+ 668 6630 885 6675 1028 6720 1201 6735 1388 6697 1553 6697
+ 1658 6780 1650 6937 1673 7042 1793 7125 1890 7275 1860 7380
+ 1748 7477 1680 7597 1673 7680 1688 7815 1628 7920 1523 7935
+ 1321 7875 1125 7837 983 7845 833 7912 668 7965 458 7950
+ 390 7815 435 7717 488 7492 405 7410 300 7335 256 7312
+ 265.46 7318.59 234.68 7297.16 185.05 7266.00 155.21 7194.18
+ 160.49 7112.61 200.06 7034.25 273.74 6998.21 339.07 6940.47
+ 431.67 6858.29 488.12 6788.35 517.68 6708.29 573.03 6660.30
+ 635.02 6633.38 723.88 6624.27 835.99 6662.24 918.15 6683.63
+ 994.02 6713.26 1067.36 6727.80 1160.53 6737.31 1245.48 6732.46
+ 1344.22 6701.40 1425.85 6693.19 1512.74 6683.01 1585.65 6708.35
+ 1642.03 6744.76 1676.76 6821.39 1646.99 6900.54 1652.06 6961.93
+ 1657.07 7018.25 1694.62 7074.24 1768.80 7100.03 1822.63 7155.57
+ 1882.71 7226.06 1894.46 7304.92 1874.72 7356.92 1840.03 7411.32
+ 1770.14 7449.97 1727.39 7502.16 1689.80 7565.30 1674.08 7616.14
+ 1672.75 7660.81 1673.42 7711.29 1695.02 7781.10 1681.75 7845.18
+ 1656.38 7900.72 1603.11 7936.91 1548.44 7936.87 1472.46 7931.28
+ 1367.76 7886.45 1276.70 7864.15 1171.22 7840.13 1092.08 7834.77
+ 1015.74 7837.05 945.18 7854.18 868.08 7898.58 795.99 7926.16
+ 708.92 7960.08 618.29 7970.98 510.48 7984.97 420.32 7924.89
+ 390.77 7857.65 389.45 7784.57 426.92 7740.51 452.31 7666.60
+ 507.05 7558.24 478.38 7458.57 425.49 7427.25 382.34 7390.92
+ 325.19 7350.48 290.31 7329.04 265.46 7318.59 234.68 7297.16
+4 0 -1 0 0 16 10 0.0000000 4 120 945 525 7125 WordChecker\001
+4 0 -1 0 0 16 10 0.0000000 4 150 420 525 7350 Agent\001
+-6
+6 4049 1724 5849 3149
+3 3 1 1 -1 7 2 0 -1 4.000 0 0 0 36
+ 4201 2476 4118 2401 4126 2236 4245 2139 4410 1981 4493 1846
+ 4613 1794 4830 1839 4973 1884 5146 1899 5333 1861 5498 1861
+ 5603 1944 5595 2101 5618 2206 5738 2289 5835 2439 5805 2544
+ 5693 2641 5625 2761 5618 2844 5633 2979 5573 3084 5468 3099
+ 5266 3039 5070 3001 4928 3009 4778 3076 4613 3129 4403 3114
+ 4335 2979 4380 2881 4433 2656 4350 2574 4245 2499 4201 2476
+ 4210.46 2482.59 4179.68 2461.16 4130.05 2430.00 4100.21 2358.18
+ 4105.49 2276.61 4145.06 2198.25 4218.74 2162.21 4284.07 2104.47
+ 4376.67 2022.29 4433.12 1952.35 4462.68 1872.29 4518.03 1824.30
+ 4580.02 1797.38 4668.88 1788.27 4780.99 1826.24 4863.15 1847.63
+ 4939.02 1877.26 5012.36 1891.80 5105.53 1901.31 5190.48 1896.46
+ 5289.22 1865.40 5370.85 1857.19 5457.74 1847.01 5530.65 1872.35
+ 5587.03 1908.76 5621.76 1985.39 5591.99 2064.54 5597.06 2125.93
+ 5602.07 2182.25 5639.62 2238.24 5713.80 2264.03 5767.63 2319.57
+ 5827.71 2390.06 5839.46 2468.92 5819.72 2520.92 5785.03 2575.32
+ 5715.14 2613.97 5672.39 2666.16 5634.80 2729.30 5619.08 2780.14
+ 5617.75 2824.81 5618.42 2875.29 5640.02 2945.10 5626.75 3009.18
+ 5601.38 3064.72 5548.11 3100.91 5493.44 3100.87 5417.46 3095.28
+ 5312.76 3050.45 5221.70 3028.15 5116.22 3004.13 5037.08 2998.77
+ 4960.74 3001.05 4890.18 3018.18 4813.08 3062.58 4740.99 3090.16
+ 4653.92 3124.08 4563.29 3134.98 4455.48 3148.97 4365.32 3088.89
+ 4335.77 3021.65 4334.45 2948.57 4371.92 2904.51 4397.31 2830.60
+ 4452.05 2722.24 4423.38 2622.57 4370.49 2591.25 4327.34 2554.92
+ 4270.19 2514.48 4235.31 2493.04 4210.46 2482.59 4179.68 2461.16
+4 0 -1 0 0 16 10 0.0000000 4 150 1260 4350 2400 Class Membership\001
+4 0 -1 0 0 16 10 0.0000000 4 120 765 4575 2625 Determiner\001
+-6
+1 3 0 1 -1 0 0 0 20 0.0000000 1 0.000 5101 5100 75 75 5101 5100 5176 5175
+1 3 0 1 -1 0 0 0 20 0.0000000 1 0.000 5775 4800 75 75 5775 4800 5850 4875
+1 3 0 1 -1 0 0 0 20 0.0000000 1 0.000 5925 4275 75 75 5925 4275 6000 4350
+1 3 0 1 -1 0 0 0 20 0.0000000 1 0.000 6750 1650 75 75 6750 1650 6825 1725
+1 3 0 1 -1 0 0 0 20 0.0000000 1 0.000 5100 3750 75 75 5100 3750 5175 3825
+1 3 0 1 -1 0 0 0 20 0.0000000 1 0.000 4275 3975 75 75 4275 3975 4350 4050
+1 3 0 1 -1 0 0 0 20 0.0000000 1 0.000 1575 4875 75 75 1575 4875 1650 4950
+1 3 0 1 -1 0 0 0 20 0.0000000 1 0.000 750 4875 75 75 750 4875 825 4950
+1 3 0 1 -1 0 0 0 20 0.0000000 1 0.000 2325 5550 75 75 2325 5550 2400 5625
+1 3 0 1 -1 0 0 0 20 0.0000000 1 0.000 3375 5550 75 75 3375 5550 3450 5625
+1 3 0 1 -1 0 0 0 20 0.0000000 1 0.000 6225 1800 75 75 6225 1800 6300 1875
+2 1 0 1 -1 7 0 0 20 0.000 0 0 -1 1 0 2
+ 1 1 1.00 60.00 120.00
+ 2475 900 3150 750
+2 1 0 1 -1 7 0 0 20 0.000 0 0 -1 1 0 2
+ 1 1 1.00 60.00 120.00
+ 5775 750 5100 750
+2 1 0 1 -1 7 0 0 20 0.000 0 0 -1 1 0 2
+ 1 1 1.00 60.00 120.00
+ 750 3300 975 1725
+2 1 0 1 -1 7 0 0 20 0.000 0 0 -1 0 0 2
+ 6750 1650 6900 1875
+2 1 0 1 -1 7 0 0 20 0.000 0 0 -1 0 0 2
+ 5925 4275 6450 4125
+2 1 0 1 -1 7 0 0 20 0.000 0 0 -1 0 0 2
+ 5775 4800 6525 5400
+2 1 0 1 -1 7 0 0 20 0.000 0 0 -1 0 0 2
+ 750 4800 900 6525
+2 1 0 1 -1 7 0 0 20 0.000 0 0 -1 0 0 2
+ 1575 4875 2400 6675
+2 1 0 1 -1 7 0 0 20 0.000 0 0 -1 1 0 2
+ 1 1 1.00 60.00 120.00
+ 2400 2400 2100 1650
+2 1 0 1 -1 7 0 0 20 0.000 0 0 -1 1 0 2
+ 1 1 1.00 60.00 120.00
+ 2250 4200 1650 1650
+2 1 0 1 -1 7 0 0 20 0.000 0 0 -1 0 0 2
+ 4275 3975 3900 3675
+2 1 0 1 -1 7 0 0 20 0.000 0 0 -1 1 0 2
+ 1 1 1.00 60.00 120.00
+ 4200 2025 2250 1350
+2 1 0 1 -1 7 0 0 20 0.000 0 0 -1 0 0 2
+ 4800 3150 5100 3750
+2 1 0 1 -1 7 0 0 20 0.000 0 0 -1 0 0 2
+ 5100 5100 5250 5850
+2 1 0 1 -1 7 0 0 20 0.000 0 0 -1 0 0 2
+ 2325 5550 1650 6600
+2 1 0 1 -1 7 0 0 20 0.000 0 0 -1 0 0 2
+ 3375 5550 3450 6600
+2 1 0 1 -1 7 0 0 20 0.000 0 0 -1 0 0 2
+ 6225 1800 5625 3750
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <ybr...@us...> - 2007-05-24 16:07:39
|
Revision: 242
http://svn.sourceforge.net/magnus/?rev=242&view=rev
Author: ybryukhov
Date: 2007-05-24 09:07:37 -0700 (Thu, 24 May 2007)
Log Message:
-----------
and here
Added Paths:
-----------
branches/daly/version10/front_end/gdb/h2small
Removed Paths:
-------------
branches/daly/version10/front_end/gdb/h2
Deleted: branches/daly/version10/front_end/gdb/h2
===================================================================
--- branches/daly/version10/front_end/gdb/h2 2007-05-24 16:07:13 UTC (rev 241)
+++ branches/daly/version10/front_end/gdb/h2 2007-05-24 16:07:37 UTC (rev 242)
@@ -1 +0,0 @@
-[a,b,b][a,b,a^2]
Copied: branches/daly/version10/front_end/gdb/h2small (from rev 241, branches/daly/version10/front_end/gdb/h2)
===================================================================
--- branches/daly/version10/front_end/gdb/h2small (rev 0)
+++ branches/daly/version10/front_end/gdb/h2small 2007-05-24 16:07:37 UTC (rev 242)
@@ -0,0 +1 @@
+[a,b,b][a,b,a^2]
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <ybr...@us...> - 2007-05-24 16:07:21
|
Revision: 241
http://svn.sourceforge.net/magnus/?rev=241&view=rev
Author: ybryukhov
Date: 2007-05-24 09:07:13 -0700 (Thu, 24 May 2007)
Log Message:
-----------
same here
Added Paths:
-----------
branches/daly/version10/front_end/gdb/h1small
Removed Paths:
-------------
branches/daly/version10/front_end/gdb/h1
Deleted: branches/daly/version10/front_end/gdb/h1
===================================================================
--- branches/daly/version10/front_end/gdb/h1 2007-05-24 16:03:07 UTC (rev 240)
+++ branches/daly/version10/front_end/gdb/h1 2007-05-24 16:07:13 UTC (rev 241)
@@ -1 +0,0 @@
-[a,b,b][a,b,a]
Copied: branches/daly/version10/front_end/gdb/h1small (from rev 240, branches/daly/version10/front_end/gdb/h1)
===================================================================
--- branches/daly/version10/front_end/gdb/h1small (rev 0)
+++ branches/daly/version10/front_end/gdb/h1small 2007-05-24 16:07:13 UTC (rev 241)
@@ -0,0 +1 @@
+[a,b,b][a,b,a]
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <ybr...@us...> - 2007-05-24 16:03:15
|
Revision: 240
http://svn.sourceforge.net/magnus/?rev=240&view=rev
Author: ybryukhov
Date: 2007-05-24 09:03:07 -0700 (Thu, 24 May 2007)
Log Message:
-----------
same for sm2
Added Paths:
-----------
branches/daly/version10/doc/manual/figs/sm2small.fig
Removed Paths:
-------------
branches/daly/version10/doc/manual/figs/sm2.fig
Deleted: branches/daly/version10/doc/manual/figs/sm2.fig
===================================================================
--- branches/daly/version10/doc/manual/figs/sm2.fig 2007-05-24 15:58:48 UTC (rev 239)
+++ branches/daly/version10/doc/manual/figs/sm2.fig 2007-05-24 16:03:07 UTC (rev 240)
@@ -1,451 +0,0 @@
-#FIG 3.1
-Landscape
-Center
-Inches
-1200 2
-6 3225 75 5025 1500
-3 3 1 1 -1 7 2 0 -1 4.000 0 0 0 36
- 3324 788 3241 713 3249 548 3368 451 3533 293 3616 158
- 3736 106 3953 151 4096 196 4269 211 4456 173 4621 173
- 4726 256 4718 413 4741 518 4861 601 4958 751 4928 856
- 4816 953 4748 1073 4741 1156 4756 1291 4696 1396 4591 1411
- 4389 1351 4193 1313 4051 1321 3901 1388 3736 1441 3526 1426
- 3458 1291 3503 1193 3556 968 3473 886 3368 811 3324 788
- 3333.46 794.59 3302.68 773.16 3253.05 742.00 3223.21 670.18
- 3228.49 588.61 3268.06 510.25 3341.74 474.21 3407.07 416.47
- 3499.67 334.29 3556.12 264.35 3585.68 184.29 3641.03 136.30
- 3703.02 109.38 3791.88 100.27 3903.99 138.24 3986.15 159.63
- 4062.02 189.26 4135.36 203.80 4228.53 213.31 4313.48 208.46
- 4412.22 177.40 4493.85 169.19 4580.74 159.01 4653.65 184.35
- 4710.03 220.76 4744.76 297.39 4714.99 376.54 4720.06 437.93
- 4725.07 494.25 4762.62 550.24 4836.80 576.03 4890.63 631.57
- 4950.71 702.06 4962.46 780.92 4942.72 832.92 4908.03 887.32
- 4838.14 925.97 4795.39 978.16 4757.80 1041.30 4742.08 1092.14
- 4740.75 1136.81 4741.42 1187.29 4763.02 1257.10 4749.75 1321.18
- 4724.38 1376.72 4671.11 1412.91 4616.44 1412.87 4540.46 1407.28
- 4435.76 1362.45 4344.70 1340.15 4239.22 1316.13 4160.08 1310.77
- 4083.74 1313.05 4013.18 1330.18 3936.08 1374.58 3863.99 1402.16
- 3776.92 1436.08 3686.29 1446.98 3578.48 1460.97 3488.32 1400.89
- 3458.77 1333.65 3457.45 1260.57 3494.92 1216.51 3520.31 1142.60
- 3575.05 1034.24 3546.38 934.57 3493.49 903.25 3450.34 866.92
- 3393.19 826.48 3358.31 805.04 3333.46 794.59 3302.68 773.16
-4 0 -1 0 0 16 10 0.0000000 4 150 1290 3451 751 BaseRegObjectRef\001
--6
-6 5850 225 7650 1650
-3 3 1 1 -1 7 2 0 -1 4.000 0 0 0 36
- 5964 983 5881 908 5889 743 6008 646 6173 488 6256 353
- 6376 301 6593 346 6736 391 6909 406 7096 368 7261 368
- 7366 451 7358 608 7381 713 7501 796 7598 946 7568 1051
- 7456 1148 7388 1268 7381 1351 7396 1486 7336 1591 7231 1606
- 7029 1546 6833 1508 6691 1516 6541 1583 6376 1636 6166 1621
- 6098 1486 6143 1388 6196 1163 6113 1081 6008 1006 5964 983
- 5973.46 989.59 5942.68 968.16 5893.05 937.00 5863.21 865.18
- 5868.49 783.61 5908.06 705.25 5981.74 669.21 6047.07 611.47
- 6139.67 529.29 6196.12 459.35 6225.68 379.29 6281.03 331.30
- 6343.02 304.38 6431.88 295.27 6543.99 333.24 6626.15 354.63
- 6702.02 384.26 6775.36 398.80 6868.53 408.31 6953.48 403.46
- 7052.22 372.40 7133.85 364.19 7220.74 354.01 7293.65 379.35
- 7350.03 415.76 7384.76 492.39 7354.99 571.54 7360.06 632.93
- 7365.07 689.25 7402.62 745.24 7476.80 771.03 7530.63 826.57
- 7590.71 897.06 7602.46 975.92 7582.72 1027.92 7548.03 1082.32
- 7478.14 1120.97 7435.39 1173.16 7397.80 1236.30 7382.08 1287.14
- 7380.75 1331.81 7381.42 1382.29 7403.02 1452.10 7389.75 1516.18
- 7364.38 1571.72 7311.11 1607.91 7256.44 1607.87 7180.46 1602.28
- 7075.76 1557.45 6984.70 1535.15 6879.22 1511.13 6800.08 1505.77
- 6723.74 1508.05 6653.18 1525.18 6576.08 1569.58 6503.99 1597.16
- 6416.92 1631.08 6326.29 1641.98 6218.48 1655.97 6128.32 1595.89
- 6098.77 1528.65 6097.45 1455.57 6134.92 1411.51 6160.31 1337.60
- 6215.05 1229.24 6186.38 1129.57 6133.49 1098.25 6090.34 1061.92
- 6033.19 1021.48 5998.31 1000.04 5973.46 989.59 5942.68 968.16
-4 0 -1 0 0 16 10 0.0000000 4 150 735 6301 826 HolderRep\001
--6
-6 6450 1875 8250 3300
-3 3 1 1 -1 7 2 0 -1 4.000 0 0 0 36
- 6609 2603 6526 2528 6534 2363 6653 2266 6818 2108 6901 1973
- 7021 1921 7238 1966 7381 2011 7554 2026 7741 1988 7906 1988
- 8011 2071 8003 2228 8026 2333 8146 2416 8243 2566 8213 2671
- 8101 2768 8033 2888 8026 2971 8041 3106 7981 3211 7876 3226
- 7674 3166 7478 3128 7336 3136 7186 3203 7021 3256 6811 3241
- 6743 3106 6788 3008 6841 2783 6758 2701 6653 2626 6609 2603
- 6618.46 2609.59 6587.68 2588.16 6538.05 2557.00 6508.21 2485.18
- 6513.49 2403.61 6553.06 2325.25 6626.74 2289.21 6692.07 2231.47
- 6784.67 2149.29 6841.12 2079.35 6870.68 1999.29 6926.03 1951.30
- 6988.02 1924.38 7076.88 1915.27 7188.99 1953.24 7271.15 1974.63
- 7347.02 2004.26 7420.36 2018.80 7513.53 2028.31 7598.48 2023.46
- 7697.22 1992.40 7778.85 1984.19 7865.74 1974.01 7938.65 1999.35
- 7995.03 2035.76 8029.76 2112.39 7999.99 2191.54 8005.06 2252.93
- 8010.07 2309.25 8047.62 2365.24 8121.80 2391.03 8175.63 2446.57
- 8235.71 2517.06 8247.46 2595.92 8227.72 2647.92 8193.03 2702.32
- 8123.14 2740.97 8080.39 2793.16 8042.80 2856.30 8027.08 2907.14
- 8025.75 2951.81 8026.42 3002.29 8048.02 3072.10 8034.75 3136.18
- 8009.38 3191.72 7956.11 3227.91 7901.44 3227.87 7825.46 3222.28
- 7720.76 3177.45 7629.70 3155.15 7524.22 3131.13 7445.08 3125.77
- 7368.74 3128.05 7298.18 3145.18 7221.08 3189.58 7148.99 3217.16
- 7061.92 3251.08 6971.29 3261.98 6863.48 3275.97 6773.32 3215.89
- 6743.77 3148.65 6742.45 3075.57 6779.92 3031.51 6805.31 2957.60
- 6860.05 2849.24 6831.38 2749.57 6778.49 2718.25 6735.34 2681.92
- 6678.19 2641.48 6643.31 2620.04 6618.46 2609.59 6587.68 2588.16
-4 0 -1 0 0 16 10 0.0000000 4 150 435 6976 2476 Group\001
--6
-6 74 3374 1949 4799
-3 3 1 1 -1 7 2 0 -1 4.000 0 0 0 36
- 241 4095 158 4020 166 3855 285 3758 450 3600 533 3465
- 653 3413 870 3458 1013 3503 1186 3518 1373 3480 1538 3480
- 1643 3563 1635 3720 1658 3825 1778 3908 1875 4058 1845 4163
- 1733 4260 1665 4380 1658 4463 1673 4598 1613 4703 1508 4718
- 1306 4658 1110 4620 968 4628 818 4695 653 4748 443 4733
- 375 4598 420 4500 473 4275 390 4193 285 4118 241 4095
- 250.46 4101.59 219.68 4080.16 170.05 4049.00 140.21 3977.18
- 145.49 3895.61 185.06 3817.25 258.74 3781.21 324.07 3723.47
- 416.67 3641.29 473.12 3571.35 502.68 3491.29 558.03 3443.30
- 620.02 3416.38 708.88 3407.27 820.99 3445.24 903.15 3466.63
- 979.02 3496.26 1052.36 3510.80 1145.53 3520.31 1230.48 3515.46
- 1329.22 3484.40 1410.85 3476.19 1497.74 3466.01 1570.65 3491.35
- 1627.03 3527.76 1661.76 3604.39 1631.99 3683.54 1637.06 3744.93
- 1642.07 3801.25 1679.62 3857.24 1753.80 3883.03 1807.63 3938.57
- 1867.71 4009.06 1879.46 4087.92 1859.72 4139.92 1825.03 4194.32
- 1755.14 4232.97 1712.39 4285.16 1674.80 4348.30 1659.08 4399.14
- 1657.75 4443.81 1658.42 4494.29 1680.02 4564.10 1666.75 4628.18
- 1641.38 4683.72 1588.11 4719.91 1533.44 4719.87 1457.46 4714.28
- 1352.76 4669.45 1261.70 4647.15 1156.22 4623.13 1077.08 4617.77
- 1000.74 4620.05 930.18 4637.18 853.08 4681.58 780.99 4709.16
- 693.92 4743.08 603.29 4753.98 495.48 4767.97 405.32 4707.89
- 375.77 4640.65 374.45 4567.57 411.92 4523.51 437.31 4449.60
- 492.05 4341.24 463.38 4241.57 410.49 4210.25 367.34 4173.92
- 310.19 4133.48 275.31 4112.04 250.46 4101.59 219.68 4080.16
-4 0 -1 0 0 16 10 0.0000000 4 150 1050 450 3975 AbelianToolRep\001
--6
-6 600 225 2400 1650
-3 3 1 1 -1 7 2 0 -1 4.000 0 0 0 36
- 714 938 631 863 639 698 758 601 923 443 1006 308
- 1126 256 1343 301 1486 346 1659 361 1846 323 2011 323
- 2116 406 2108 563 2131 668 2251 751 2348 901 2318 1006
- 2206 1103 2138 1223 2131 1306 2146 1441 2086 1546 1981 1561
- 1779 1501 1583 1463 1441 1471 1291 1538 1126 1591 916 1576
- 848 1441 893 1343 946 1118 863 1036 758 961 714 938
- 723.46 944.59 692.68 923.16 643.05 892.00 613.21 820.18
- 618.49 738.61 658.06 660.25 731.74 624.21 797.07 566.47
- 889.67 484.29 946.12 414.35 975.68 334.29 1031.03 286.30
- 1093.02 259.38 1181.88 250.27 1293.99 288.24 1376.15 309.63
- 1452.02 339.26 1525.36 353.80 1618.53 363.31 1703.48 358.46
- 1802.22 327.40 1883.85 319.19 1970.74 309.01 2043.65 334.35
- 2100.03 370.76 2134.76 447.39 2104.99 526.54 2110.06 587.93
- 2115.07 644.25 2152.62 700.24 2226.80 726.03 2280.63 781.57
- 2340.71 852.06 2352.46 930.92 2332.72 982.92 2298.03 1037.32
- 2228.14 1075.97 2185.39 1128.16 2147.80 1191.30 2132.08 1242.14
- 2130.75 1286.81 2131.42 1337.29 2153.02 1407.10 2139.75 1471.18
- 2114.38 1526.72 2061.11 1562.91 2006.44 1562.87 1930.46 1557.28
- 1825.76 1512.45 1734.70 1490.15 1629.22 1466.13 1550.08 1460.77
- 1473.74 1463.05 1403.18 1480.18 1326.08 1524.58 1253.99 1552.16
- 1166.92 1586.08 1076.29 1596.98 968.48 1610.97 878.32 1550.89
- 848.77 1483.65 847.45 1410.57 884.92 1366.51 910.31 1292.60
- 965.05 1184.24 936.38 1084.57 883.49 1053.25 840.34 1016.92
- 783.19 976.48 748.31 955.04 723.46 944.59 692.68 923.16
-4 0 -1 0 0 16 10 0.0000000 4 150 1155 901 826 ActiveObjectRep\001
--6
-6 6374 5174 8174 6599
-3 3 1 1 -1 7 2 0 -1 4.000 0 0 0 36
- 6523 5880 6440 5805 6448 5640 6567 5543 6732 5385 6815 5250
- 6935 5198 7152 5243 7295 5288 7468 5303 7655 5265 7820 5265
- 7925 5348 7917 5505 7940 5610 8060 5693 8157 5843 8127 5948
- 8015 6045 7947 6165 7940 6248 7955 6383 7895 6488 7790 6503
- 7588 6443 7392 6405 7250 6413 7100 6480 6935 6533 6725 6518
- 6657 6383 6702 6285 6755 6060 6672 5978 6567 5903 6523 5880
- 6532.46 5886.59 6501.68 5865.16 6452.05 5834.00 6422.21 5762.18
- 6427.49 5680.61 6467.06 5602.25 6540.74 5566.21 6606.07 5508.47
- 6698.67 5426.29 6755.12 5356.35 6784.68 5276.29 6840.03 5228.30
- 6902.02 5201.38 6990.88 5192.27 7102.99 5230.24 7185.15 5251.63
- 7261.02 5281.26 7334.36 5295.80 7427.53 5305.31 7512.48 5300.46
- 7611.22 5269.40 7692.85 5261.19 7779.74 5251.01 7852.65 5276.35
- 7909.03 5312.76 7943.76 5389.39 7913.99 5468.54 7919.06 5529.93
- 7924.07 5586.25 7961.62 5642.24 8035.80 5668.03 8089.63 5723.57
- 8149.71 5794.06 8161.46 5872.92 8141.72 5924.92 8107.03 5979.32
- 8037.14 6017.97 7994.39 6070.16 7956.80 6133.30 7941.08 6184.14
- 7939.75 6228.81 7940.42 6279.29 7962.02 6349.10 7948.75 6413.18
- 7923.38 6468.72 7870.11 6504.91 7815.44 6504.87 7739.46 6499.28
- 7634.76 6454.45 7543.70 6432.15 7438.22 6408.13 7359.08 6402.77
- 7282.74 6405.05 7212.18 6422.18 7135.08 6466.58 7062.99 6494.16
- 6975.92 6528.08 6885.29 6538.98 6777.48 6552.97 6687.32 6492.89
- 6657.77 6425.65 6656.45 6352.57 6693.92 6308.51 6719.31 6234.60
- 6774.05 6126.24 6745.38 6026.57 6692.49 5995.25 6649.34 5958.92
- 6592.19 5918.48 6557.31 5897.04 6532.46 5886.59 6501.68 5865.16
-4 0 -1 0 0 16 10 0.0000000 4 120 720 6825 5700 DataStore\001
--6
-6 6449 3449 8249 4874
-3 3 1 1 -1 7 2 0 -1 4.000 0 0 0 36
- 6596 4183 6513 4108 6521 3943 6640 3846 6805 3688 6888 3553
- 7008 3501 7225 3546 7368 3591 7541 3606 7728 3568 7893 3568
- 7998 3651 7990 3808 8013 3913 8133 3996 8230 4146 8200 4251
- 8088 4348 8020 4468 8013 4551 8028 4686 7968 4791 7863 4806
- 7661 4746 7465 4708 7323 4716 7173 4783 7008 4836 6798 4821
- 6730 4686 6775 4588 6828 4363 6745 4281 6640 4206 6596 4183
- 6605.46 4189.59 6574.68 4168.16 6525.05 4137.00 6495.21 4065.18
- 6500.49 3983.61 6540.06 3905.25 6613.74 3869.21 6679.07 3811.47
- 6771.67 3729.29 6828.12 3659.35 6857.68 3579.29 6913.03 3531.30
- 6975.02 3504.38 7063.88 3495.27 7175.99 3533.24 7258.15 3554.63
- 7334.02 3584.26 7407.36 3598.80 7500.53 3608.31 7585.48 3603.46
- 7684.22 3572.40 7765.85 3564.19 7852.74 3554.01 7925.65 3579.35
- 7982.03 3615.76 8016.76 3692.39 7986.99 3771.54 7992.06 3832.93
- 7997.07 3889.25 8034.62 3945.24 8108.80 3971.03 8162.63 4026.57
- 8222.71 4097.06 8234.46 4175.92 8214.72 4227.92 8180.03 4282.32
- 8110.14 4320.97 8067.39 4373.16 8029.80 4436.30 8014.08 4487.14
- 8012.75 4531.81 8013.42 4582.29 8035.02 4652.10 8021.75 4716.18
- 7996.38 4771.72 7943.11 4807.91 7888.44 4807.87 7812.46 4802.28
- 7707.76 4757.45 7616.70 4735.15 7511.22 4711.13 7432.08 4705.77
- 7355.74 4708.05 7285.18 4725.18 7208.08 4769.58 7135.99 4797.16
- 7048.92 4831.08 6958.29 4841.98 6850.48 4855.97 6760.32 4795.89
- 6730.77 4728.65 6729.45 4655.57 6766.92 4611.51 6792.31 4537.60
- 6847.05 4429.24 6818.38 4329.57 6765.49 4298.25 6722.34 4261.92
- 6665.19 4221.48 6630.31 4200.04 6605.46 4189.59 6574.68 4168.16
-4 0 -1 0 0 16 10 0.0000000 4 120 255 6975 4050 ISS\001
--6
-6 4125 3750 5925 5175
-3 3 1 1 -1 7 2 0 -1 4.000 0 0 0 36
- 4250 4468 4167 4393 4175 4228 4294 4131 4459 3973 4542 3838
- 4662 3786 4879 3831 5022 3876 5195 3891 5382 3853 5547 3853
- 5652 3936 5644 4093 5667 4198 5787 4281 5884 4431 5854 4536
- 5742 4633 5674 4753 5667 4836 5682 4971 5622 5076 5517 5091
- 5315 5031 5119 4993 4977 5001 4827 5068 4662 5121 4452 5106
- 4384 4971 4429 4873 4482 4648 4399 4566 4294 4491 4250 4468
- 4259.46 4474.59 4228.68 4453.16 4179.05 4422.00 4149.21 4350.18
- 4154.49 4268.61 4194.06 4190.25 4267.74 4154.21 4333.07 4096.47
- 4425.67 4014.29 4482.12 3944.35 4511.68 3864.29 4567.03 3816.30
- 4629.02 3789.38 4717.88 3780.27 4829.99 3818.24 4912.15 3839.63
- 4988.02 3869.26 5061.36 3883.80 5154.53 3893.31 5239.48 3888.46
- 5338.22 3857.40 5419.85 3849.19 5506.74 3839.01 5579.65 3864.35
- 5636.03 3900.76 5670.76 3977.39 5640.99 4056.54 5646.06 4117.93
- 5651.07 4174.25 5688.62 4230.24 5762.80 4256.03 5816.63 4311.57
- 5876.71 4382.06 5888.46 4460.92 5868.72 4512.92 5834.03 4567.32
- 5764.14 4605.97 5721.39 4658.16 5683.80 4721.30 5668.08 4772.14
- 5666.75 4816.81 5667.42 4867.29 5689.02 4937.10 5675.75 5001.18
- 5650.38 5056.72 5597.11 5092.91 5542.44 5092.87 5466.46 5087.28
- 5361.76 5042.45 5270.70 5020.15 5165.22 4996.13 5086.08 4990.77
- 5009.74 4993.05 4939.18 5010.18 4862.08 5054.58 4789.99 5082.16
- 4702.92 5116.08 4612.29 5126.98 4504.48 5140.97 4414.32 5080.89
- 4384.77 5013.65 4383.45 4940.57 4420.92 4896.51 4446.31 4822.60
- 4501.05 4714.24 4472.38 4614.57 4419.49 4583.25 4376.34 4546.92
- 4319.19 4506.48 4284.31 4485.04 4259.46 4474.59 4228.68 4453.16
-4 0 -1 0 0 16 10 0.0000000 4 120 480 4576 4351 FPGIC\001
--6
-6 2099 6599 3899 8024
-3 3 1 1 -1 7 2 0 -1 4.000 0 0 0 36
- 2258 7312 2175 7237 2183 7072 2302 6975 2467 6817 2550 6682
- 2670 6630 2887 6675 3030 6720 3203 6735 3390 6697 3555 6697
- 3660 6780 3652 6937 3675 7042 3795 7125 3892 7275 3862 7380
- 3750 7477 3682 7597 3675 7680 3690 7815 3630 7920 3525 7935
- 3323 7875 3127 7837 2985 7845 2835 7912 2670 7965 2460 7950
- 2392 7815 2437 7717 2490 7492 2407 7410 2302 7335 2258 7312
- 2267.46 7318.59 2236.68 7297.16 2187.05 7266.00 2157.21 7194.18
- 2162.49 7112.61 2202.06 7034.25 2275.74 6998.21 2341.07 6940.47
- 2433.67 6858.29 2490.12 6788.35 2519.68 6708.29 2575.03 6660.30
- 2637.02 6633.38 2725.88 6624.27 2837.99 6662.24 2920.15 6683.63
- 2996.02 6713.26 3069.36 6727.80 3162.53 6737.31 3247.48 6732.46
- 3346.22 6701.40 3427.85 6693.19 3514.74 6683.01 3587.65 6708.35
- 3644.03 6744.76 3678.76 6821.39 3648.99 6900.54 3654.06 6961.93
- 3659.07 7018.25 3696.62 7074.24 3770.80 7100.03 3824.63 7155.57
- 3884.71 7226.06 3896.46 7304.92 3876.72 7356.92 3842.03 7411.32
- 3772.14 7449.97 3729.39 7502.16 3691.80 7565.30 3676.08 7616.14
- 3674.75 7660.81 3675.42 7711.29 3697.02 7781.10 3683.75 7845.18
- 3658.38 7900.72 3605.11 7936.91 3550.44 7936.87 3474.46 7931.28
- 3369.76 7886.45 3278.70 7864.15 3173.22 7840.13 3094.08 7834.77
- 3017.74 7837.05 2947.18 7854.18 2870.08 7898.58 2797.99 7926.16
- 2710.92 7960.08 2620.29 7970.98 2512.48 7984.97 2422.32 7924.89
- 2392.77 7857.65 2391.45 7784.57 2428.92 7740.51 2454.31 7666.60
- 2509.05 7558.24 2480.38 7458.57 2427.49 7427.25 2384.34 7390.92
- 2327.19 7350.48 2292.31 7329.04 2267.46 7318.59 2236.68 7297.16
-4 0 -1 0 0 16 10 0.0000000 4 120 570 2550 7200 Account\001
--6
-6 2025 4050 3900 5475
-3 3 1 1 -1 7 2 0 -1 4.000 0 0 0 36
- 2192 4771 2109 4696 2117 4531 2236 4434 2401 4276 2484 4141
- 2604 4089 2821 4134 2964 4179 3137 4194 3324 4156 3489 4156
- 3594 4239 3586 4396 3609 4501 3729 4584 3826 4734 3796 4839
- 3684 4936 3616 5056 3609 5139 3624 5274 3564 5379 3459 5394
- 3257 5334 3061 5296 2919 5304 2769 5371 2604 5424 2394 5409
- 2326 5274 2371 5176 2424 4951 2341 4869 2236 4794 2192 4771
- 2201.46 4777.59 2170.68 4756.16 2121.05 4725.00 2091.21 4653.18
- 2096.49 4571.61 2136.06 4493.25 2209.74 4457.21 2275.07 4399.47
- 2367.67 4317.29 2424.12 4247.35 2453.68 4167.29 2509.03 4119.30
- 2571.02 4092.38 2659.88 4083.27 2771.99 4121.24 2854.15 4142.63
- 2930.02 4172.26 3003.36 4186.80 3096.53 4196.31 3181.48 4191.46
- 3280.22 4160.40 3361.85 4152.19 3448.74 4142.01 3521.65 4167.35
- 3578.03 4203.76 3612.76 4280.39 3582.99 4359.54 3588.06 4420.93
- 3593.07 4477.25 3630.62 4533.24 3704.80 4559.03 3758.63 4614.57
- 3818.71 4685.06 3830.46 4763.92 3810.72 4815.92 3776.03 4870.32
- 3706.14 4908.97 3663.39 4961.16 3625.80 5024.30 3610.08 5075.14
- 3608.75 5119.81 3609.42 5170.29 3631.02 5240.10 3617.75 5304.18
- 3592.38 5359.72 3539.11 5395.91 3484.44 5395.87 3408.46 5390.28
- 3303.76 5345.45 3212.70 5323.15 3107.22 5299.13 3028.08 5293.77
- 2951.74 5296.05 2881.18 5313.18 2804.08 5357.58 2731.99 5385.16
- 2644.92 5419.08 2554.29 5429.98 2446.48 5443.97 2356.32 5383.89
- 2326.77 5316.65 2325.45 5243.57 2362.92 5199.51 2388.31 5125.60
- 2443.05 5017.24 2414.38 4917.57 2361.49 4886.25 2318.34 4849.92
- 2261.19 4809.48 2226.31 4788.04 2201.46 4777.59 2170.68 4756.16
-4 0 -1 0 0 16 10 0.0000000 4 150 1275 2326 4726 WordProbToolRep\001
--6
-6 2250 2250 4050 3675
-3 3 1 1 -1 7 2 0 -1 4.000 0 0 0 36
- 2394 2971 2311 2896 2319 2731 2438 2634 2603 2476 2686 2341
- 2806 2289 3023 2334 3166 2379 3339 2394 3526 2356 3691 2356
- 3796 2439 3788 2596 3811 2701 3931 2784 4028 2934 3998 3039
- 3886 3136 3818 3256 3811 3339 3826 3474 3766 3579 3661 3594
- 3459 3534 3263 3496 3121 3504 2971 3571 2806 3624 2596 3609
- 2528 3474 2573 3376 2626 3151 2543 3069 2438 2994 2394 2971
- 2403.46 2977.59 2372.68 2956.16 2323.05 2925.00 2293.21 2853.18
- 2298.49 2771.61 2338.06 2693.25 2411.74 2657.21 2477.07 2599.47
- 2569.67 2517.29 2626.12 2447.35 2655.68 2367.29 2711.03 2319.30
- 2773.02 2292.38 2861.88 2283.27 2973.99 2321.24 3056.15 2342.63
- 3132.02 2372.26 3205.36 2386.80 3298.53 2396.31 3383.48 2391.46
- 3482.22 2360.40 3563.85 2352.19 3650.74 2342.01 3723.65 2367.35
- 3780.03 2403.76 3814.76 2480.39 3784.99 2559.54 3790.06 2620.93
- 3795.07 2677.25 3832.62 2733.24 3906.80 2759.03 3960.63 2814.57
- 4020.71 2885.06 4032.46 2963.92 4012.72 3015.92 3978.03 3070.32
- 3908.14 3108.97 3865.39 3161.16 3827.80 3224.30 3812.08 3275.14
- 3810.75 3319.81 3811.42 3370.29 3833.02 3440.10 3819.75 3504.18
- 3794.38 3559.72 3741.11 3595.91 3686.44 3595.87 3610.46 3590.28
- 3505.76 3545.45 3414.70 3523.15 3309.22 3499.13 3230.08 3493.77
- 3153.74 3496.05 3083.18 3513.18 3006.08 3557.58 2933.99 3585.16
- 2846.92 3619.08 2756.29 3629.98 2648.48 3643.97 2558.32 3583.89
- 2528.77 3516.65 2527.45 3443.57 2564.92 3399.51 2590.31 3325.60
- 2645.05 3217.24 2616.38 3117.57 2563.49 3086.25 2520.34 3049.92
- 2463.19 3009.48 2428.31 2988.04 2403.46 2977.59 2372.68 2956.16
-4 0 -1 0 0 16 10 0.0000000 4 150 900 2701 2851 Computation\001
-4 0 -1 0 0 16 10 0.0000000 4 150 600 2701 3076 Manager\001
--6
-6 4725 6000 6525 7425
-3 3 1 1 -1 7 2 0 -1 4.000 0 0 0 36
- 4824 6713 4741 6638 4749 6473 4868 6376 5033 6218 5116 6083
- 5236 6031 5453 6076 5596 6121 5769 6136 5956 6098 6121 6098
- 6226 6181 6218 6338 6241 6443 6361 6526 6458 6676 6428 6781
- 6316 6878 6248 6998 6241 7081 6256 7216 6196 7321 6091 7336
- 5889 7276 5693 7238 5551 7246 5401 7313 5236 7366 5026 7351
- 4958 7216 5003 7118 5056 6893 4973 6811 4868 6736 4824 6713
- 4833.46 6719.59 4802.68 6698.16 4753.05 6667.00 4723.21 6595.18
- 4728.49 6513.61 4768.06 6435.25 4841.74 6399.21 4907.07 6341.47
- 4999.67 6259.29 5056.12 6189.35 5085.68 6109.29 5141.03 6061.30
- 5203.02 6034.38 5291.88 6025.27 5403.99 6063.24 5486.15 6084.63
- 5562.02 6114.26 5635.36 6128.80 5728.53 6138.31 5813.48 6133.46
- 5912.22 6102.40 5993.85 6094.19 6080.74 6084.01 6153.65 6109.35
- 6210.03 6145.76 6244.76 6222.39 6214.99 6301.54 6220.06 6362.93
- 6225.07 6419.25 6262.62 6475.24 6336.80 6501.03 6390.63 6556.57
- 6450.71 6627.06 6462.46 6705.92 6442.72 6757.92 6408.03 6812.32
- 6338.14 6850.97 6295.39 6903.16 6257.80 6966.30 6242.08 7017.14
- 6240.75 7061.81 6241.42 7112.29 6263.02 7182.10 6249.75 7246.18
- 6224.38 7301.72 6171.11 7337.91 6116.44 7337.87 6040.46 7332.28
- 5935.76 7287.45 5844.70 7265.15 5739.22 7241.13 5660.08 7235.77
- 5583.74 7238.05 5513.18 7255.18 5436.08 7299.58 5363.99 7327.16
- 5276.92 7361.08 5186.29 7371.98 5078.48 7385.97 4988.32 7325.89
- 4958.77 7258.65 4957.45 7185.57 4994.92 7141.51 5020.31 7067.60
- 5075.05 6959.24 5046.38 6859.57 4993.49 6828.25 4950.34 6791.92
- 4893.19 6751.48 4858.31 6730.04 4833.46 6719.59 4802.68 6698.16
-4 0 -1 0 0 16 10 0.0000000 4 120 465 5176 6601 Broker\001
--6
-6 149 6599 1949 8024
-3 3 1 1 -1 7 2 0 -1 4.000 0 0 0 36
- 256 7312 173 7237 181 7072 300 6975 465 6817 548 6682
- 668 6630 885 6675 1028 6720 1201 6735 1388 6697 1553 6697
- 1658 6780 1650 6937 1673 7042 1793 7125 1890 7275 1860 7380
- 1748 7477 1680 7597 1673 7680 1688 7815 1628 7920 1523 7935
- 1321 7875 1125 7837 983 7845 833 7912 668 7965 458 7950
- 390 7815 435 7717 488 7492 405 7410 300 7335 256 7312
- 265.46 7318.59 234.68 7297.16 185.05 7266.00 155.21 7194.18
- 160.49 7112.61 200.06 7034.25 273.74 6998.21 339.07 6940.47
- 431.67 6858.29 488.12 6788.35 517.68 6708.29 573.03 6660.30
- 635.02 6633.38 723.88 6624.27 835.99 6662.24 918.15 6683.63
- 994.02 6713.26 1067.36 6727.80 1160.53 6737.31 1245.48 6732.46
- 1344.22 6701.40 1425.85 6693.19 1512.74 6683.01 1585.65 6708.35
- 1642.03 6744.76 1676.76 6821.39 1646.99 6900.54 1652.06 6961.93
- 1657.07 7018.25 1694.62 7074.24 1768.80 7100.03 1822.63 7155.57
- 1882.71 7226.06 1894.46 7304.92 1874.72 7356.92 1840.03 7411.32
- 1770.14 7449.97 1727.39 7502.16 1689.80 7565.30 1674.08 7616.14
- 1672.75 7660.81 1673.42 7711.29 1695.02 7781.10 1681.75 7845.18
- 1656.38 7900.72 1603.11 7936.91 1548.44 7936.87 1472.46 7931.28
- 1367.76 7886.45 1276.70 7864.15 1171.22 7840.13 1092.08 7834.77
- 1015.74 7837.05 945.18 7854.18 868.08 7898.58 795.99 7926.16
- 708.92 7960.08 618.29 7970.98 510.48 7984.97 420.32 7924.89
- 390.77 7857.65 389.45 7784.57 426.92 7740.51 452.31 7666.60
- 507.05 7558.24 478.38 7458.57 425.49 7427.25 382.34 7390.92
- 325.19 7350.48 290.31 7329.04 265.46 7318.59 234.68 7297.16
-4 0 -1 0 0 16 10 0.0000000 4 120 945 525 7125 WordChecker\001
-4 0 -1 0 0 16 10 0.0000000 4 150 420 525 7350 Agent\001
--6
-6 4049 1724 5849 3149
-3 3 1 1 -1 7 2 0 -1 4.000 0 0 0 36
- 4201 2476 4118 2401 4126 2236 4245 2139 4410 1981 4493 1846
- 4613 1794 4830 1839 4973 1884 5146 1899 5333 1861 5498 1861
- 5603 1944 5595 2101 5618 2206 5738 2289 5835 2439 5805 2544
- 5693 2641 5625 2761 5618 2844 5633 2979 5573 3084 5468 3099
- 5266 3039 5070 3001 4928 3009 4778 3076 4613 3129 4403 3114
- 4335 2979 4380 2881 4433 2656 4350 2574 4245 2499 4201 2476
- 4210.46 2482.59 4179.68 2461.16 4130.05 2430.00 4100.21 2358.18
- 4105.49 2276.61 4145.06 2198.25 4218.74 2162.21 4284.07 2104.47
- 4376.67 2022.29 4433.12 1952.35 4462.68 1872.29 4518.03 1824.30
- 4580.02 1797.38 4668.88 1788.27 4780.99 1826.24 4863.15 1847.63
- 4939.02 1877.26 5012.36 1891.80 5105.53 1901.31 5190.48 1896.46
- 5289.22 1865.40 5370.85 1857.19 5457.74 1847.01 5530.65 1872.35
- 5587.03 1908.76 5621.76 1985.39 5591.99 2064.54 5597.06 2125.93
- 5602.07 2182.25 5639.62 2238.24 5713.80 2264.03 5767.63 2319.57
- 5827.71 2390.06 5839.46 2468.92 5819.72 2520.92 5785.03 2575.32
- 5715.14 2613.97 5672.39 2666.16 5634.80 2729.30 5619.08 2780.14
- 5617.75 2824.81 5618.42 2875.29 5640.02 2945.10 5626.75 3009.18
- 5601.38 3064.72 5548.11 3100.91 5493.44 3100.87 5417.46 3095.28
- 5312.76 3050.45 5221.70 3028.15 5116.22 3004.13 5037.08 2998.77
- 4960.74 3001.05 4890.18 3018.18 4813.08 3062.58 4740.99 3090.16
- 4653.92 3124.08 4563.29 3134.98 4455.48 3148.97 4365.32 3088.89
- 4335.77 3021.65 4334.45 2948.57 4371.92 2904.51 4397.31 2830.60
- 4452.05 2722.24 4423.38 2622.57 4370.49 2591.25 4327.34 2554.92
- 4270.19 2514.48 4235.31 2493.04 4210.46 2482.59 4179.68 2461.16
-4 0 -1 0 0 16 10 0.0000000 4 150 1260 4350 2400 Class Membership\001
-4 0 -1 0 0 16 10 0.0000000 4 120 765 4575 2625 Determiner\001
--6
-1 3 0 1 -1 0 0 0 20 0.0000000 1 0.000 5101 5100 75 75 5101 5100 5176 5175
-1 3 0 1 -1 0 0 0 20 0.0000000 1 0.000 5775 4800 75 75 5775 4800 5850 4875
-1 3 0 1 -1 0 0 0 20 0.0000000 1 0.000 5925 4275 75 75 5925 4275 6000 4350
-1 3 0 1 -1 0 0 0 20 0.0000000 1 0.000 6750 1650 75 75 6750 1650 6825 1725
-1 3 0 1 -1 0 0 0 20 0.0000000 1 0.000 5100 3750 75 75 5100 3750 5175 3825
-1 3 0 1 -1 0 0 0 20 0.0000000 1 0.000 4275 3975 75 75 4275 3975 4350 4050
-1 3 0 1 -1 0 0 0 20 0.0000000 1 0.000 1575 4875 75 75 1575 4875 1650 4950
-1 3 0 1 -1 0 0 0 20 0.0000000 1 0.000 750 4875 75 75 750 4875 825 4950
-1 3 0 1 -1 0 0 0 20 0.0000000 1 0.000 2325 5550 75 75 2325 5550 2400 5625
-1 3 0 1 -1 0 0 0 20 0.0000000 1 0.000 3375 5550 75 75 3375 5550 3450 5625
-1 3 0 1 -1 0 0 0 20 0.0000000 1 0.000 6225 1800 75 75 6225 1800 6300 1875
-2 1 0 1 -1 7 0 0 20 0.000 0 0 -1 1 0 2
- 1 1 1.00 60.00 120.00
- 2475 900 3150 750
-2 1 0 1 -1 7 0 0 20 0.000 0 0 -1 1 0 2
- 1 1 1.00 60.00 120.00
- 5775 750 5100 750
-2 1 0 1 -1 7 0 0 20 0.000 0 0 -1 1 0 2
- 1 1 1.00 60.00 120.00
- 750 3300 975 1725
-2 1 0 1 -1 7 0 0 20 0.000 0 0 -1 0 0 2
- 6750 1650 6900 1875
-2 1 0 1 -1 7 0 0 20 0.000 0 0 -1 0 0 2
- 5925 4275 6450 4125
-2 1 0 1 -1 7 0 0 20 0.000 0 0 -1 0 0 2
- 5775 4800 6525 5400
-2 1 0 1 -1 7 0 0 20 0.000 0 0 -1 0 0 2
- 750 4800 900 6525
-2 1 0 1 -1 7 0 0 20 0.000 0 0 -1 0 0 2
- 1575 4875 2400 6675
-2 1 0 1 -1 7 0 0 20 0.000 0 0 -1 1 0 2
- 1 1 1.00 60.00 120.00
- 2400 2400 2100 1650
-2 1 0 1 -1 7 0 0 20 0.000 0 0 -1 1 0 2
- 1 1 1.00 60.00 120.00
- 2250 4200 1650 1650
-2 1 0 1 -1 7 0 0 20 0.000 0 0 -1 0 0 2
- 4275 3975 3900 3675
-2 1 0 1 -1 7 0 0 20 0.000 0 0 -1 1 0 2
- 1 1 1.00 60.00 120.00
- 4200 2025 2250 1350
-2 1 0 1 -1 7 0 0 20 0.000 0 0 -1 0 0 2
- 4800 3150 5100 3750
-2 1 0 1 -1 7 0 0 20 0.000 0 0 -1 0 0 2
- 5100 5100 5250 5850
-2 1 0 1 -1 7 0 0 20 0.000 0 0 -1 0 0 2
- 2325 5550 1650 6600
-2 1 0 1 -1 7 0 0 20 0.000 0 0 -1 0 0 2
- 3375 5550 3450 6600
-2 1 0 1 -1 7 0 0 20 0.000 0 0 -1 0 0 2
- 6225 1800 5625 3750
Copied: branches/daly/version10/doc/manual/figs/sm2small.fig (from rev 239, branches/daly/version10/doc/manual/figs/sm2.fig)
===================================================================
--- branches/daly/version10/doc/manual/figs/sm2small.fig (rev 0)
+++ branches/daly/version10/doc/manual/figs/sm2small.fig 2007-05-24 16:03:07 UTC (rev 240)
@@ -0,0 +1,451 @@
+#FIG 3.1
+Landscape
+Center
+Inches
+1200 2
+6 3225 75 5025 1500
+3 3 1 1 -1 7 2 0 -1 4.000 0 0 0 36
+ 3324 788 3241 713 3249 548 3368 451 3533 293 3616 158
+ 3736 106 3953 151 4096 196 4269 211 4456 173 4621 173
+ 4726 256 4718 413 4741 518 4861 601 4958 751 4928 856
+ 4816 953 4748 1073 4741 1156 4756 1291 4696 1396 4591 1411
+ 4389 1351 4193 1313 4051 1321 3901 1388 3736 1441 3526 1426
+ 3458 1291 3503 1193 3556 968 3473 886 3368 811 3324 788
+ 3333.46 794.59 3302.68 773.16 3253.05 742.00 3223.21 670.18
+ 3228.49 588.61 3268.06 510.25 3341.74 474.21 3407.07 416.47
+ 3499.67 334.29 3556.12 264.35 3585.68 184.29 3641.03 136.30
+ 3703.02 109.38 3791.88 100.27 3903.99 138.24 3986.15 159.63
+ 4062.02 189.26 4135.36 203.80 4228.53 213.31 4313.48 208.46
+ 4412.22 177.40 4493.85 169.19 4580.74 159.01 4653.65 184.35
+ 4710.03 220.76 4744.76 297.39 4714.99 376.54 4720.06 437.93
+ 4725.07 494.25 4762.62 550.24 4836.80 576.03 4890.63 631.57
+ 4950.71 702.06 4962.46 780.92 4942.72 832.92 4908.03 887.32
+ 4838.14 925.97 4795.39 978.16 4757.80 1041.30 4742.08 1092.14
+ 4740.75 1136.81 4741.42 1187.29 4763.02 1257.10 4749.75 1321.18
+ 4724.38 1376.72 4671.11 1412.91 4616.44 1412.87 4540.46 1407.28
+ 4435.76 1362.45 4344.70 1340.15 4239.22 1316.13 4160.08 1310.77
+ 4083.74 1313.05 4013.18 1330.18 3936.08 1374.58 3863.99 1402.16
+ 3776.92 1436.08 3686.29 1446.98 3578.48 1460.97 3488.32 1400.89
+ 3458.77 1333.65 3457.45 1260.57 3494.92 1216.51 3520.31 1142.60
+ 3575.05 1034.24 3546.38 934.57 3493.49 903.25 3450.34 866.92
+ 3393.19 826.48 3358.31 805.04 3333.46 794.59 3302.68 773.16
+4 0 -1 0 0 16 10 0.0000000 4 150 1290 3451 751 BaseRegObjectRef\001
+-6
+6 5850 225 7650 1650
+3 3 1 1 -1 7 2 0 -1 4.000 0 0 0 36
+ 5964 983 5881 908 5889 743 6008 646 6173 488 6256 353
+ 6376 301 6593 346 6736 391 6909 406 7096 368 7261 368
+ 7366 451 7358 608 7381 713 7501 796 7598 946 7568 1051
+ 7456 1148 7388 1268 7381 1351 7396 1486 7336 1591 7231 1606
+ 7029 1546 6833 1508 6691 1516 6541 1583 6376 1636 6166 1621
+ 6098 1486 6143 1388 6196 1163 6113 1081 6008 1006 5964 983
+ 5973.46 989.59 5942.68 968.16 5893.05 937.00 5863.21 865.18
+ 5868.49 783.61 5908.06 705.25 5981.74 669.21 6047.07 611.47
+ 6139.67 529.29 6196.12 459.35 6225.68 379.29 6281.03 331.30
+ 6343.02 304.38 6431.88 295.27 6543.99 333.24 6626.15 354.63
+ 6702.02 384.26 6775.36 398.80 6868.53 408.31 6953.48 403.46
+ 7052.22 372.40 7133.85 364.19 7220.74 354.01 7293.65 379.35
+ 7350.03 415.76 7384.76 492.39 7354.99 571.54 7360.06 632.93
+ 7365.07 689.25 7402.62 745.24 7476.80 771.03 7530.63 826.57
+ 7590.71 897.06 7602.46 975.92 7582.72 1027.92 7548.03 1082.32
+ 7478.14 1120.97 7435.39 1173.16 7397.80 1236.30 7382.08 1287.14
+ 7380.75 1331.81 7381.42 1382.29 7403.02 1452.10 7389.75 1516.18
+ 7364.38 1571.72 7311.11 1607.91 7256.44 1607.87 7180.46 1602.28
+ 7075.76 1557.45 6984.70 1535.15 6879.22 1511.13 6800.08 1505.77
+ 6723.74 1508.05 6653.18 1525.18 6576.08 1569.58 6503.99 1597.16
+ 6416.92 1631.08 6326.29 1641.98 6218.48 1655.97 6128.32 1595.89
+ 6098.77 1528.65 6097.45 1455.57 6134.92 1411.51 6160.31 1337.60
+ 6215.05 1229.24 6186.38 1129.57 6133.49 1098.25 6090.34 1061.92
+ 6033.19 1021.48 5998.31 1000.04 5973.46 989.59 5942.68 968.16
+4 0 -1 0 0 16 10 0.0000000 4 150 735 6301 826 HolderRep\001
+-6
+6 6450 1875 8250 3300
+3 3 1 1 -1 7 2 0 -1 4.000 0 0 0 36
+ 6609 2603 6526 2528 6534 2363 6653 2266 6818 2108 6901 1973
+ 7021 1921 7238 1966 7381 2011 7554 2026 7741 1988 7906 1988
+ 8011 2071 8003 2228 8026 2333 8146 2416 8243 2566 8213 2671
+ 8101 2768 8033 2888 8026 2971 8041 3106 7981 3211 7876 3226
+ 7674 3166 7478 3128 7336 3136 7186 3203 7021 3256 6811 3241
+ 6743 3106 6788 3008 6841 2783 6758 2701 6653 2626 6609 2603
+ 6618.46 2609.59 6587.68 2588.16 6538.05 2557.00 6508.21 2485.18
+ 6513.49 2403.61 6553.06 2325.25 6626.74 2289.21 6692.07 2231.47
+ 6784.67 2149.29 6841.12 2079.35 6870.68 1999.29 6926.03 1951.30
+ 6988.02 1924.38 7076.88 1915.27 7188.99 1953.24 7271.15 1974.63
+ 7347.02 2004.26 7420.36 2018.80 7513.53 2028.31 7598.48 2023.46
+ 7697.22 1992.40 7778.85 1984.19 7865.74 1974.01 7938.65 1999.35
+ 7995.03 2035.76 8029.76 2112.39 7999.99 2191.54 8005.06 2252.93
+ 8010.07 2309.25 8047.62 2365.24 8121.80 2391.03 8175.63 2446.57
+ 8235.71 2517.06 8247.46 2595.92 8227.72 2647.92 8193.03 2702.32
+ 8123.14 2740.97 8080.39 2793.16 8042.80 2856.30 8027.08 2907.14
+ 8025.75 2951.81 8026.42 3002.29 8048.02 3072.10 8034.75 3136.18
+ 8009.38 3191.72 7956.11 3227.91 7901.44 3227.87 7825.46 3222.28
+ 7720.76 3177.45 7629.70 3155.15 7524.22 3131.13 7445.08 3125.77
+ 7368.74 3128.05 7298.18 3145.18 7221.08 3189.58 7148.99 3217.16
+ 7061.92 3251.08 6971.29 3261.98 6863.48 3275.97 6773.32 3215.89
+ 6743.77 3148.65 6742.45 3075.57 6779.92 3031.51 6805.31 2957.60
+ 6860.05 2849.24 6831.38 2749.57 6778.49 2718.25 6735.34 2681.92
+ 6678.19 2641.48 6643.31 2620.04 6618.46 2609.59 6587.68 2588.16
+4 0 -1 0 0 16 10 0.0000000 4 150 435 6976 2476 Group\001
+-6
+6 74 3374 1949 4799
+3 3 1 1 -1 7 2 0 -1 4.000 0 0 0 36
+ 241 4095 158 4020 166 3855 285 3758 450 3600 533 3465
+ 653 3413 870 3458 1013 3503 1186 3518 1373 3480 1538 3480
+ 1643 3563 1635 3720 1658 3825 1778 3908 1875 4058 1845 4163
+ 1733 4260 1665 4380 1658 4463 1673 4598 1613 4703 1508 4718
+ 1306 4658 1110 4620 968 4628 818 4695 653 4748 443 4733
+ 375 4598 420 4500 473 4275 390 4193 285 4118 241 4095
+ 250.46 4101.59 219.68 4080.16 170.05 4049.00 140.21 3977.18
+ 145.49 3895.61 185.06 3817.25 258.74 3781.21 324.07 3723.47
+ 416.67 3641.29 473.12 3571.35 502.68 3491.29 558.03 3443.30
+ 620.02 3416.38 708.88 3407.27 820.99 3445.24 903.15 3466.63
+ 979.02 3496.26 1052.36 3510.80 1145.53 3520.31 1230.48 3515.46
+ 1329.22 3484.40 1410.85 3476.19 1497.74 3466.01 1570.65 3491.35
+ 1627.03 3527.76 1661.76 3604.39 1631.99 3683.54 1637.06 3744.93
+ 1642.07 3801.25 1679.62 3857.24 1753.80 3883.03 1807.63 3938.57
+ 1867.71 4009.06 1879.46 4087.92 1859.72 4139.92 1825.03 4194.32
+ 1755.14 4232.97 1712.39 4285.16 1674.80 4348.30 1659.08 4399.14
+ 1657.75 4443.81 1658.42 4494.29 1680.02 4564.10 1666.75 4628.18
+ 1641.38 4683.72 1588.11 4719.91 1533.44 4719.87 1457.46 4714.28
+ 1352.76 4669.45 1261.70 4647.15 1156.22 4623.13 1077.08 4617.77
+ 1000.74 4620.05 930.18 4637.18 853.08 4681.58 780.99 4709.16
+ 693.92 4743.08 603.29 4753.98 495.48 4767.97 405.32 4707.89
+ 375.77 4640.65 374.45 4567.57 411.92 4523.51 437.31 4449.60
+ 492.05 4341.24 463.38 4241.57 410.49 4210.25 367.34 4173.92
+ 310.19 4133.48 275.31 4112.04 250.46 4101.59 219.68 4080.16
+4 0 -1 0 0 16 10 0.0000000 4 150 1050 450 3975 AbelianToolRep\001
+-6
+6 600 225 2400 1650
+3 3 1 1 -1 7 2 0 -1 4.000 0 0 0 36
+ 714 938 631 863 639 698 758 601 923 443 1006 308
+ 1126 256 1343 301 1486 346 1659 361 1846 323 2011 323
+ 2116 406 2108 563 2131 668 2251 751 2348 901 2318 1006
+ 2206 1103 2138 1223 2131 1306 2146 1441 2086 1546 1981 1561
+ 1779 1501 1583 1463 1441 1471 1291 1538 1126 1591 916 1576
+ 848 1441 893 1343 946 1118 863 1036 758 961 714 938
+ 723.46 944.59 692.68 923.16 643.05 892.00 613.21 820.18
+ 618.49 738.61 658.06 660.25 731.74 624.21 797.07 566.47
+ 889.67 484.29 946.12 414.35 975.68 334.29 1031.03 286.30
+ 1093.02 259.38 1181.88 250.27 1293.99 288.24 1376.15 309.63
+ 1452.02 339.26 1525.36 353.80 1618.53 363.31 1703.48 358.46
+ 1802.22 327.40 1883.85 319.19 1970.74 309.01 2043.65 334.35
+ 2100.03 370.76 2134.76 447.39 2104.99 526.54 2110.06 587.93
+ 2115.07 644.25 2152.62 700.24 2226.80 726.03 2280.63 781.57
+ 2340.71 852.06 2352.46 930.92 2332.72 982.92 2298.03 1037.32
+ 2228.14 1075.97 2185.39 1128.16 2147.80 1191.30 2132.08 1242.14
+ 2130.75 1286.81 2131.42 1337.29 2153.02 1407.10 2139.75 1471.18
+ 2114.38 1526.72 2061.11 1562.91 2006.44 1562.87 1930.46 1557.28
+ 1825.76 1512.45 1734.70 1490.15 1629.22 1466.13 1550.08 1460.77
+ 1473.74 1463.05 1403.18 1480.18 1326.08 1524.58 1253.99 1552.16
+ 1166.92 1586.08 1076.29 1596.98 968.48 1610.97 878.32 1550.89
+ 848.77 1483.65 847.45 1410.57 884.92 1366.51 910.31 1292.60
+ 965.05 1184.24 936.38 1084.57 883.49 1053.25 840.34 1016.92
+ 783.19 976.48 748.31 955.04 723.46 944.59 692.68 923.16
+4 0 -1 0 0 16 10 0.0000000 4 150 1155 901 826 ActiveObjectRep\001
+-6
+6 6374 5174 8174 6599
+3 3 1 1 -1 7 2 0 -1 4.000 0 0 0 36
+ 6523 5880 6440 5805 6448 5640 6567 5543 6732 5385 6815 5250
+ 6935 5198 7152 5243 7295 5288 7468 5303 7655 5265 7820 5265
+ 7925 5348 7917 5505 7940 5610 8060 5693 8157 5843 8127 5948
+ 8015 6045 7947 6165 7940 6248 7955 6383 7895 6488 7790 6503
+ 7588 6443 7392 6405 7250 6413 7100 6480 6935 6533 6725 6518
+ 6657 6383 6702 6285 6755 6060 6672 5978 6567 5903 6523 5880
+ 6532.46 5886.59 6501.68 5865.16 6452.05 5834.00 6422.21 5762.18
+ 6427.49 5680.61 6467.06 5602.25 6540.74 5566.21 6606.07 5508.47
+ 6698.67 5426.29 6755.12 5356.35 6784.68 5276.29 6840.03 5228.30
+ 6902.02 5201.38 6990.88 5192.27 7102.99 5230.24 7185.15 5251.63
+ 7261.02 5281.26 7334.36 5295.80 7427.53 5305.31 7512.48 5300.46
+ 7611.22 5269.40 7692.85 5261.19 7779.74 5251.01 7852.65 5276.35
+ 7909.03 5312.76 7943.76 5389.39 7913.99 5468.54 7919.06 5529.93
+ 7924.07 5586.25 7961.62 5642.24 8035.80 5668.03 8089.63 5723.57
+ 8149.71 5794.06 8161.46 5872.92 8141.72 5924.92 8107.03 5979.32
+ 8037.14 6017.97 7994.39 6070.16 7956.80 6133.30 7941.08 6184.14
+ 7939.75 6228.81 7940.42 6279.29 7962.02 6349.10 7948.75 6413.18
+ 7923.38 6468.72 7870.11 6504.91 7815.44 6504.87 7739.46 6499.28
+ 7634.76 6454.45 7543.70 6432.15 7438.22 6408.13 7359.08 6402.77
+ 7282.74 6405.05 7212.18 6422.18 7135.08 6466.58 7062.99 6494.16
+ 6975.92 6528.08 6885.29 6538.98 6777.48 6552.97 6687.32 6492.89
+ 6657.77 6425.65 6656.45 6352.57 6693.92 6308.51 6719.31 6234.60
+ 6774.05 6126.24 6745.38 6026.57 6692.49 5995.25 6649.34 5958.92
+ 6592.19 5918.48 6557.31 5897.04 6532.46 5886.59 6501.68 5865.16
+4 0 -1 0 0 16 10 0.0000000 4 120 720 6825 5700 DataStore\001
+-6
+6 6449 3449 8249 4874
+3 3 1 1 -1 7 2 0 -1 4.000 0 0 0 36
+ 6596 4183 6513 4108 6521 3943 6640 3846 6805 3688 6888 3553
+ 7008 3501 7225 3546 7368 3591 7541 3606 7728 3568 7893 3568
+ 7998 3651 7990 3808 8013 3913 8133 3996 8230 4146 8200 4251
+ 8088 4348 8020 4468 8013 4551 8028 4686 7968 4791 7863 4806
+ 7661 4746 7465 4708 7323 4716 7173 4783 7008 4836 6798 4821
+ 6730 4686 6775 4588 6828 4363 6745 4281 6640 4206 6596 4183
+ 6605.46 4189.59 6574.68 4168.16 6525.05 4137.00 6495.21 4065.18
+ 6500.49 3983.61 6540.06 3905.25 6613.74 3869.21 6679.07 3811.47
+ 6771.67 3729.29 6828.12 3659.35 6857.68 3579.29 6913.03 3531.30
+ 6975.02 3504.38 7063.88 3495.27 7175.99 3533.24 7258.15 3554.63
+ 7334.02 3584.26 7407.36 3598.80 7500.53 3608.31 7585.48 3603.46
+ 7684.22 3572.40 7765.85 3564.19 7852.74 3554.01 7925.65 3579.35
+ 7982.03 3615.76 8016.76 3692.39 7986.99 3771.54 7992.06 3832.93
+ 7997.07 3889.25 8034.62 3945.24 8108.80 3971.03 8162.63 4026.57
+ 8222.71 4097.06 8234.46 4175.92 8214.72 4227.92 8180.03 4282.32
+ 8110.14 4320.97 8067.39 4373.16 8029.80 4436.30 8014.08 4487.14
+ 8012.75 4531.81 8013.42 4582.29 8035.02 4652.10 8021.75 4716.18
+ 7996.38 4771.72 7943.11 4807.91 7888.44 4807.87 7812.46 4802.28
+ 7707.76 4757.45 7616.70 4735.15 7511.22 4711.13 7432.08 4705.77
+ 7355.74 4708.05 7285.18 4725.18 7208.08 4769.58 7135.99 4797.16
+ 7048.92 4831.08 6958.29 4841.98 6850.48 4855.97 6760.32 4795.89
+ 6730.77 4728.65 6729.45 4655.57 6766.92 4611.51 6792.31 4537.60
+ 6847.05 4429.24 6818.38 4329.57 6765.49 4298.25 6722.34 4261.92
+ 6665.19 4221.48 6630.31 4200.04 6605.46 4189.59 6574.68 4168.16
+4 0 -1 0 0 16 10 0.0000000 4 120 255 6975 4050 ISS\001
+-6
+6 4125 3750 5925 5175
+3 3 1 1 -1 7 2 0 -1 4.000 0 0 0 36
+ 4250 4468 4167 4393 4175 4228 4294 4131 4459 3973 4542 3838
+ 4662 3786 4879 3831 5022 3876 5195 3891 5382 3853 5547 3853
+ 5652 3936 5644 4093 5667 4198 5787 4281 5884 4431 5854 4536
+ 5742 4633 5674 4753 5667 4836 5682 4971 5622 5076 5517 5091
+ 5315 5031 5119 4993 4977 5001 4827 5068 4662 5121 4452 5106
+ 4384 4971 4429 4873 4482 4648 4399 4566 4294 4491 4250 4468
+ 4259.46 4474.59 4228.68 4453.16 4179.05 4422.00 4149.21 4350.18
+ 4154.49 4268.61 4194.06 4190.25 4267.74 4154.21 4333.07 4096.47
+ 4425.67 4014.29 4482.12 3944.35 4511.68 3864.29 4567.03 3816.30
+ 4629.02 3789.38 4717.88 3780.27 4829.99 3818.24 4912.15 3839.63
+ 4988.02 3869.26 5061.36 3883.80 5154.53 3893.31 5239.48 3888.46
+ 5338.22 3857.40 5419.85 3849.19 5506.74 3839.01 5579.65 3864.35
+ 5636.03 3900.76 5670.76 3977.39 5640.99 4056.54 5646.06 4117.93
+ 5651.07 4174.25 5688.62 4230.24 5762.80 4256.03 5816.63 4311.57
+ 5876.71 4382.06 5888.46 4460.92 5868.72 4512.92 5834.03 4567.32
+ 5764.14 4605.97 5721.39 4658.16 5683.80 4721.30 5668.08 4772.14
+ 5666.75 4816.81 5667.42 4867.29 5689.02 4937.10 5675.75 5001.18
+ 5650.38 5056.72 5597.11 5092.91 5542.44 5092.87 5466.46 5087.28
+ 5361.76 5042.45 5270.70 5020.15 5165.22 4996.13 5086.08 4990.77
+ 5009.74 4993.05 4939.18 5010.18 4862.08 5054.58 4789.99 5082.16
+ 4702.92 5116.08 4612.29 5126.98 4504.48 5140.97 4414.32 5080.89
+ 4384.77 5013.65 4383.45 4940.57 4420.92 4896.51 4446.31 4822.60
+ 4501.05 4714.24 4472.38 4614.57 4419.49 4583.25 4376.34 4546.92
+ 4319.19 4506.48 4284.31 4485.04 4259.46 4474.59 4228.68 4453.16
+4 0 -1 0 0 16 10 0.0000000 4 120 480 4576 4351 FPGIC\001
+-6
+6 2099 6599 3899 8024
+3 3 1 1 -1 7 2 0 -1 4.000 0 0 0 36
+ 2258 7312 2175 7237 2183 7072 2302 6975 2467 6817 2550 6682
+ 2670 6630 2887 6675 3030 6720 3203 6735 3390 6697 3555 6697
+ 3660 6780 3652 6937 3675 7042 3795 7125 3892 7275 3862 7380
+ 3750 7477 3682 7597 3675 7680 3690 7815 3630 7920 3525 7935
+ 3323 7875 3127 7837 2985 7845 2835 7912 2670 7965 2460 7950
+ 2392 7815 2437 7717 2490 7492 2407 7410 2302 7335 2258 7312
+ 2267.46 7318.59 2236.68 7297.16 2187.05 7266.00 2157.21 7194.18
+ 2162.49 7112.61 2202.06 7034.25 2275.74 6998.21 2341.07 6940.47
+ 2433.67 6858.29 2490.12 6788.35 2519.68 6708.29 2575.03 6660.30
+ 2637.02 6633.38 2725.88 6624.27 2837.99 6662.24 2920.15 6683.63
+ 2996.02 6713.26 3069.36 6727.80 3162.53 6737.31 3247.48 6732.46
+ 3346.22 6701.40 3427.85 6693.19 3514.74 6683.01 3587.65 6708.35
+ 3644.03 6744.76 3678.76 6821.39 3648.99 6900.54 3654.06 6961.93
+ 3659.07 7018.25 3696.62 7074.24 3770.80 7100.03 3824.63 7155.57
+ 3884.71 7226.06 3896.46 7304.92 3876.72 7356.92 3842.03 7411.32
+ 3772.14 7449.97 3729.39 7502.16 3691.80 7565.30 3676.08 7616.14
+ 3674.75 7660.81 3675.42 7711.29 3697.02 7781.10 3683.75 7845.18
+ 3658.38 7900.72 3605.11 7936.91 3550.44 7936.87 3474.46 7931.28
+ 3369.76 7886.45 3278.70 7864.15 3173.22 7840.13 3094.08 7834.77
+ 3017.74 7837.05 2947.18 7854.18 2870.08 7898.58 2797.99 7926.16
+ 2710.92 7960.08 2620.29 7970.98 2512.48 7984.97 2422.32 7924.89
+ 2392.77 7857.65 2391.45 7784.57 2428.92 7740.51 2454.31 7666.60
+ 2509.05 7558.24 2480.38 7458.57 2427.49 7427.25 2384.34 7390.92
+ 2327.19 7350.48 2292.31 7329.04 2267.46 7318.59 2236.68 7297.16
+4 0 -1 0 0 16 10 0.0000000 4 120 570 2550 7200 Account\001
+-6
+6 2025 4050 3900 5475
+3 3 1 1 -1 7 2 0 -1 4.000 0 0 0 36
+ 2192 4771 2109 4696 2117 4531 2236 4434 2401 4276 2484 4141
+ 2604 4089 2821 4134 2964 4179 3137 4194 3324 4156 3489 4156
+ 3594 4239 3586 4396 3609 4501 3729 4584 3826 4734 3796 4839
+ 3684 4936 3616 5056 3609 5139 3624 5274 3564 5379 3459 5394
+ 3257 5334 3061 5296 2919 5304 2769 5371 2604 5424 2394 5409
+ 2326 5274 2371 5176 2424 4951 2341 4869 2236 4794 2192 4771
+ 2201.46 4777.59 2170.68 4756.16 2121.05 4725.00 2091.21 4653.18
+ 2096.49 4571.61 2136.06 4493.25 2209.74 4457.21 2275.07 4399.47
+ 2367.67 4317.29 2424.12 4247.35 2453.68 4167.29 2509.03 4119.30
+ 2571.02 4092.38 2659.88 4083.27 2771.99 4121.24 2854.15 4142.63
+ 2930.02 4172.26 3003.36 4186.80 3096.53 4196.31 3181.48 4191.46
+ 3280.22 4160.40 3361.85 4152.19 3448.74 4142.01 3521.65 4167.35
+ 3578.03 4203.76 3612.76 4280.39 3582.99 4359.54 3588.06 4420.93
+ 3593.07 4477.25 3630.62 4533.24 3704.80 4559.03 3758.63 4614.57
+ 3818.71 4685.06 3830.46 4763.92 3810.72 4815.92 3776.03 4870.32
+ 3706.14 4908.97 3663.39 4961.16 3625.80 5024.30 3610.08 5075.14
+ 3608.75 5119.81 3609.42 5170.29 3631.02 5240.10 3617.75 5304.18
+ 3592.38 5359.72 3539.11 5395.91 3484.44 5395.87 3408.46 5390.28
+ 3303.76 5345.45 3212.70 5323.15 3107.22 5299.13 3028.08 5293.77
+ 2951.74 5296.05 2881.18 5313.18 2804.08 5357.58 2731.99 5385.16
+ 2644.92 5419.08 2554.29 5429.98 2446.48 5443.97 2356.32 5383.89
+ 2326.77 5316.65 2325.45 5243.57 2362.92 5199.51 2388.31 5125.60
+ 2443.05 5017.24 2414.38 4917.57 2361.49 4886.25 2318.34 4849.92
+ 2261.19 4809.48 2226.31 4788.04 2201.46 4777.59 2170.68 4756.16
+4 0 -1 0 0 16 10 0.0000000 4 150 1275 2326 4726 WordProbToolRep\001
+-6
+6 2250 2250 4050 3675
+3 3 1 1 -1 7 2 0 -1 4.000 0 0 0 36
+ 2394 2971 2311 2896 2319 2731 2438 2634 2603 2476 2686 2341
+ 2806 2289 3023 2334 3166 2379 3339 2394 3526 2356 3691 2356
+ 3796 2439 3788 2596 3811 2701 3931 2784 4028 2934 3998 3039
+ 3886 3136 3818 3256 3811 3339 3826 3474 3766 3579 3661 3594
+ 3459 3534 3263 3496 3121 3504 2971 3571 2806 3624 2596 3609
+ 2528 3474 2573 3376 2626 3151 2543 3069 2438 2994 2394 2971
+ 2403.46 2977.59 2372.68 2956.16 2323.05 2925.00 2293.21 2853.18
+ 2298.49 2771.61 2338.06 2693.25 2411.74 2657.21 2477.07 2599.47
+ 2569.67 2517.29 2626.12 2447.35 2655.68 2367.29 2711.03 2319.30
+ 2773.02 2292.38 2861.88 2283.27 2973.99 2321.24 3056.15 2342.63
+ 3132.02 2372.26 3205.36 2386.80 3298.53 2396.31 3383.48 2391.46
+ 3482.22 2360.40 3563.85 2352.19 3650.74 2342.01 3723.65 2367.35
+ 3780.03 2403.76 3814.76 2480.39 3784.99 2559.54 3790.06 2620.93
+ 3795.07 2677.25 3832.62 2733.24 3906.80 2759.03 3960.63 2814.57
+ 4020.71 2885.06 4032.46 2963.92 4012.72 3015.92 3978.03 3070.32
+ 3908.14 3108.97 3865.39 3161.16 3827.80 3224.30 3812.08 3275.14
+ 3810.75 3319.81 3811.42 3370.29 3833.02 3440.10 3819.75 3504.18
+ 3794.38 3559.72 3741.11 3595.91 3686.44 3595.87 3610.46 3590.28
+ 3505.76 3545.45 3414.70 3523.15 3309.22 3499.13 3230.08 3493.77
+ 3153.74 3496.05 3083.18 3513.18 3006.08 3557.58 2933.99 3585.16
+ 2846.92 3619.08 2756.29 3629.98 2648.48 3643.97 2558.32 3583.89
+ 2528.77 3516.65 2527.45 3443.57 2564.92 3399.51 2590.31 3325.60
+ 2645.05 3217.24 2616.38 3117.57 2563.49 3086.25 2520.34 3049.92
+ 2463.19 3009.48 2428.31 2988.04 2403.46 2977.59 2372.68 2956.16
+4 0 -1 0 0 16 10 0.0000000 4 150 900 2701 2851 Computation\001
+4 0 -1 0 0 16 10 0.0000000 4 150 600 2701 3076 Manager\001
+-6
+6 4725 6000 6525 7425
+3 3 1 1 -1 7 2 0 -1 4.000 0 0 0 36
+ 4824 6713 4741 6638 4749 6473 4868 6376 5033 6218 5116 6083
+ 5236 6031 5453 6076 5596 6121 5769 6136 5956 6098 6121 6098
+ 6226 6181 6218 6338 6241 6443 6361 6526 6458 6676 6428 6781
+ 6316 6878 6248 6998 6241 7081 6256 7216 6196 7321 6091 7336
+ 5889 7276 5693 7238 5551 7246 5401 7313 5236 7366 5026 7351
+ 4958 7216 5003 7118 5056 6893 4973 6811 4868 6736 4824 6713
+ 4833.46 6719.59 4802.68 6698.16 4753.05 6667.00 4723.21 6595.18
+ 4728.49 6513.61 4768.06 6435.25 4841.74 6399.21 4907.07 6341.47
+ 4999.67 6259.29 5056.12 6189.35 5085.68 6109.29 5141.03 6061.30
+ 5203.02 6034.38 5291.88 6025.27 5403.99 6063.24 5486.15 6084.63
+ 5562.02 6114.26 5635.36 6128.80 5728.53 6138.31 5813.48 6133.46
+ 5912.22 6102.40 5993.85 6094.19 6080.74 6084.01 6153.65 6109.35
+ 6210.03 6145.76 6244.76 6222.39 6214.99 6301.54 6220.06 6362.93
+ 6225.07 6419.25 6262.62 6475.24 6336.80 6501.03 6390.63 6556.57
+ 6450.71 6627.06 6462.46 6705.92 6442.72 6757.92 6408.03 6812.32
+ 6338.14 6850.97 6295.39 6903.16 6257.80 6966.30 6242.08 7017.14
+ 6240.75 7061.81 6241.42 7112.29 6263.02 7182.10 6249.75 7246.18
+ 6224.38 7301.72 6171.11 7337.91 6116.44 7337.87 6040.46 7332.28
+ 5935.76 7287.45 5844.70 7265.15 5739.22 7241.13 5660.08 7235.77
+ 5583.74 7238.05 5513.18 7255.18 5436.08 7299.58 5363.99 7327.16
+ 5276.92 7361.08 5186.29 7371.98 5078.48 7385.97 4988.32 7325.89
+ 4958.77 7258.65 4957.45 7185.57 4994.92 7141.51 5020.31 7067.60
+ 5075.05 6959.24 5046.38 6859.57 4993.49 6828.25 4950.34 6791.92
+ 4893.19 6751.48 4858.31 6730.04 4833.46 6719.59 4802.68 6698.16
+4 0 -1 0 0 16 10 0.0000000 4 120 465 5176 6601 Broker\001
+-6
+6 149 6599 1949 8024
+3 3 1 1 -1 7 2 0 -1 4.000 0 0 0 36
+ 256 7312 173 7237 181 7072 300 6975 465 6817 548 6682
+ 668 6630 885 6675 1028 6720 1201 6735 1388 6697 1553 6697
+ 1658 6780 1650 6937 1673 7042 1793 7125 1890 7275 1860 7380
+ 1748 7477 1680 7597 1673 7680 1688 7815 1628 7920 1523 7935
+ 1321 7875 1125 7837 983 7845 833 7912 668 7965 458 7950
+ 390 7815 435 7717 488 7492 405 7410 300 7335 256 7312
+ 265.46 7318.59 234.68 7297.16 185.05 7266.00 155.21 7194.18
+ 160.49 7112.61 200.06 7034.25 273.74 6998.21 339.07 6940.47
+ 431.67 6858.29 488.12 6788.35 517.68 6708.29 573.03 6660.30
+ 635.02 6633.38 723.88 6624.27 835.99 6662.24 918.15 6683.63
+ 994.02 6713.26 1067.36 6727.80 1160.53 6737.31 1245.48 6732.46
+ 1344.22 6701.40 1425.85 6693.19 1512.74 6683.01 1585.65 6708.35
+ 1642.03 6744.76 1676.76 6821.39 1646.99 6900.54 1652.06 6961.93
+ 1657.07 7018.25 1694.62 7074.24 1768.80 7100.03 1822.63 7155.57
+ 1882.71 7226.06 1894.46 7304.92 1874.72 7356.92 1840.03 7411.32
+ 1770.14 7449.97 1727.39 7502.16 1689.80 7565.30 1674.08 7616.14
+ 1672.75 7660.81 1673.42 7711.29 1695.02 7781.10 1681.75 7845.18
+ 1656.38 7900.72 1603.11 7936.91 1548.44 7936.87 1472.46 7931.28
+ 1367.76 7886.45 1276.70 7864.15 1171.22 7840.13 1092.08 7834.77
+ 1015.74 7837.05 945.18 7854.18 868.08 7898.58 795.99 7926.16
+ 708.92 7960.08 618.29 7970.98 510.48 7984.97 420.32 7924.89
+ 390.77 7857.65 389.45 7784.57 426.92 7740.51 452.31 7666.60
+ 507.05 7558.24 478.38 7458.57 425.49 7427.25 382.34 7390.92
+ 325.19 7350.48 290.31 7329.04 265.46 7318.59 234.68 7297.16
+4 0 -1 0 0 16 10 0.0000000 4 120 945 525 7125 WordChecker\001
+4 0 -1 0 0 16 10 0.0000000 4 150 420 525 7350 Agent\001
+-6
+6 4049 1724 5849 3149
+3 3 1 1 -1 7 2 0 -1 4.000 0 0 0 36
+ 4201 2476 4118 2401 4126 2236 4245 2139 4410 1981 4493 1846
+ 4613 1794 4830 1839 4973 1884 5146 1899 5333 1861 5498 1861
+ 5603 1944 5595 2101 5618 2206 5738 2289 5835 2439 5805 2544
+ 5693 2641 5625 2761 5618 2844 5633 2979 5573 3084 5468 3099
+ 5266 3039 5070 3001 4928 3009 4778 3076 4613 3129 4403 3114
+ 4335 2979 4380 2881 4433 2656 4350 2574 4245 2499 4201 2476
+ 4210.46 2482.59 4179.68 2461.16 4130.05 2430.00 4100.21 2358.18
+ 4105.49 2276.61 4145.06 2198.25 4218.74 2162.21 4284.07 2104.47
+ 4376.67 2022.29 4433.12 1952.35 4462.68 1872.29 4518.03 1824.30
+ 4580.02 1797.38 4668.88 1788.27 4780.99 1826.24 4863.15 1847.63
+ 4939.02 1877.26 5012.36 1891.80 5105.53 1901.31 5190.48 1896.46
+ 5289.22 1865.40 5370.85 1857.19 5457.74 1847.01 5530.65 1872.35
+ 5587.03 1908.76 5621.76 1985.39 5591.99 2064.54 5597.06 2125.93
+ 5602.07 2182.25 5639.62 2238.24 5713.80 2264.03 5767.63 2319.57
+ 5827.71 2390.06 5839.46 2468.92 5819.72 2520.92 5785.03 2575.32
+ 5715.14 2613.97 5672.39 2666.16 5634.80 2729.30 5619.08 2780.14
+ 5617.75 2824.81 5618.42 2875.29 5640.02 2945.10 5626.75 3009.18
+ 5601.38 3064.72 5548.11 3100.91 5493.44 3100.87 5417.46 3095.28
+ 5312.76 3050.45 5221.70 3028.15 5116.22 3004.13 5037.08 2998.77
+ 4960.74 3001.05 4890.18 3018.18 4813.08 3062.58 4740.99 3090.16
+ 4653.92 3124.08 4563.29 3134.98 4455.48 3148.97 4365.32 3088.89
+ 4335.77 3021.65 4334.45 2948.57 4371.92 2904.51 4397.31 2830.60
+ 4452.05 2722.24 4423.38 2622.57 4370.49 2591.25 4327.34 2554.92
+ 4270.19 2514.48 4235.31 2493.04 4210.46 2482.59 4179.68 2461.16
+4 0 -1 0 0 16 10 0.0000000 4 150 1260 4350 2400 Class Membership\001
+4 0 -1 0 0 16 10 0.0000000 4 120 765 4575 2625 Determiner\001
+-6
+1 3 0 1 -1 0 0 0 20 0.0000000 1 0.000 5101 5100 75 75 5101 5100 5176 5175
+1 3 0 1 -1 0 0 0 20 0.0000000 1 0.000 5775 4800 75 75 5775 4800 5850 4875
+1 3 0 1 -1 0 0 0 20 0.0000000 1 0.000 5925 4275 75 75 5925 4275 6000 4350
+1 3 0 1 -1 0 0 0 20 0.0000000 1 0.000 6750 1650 75 75 6750 1650 6825 1725
+1 3 0 1 -1 0 0 0 20 0.0000000 1 0.000 5100 3750 75 75 5100 3750 5175 3825
+1 3 0 1 -1 0 0 0 20 0.0000000 1 0.000 4275 3975 75 75 4275 3975 4350 4050
+1 3 0 1 -1 0 0 0 20 0.0000000 1 0.000 1575 4875 75 75 1575 4875 1650 4950
+1 3 0 1 -1 0 0 0 20 0.0000000 1 0.000 750 4875 75 75 750 4875 825 4950
+1 3 0 1 -1 0 0 0 20 0.0000000 1 0.000 2325 5550 75 75 2325 5550 2400 5625
+1 3 0 1 -1 0 0 0 20 0.0000000 1 0.000 3375 5550 75 75 3375 5550 3450 5625
+1 3 0 1 -1 0 0 0 20 0.0000000 1 0.000 6225 1800 75 75 6225 1800 6300 1875
+2 1 0 1 -1 7 0 0 20 0.000 0 0 -1 1 0 2
+ 1 1 1.00 60.00 120.00
+ 2475 900 3150 750
+2 1 0 1 -1 7 0 0 20 0.000 0 0 -1 1 0 2
+ 1 1 1.00 60.00 120.00
+ 5775 750 5100 750
+2 1 0 1 -1 7 0 0 20 0.000 0 0 -1 1 0 2
+ 1 1 1.00 60.00 120.00
+ 750 3300 975 1725
+2 1 0 1 -1 7 0 0 20 0.000 0 0 -1 0 0 2
+ 6750 1650 6900 1875
+2 1 0 1 -1 7 0 0 20 0.000 0 0 -1 0 0 2
+ 5925 4275 6450 4125
+2 1 0 1 -1 7 0 0 20 0.000 0 0 -1 0 0 2
+ 5775 4800 6525 5400
+2 1 0 1 -1 7 0 0 20 0.000 0 0 -1 0 0 2
+ 750 4800 900 6525
+2 1 0 1 -1 7 0 0 20 0.000 0 0 -1 0 0 2
+ 1575 4875 2400 6675
+2 1 0 1 -1 7 0 0 20 0.000 0 0 -1 1 0 2
+ 1 1 1.00 60.00 120.00
+ 2400 2400 2100 1650
+2 1 0 1 -1 7 0 0 20 0.000 0 0 -1 1 0 2
+ 1 1 1.00 60.00 120.00
+ 2250 4200 1650 1650
+2 1 0 1 -1 7 0 0 20 0.000 0 0 -1 0 0 2
+ 4275 3975 3900 3675
+2 1 0 1 -1 7 0 0 20 0.000 0 0 -1 1 0 2
+ 1 1 1.00 60.00 120.00
+ 4200 2025 2250 1350
+2 1 0 1 -1 7 0 0 20 0.000 0 0 -1 0 0 2
+ 4800 3150 5100 3750
+2 1 0 1 -1 7 0 0 20 0.000 0 0 -1 0 0 2
+ 5100 5100 5250 5850
+2 1 0 1 -1 7 0 0 20 0.000 0 0 -1 0 0 2
+ 2325 5550 1650 6600
+2 1 0 1 -1 7 0 0 20 0.000 0 0 -1 0 0 2
+ 3375 5550 3450 6600
+2 1 0 1 -1 7 0 0 20 0.000 0 0 -1 0 0 2
+ 6225 1800 5625 3750
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <ybr...@us...> - 2007-05-24 15:58:53
|
Revision: 239
http://svn.sourceforge.net/magnus/?rev=239&view=rev
Author: ybryukhov
Date: 2007-05-24 08:58:48 -0700 (Thu, 24 May 2007)
Log Message:
-----------
same renaming for h2
Added Paths:
-----------
branches/daly/version10/gap_front_end/gdb/h2small
Removed Paths:
-------------
branches/daly/version10/gap_front_end/gdb/h2
Deleted: branches/daly/version10/gap_front_end/gdb/h2
===================================================================
--- branches/daly/version10/gap_front_end/gdb/h2 2007-05-24 15:58:21 UTC (rev 238)
+++ branches/daly/version10/gap_front_end/gdb/h2 2007-05-24 15:58:48 UTC (rev 239)
@@ -1 +0,0 @@
-[a,b,b][a,b,a^2]
Copied: branches/daly/version10/gap_front_end/gdb/h2small (from rev 238, branches/daly/version10/gap_front_end/gdb/h2)
===================================================================
--- branches/daly/version10/gap_front_end/gdb/h2small (rev 0)
+++ branches/daly/version10/gap_front_end/gdb/h2small 2007-05-24 15:58:48 UTC (rev 239)
@@ -0,0 +1 @@
+[a,b,b][a,b,a^2]
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <ybr...@us...> - 2007-05-24 15:58:31
|
Revision: 238
http://svn.sourceforge.net/magnus/?rev=238&view=rev
Author: ybryukhov
Date: 2007-05-24 08:58:21 -0700 (Thu, 24 May 2007)
Log Message:
-----------
there was h1 and H1, renamed h1 to h1small because Mac OS and Windows file systems are case-insensitive
Added Paths:
-----------
branches/daly/version10/gap_front_end/gdb/h1small
Removed Paths:
-------------
branches/daly/version10/gap_front_end/gdb/h1
Deleted: branches/daly/version10/gap_front_end/gdb/h1
===================================================================
--- branches/daly/version10/gap_front_end/gdb/h1 2007-05-14 19:28:42 UTC (rev 237)
+++ branches/daly/version10/gap_front_end/gdb/h1 2007-05-24 15:58:21 UTC (rev 238)
@@ -1 +0,0 @@
-[a,b,b][a,b,a]
Copied: branches/daly/version10/gap_front_end/gdb/h1small (from rev 237, branches/daly/version10/gap_front_end/gdb/h1)
===================================================================
--- branches/daly/version10/gap_front_end/gdb/h1small (rev 0)
+++ branches/daly/version10/gap_front_end/gdb/h1small 2007-05-24 15:58:21 UTC (rev 238)
@@ -0,0 +1 @@
+[a,b,b][a,b,a]
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <ybr...@us...> - 2007-05-14 19:30:09
|
Revision: 237
http://svn.sourceforge.net/magnus/?rev=237&view=rev
Author: ybryukhov
Date: 2007-05-14 12:28:42 -0700 (Mon, 14 May 2007)
Log Message:
-----------
merging v4 and v10, there are some substantial differences remain, and some file are still present on only one of the versions
Peter & Yegor
Modified Paths:
--------------
branches/daly/version10/README
branches/daly/version10/back_end/Group/include/AbelianSGPresentation.h
branches/daly/version10/back_end/Packages/src/PackagesData.C
branches/daly/version10/back_end/SMApps/include/AbelianProblems.h
branches/daly/version10/back_end/SMApps/src/WhiteheadMinimal.C
branches/daly/version10/back_end/SMApps/src/WordProblem.C
branches/daly/version10/back_end/SMApps/src/fastProblems.C
branches/daly/version10/back_end/SMApps/src/menuDefns.C
branches/daly/version10/back_end/SessionManager/include/BaseProperties.h
branches/daly/version10/back_end/SessionManager/include/Menu.h
branches/daly/version10/back_end/SessionManager/src/ARCer.C
branches/daly/version10/back_end/SessionManager/src/Menu.C
branches/daly/version10/back_end/SessionManager/src/Property.C
branches/daly/version10/back_end/SessionManager/src/RandomDefinitionsGenerator.C
branches/daly/version10/back_end/SessionManager/src/SMEnumerator.C
branches/daly/version10/back_end/SessionManager/src/SMList.C
branches/daly/version10/back_end/Subgroup/include/SubgroupGraph.h
branches/daly/version10/back_end/Subgroup/include/SubgroupGraphRep.h
branches/daly/version10/back_end/Subgroup/include/TurnerProperSubgroupEnumerator.h
branches/daly/version10/back_end/Subgroup/src/SGofFreeGroup.C
branches/daly/version10/back_end/Subgroup/src/SubgroupGraphRep.C
branches/daly/version10/back_end/black_boxes/TietzeTrek/Compile.mk
branches/daly/version10/back_end/black_boxes/TietzeTrek/Fclasses/FtoolBox.C
branches/daly/version10/back_end/black_boxes/TietzeTrek/Makefile
branches/daly/version10/back_end/black_boxes/TietzeTrek/TTdriverDebug/FTietzeNode.C
branches/daly/version10/back_end/black_boxes/TietzeTrek/TTdriverDebug/TietzeTrek.C
branches/daly/version10/back_end/black_boxes/TietzeTrek/TTnodesRsrc/FTT1node.C
branches/daly/version10/back_end/black_boxes/TietzeTrek/TTnodesRsrc/FTT2pnode.C
branches/daly/version10/back_end/black_boxes/ace/coinc.c
branches/daly/version10/back_end/black_boxes/ace/enum.c
branches/daly/version10/back_end/black_boxes/ace/enum01.c
branches/daly/version10/back_end/black_boxes/ace/parser.c
branches/daly/version10/back_end/black_boxes/ace/util1.c
branches/daly/version10/back_end/black_boxes/kbmag/gapdoc/manual.tex
branches/daly/version10/back_end/black_boxes/kbmag/lib/fsa.c
branches/daly/version10/back_end/black_boxes/kbmag/lib/fsalogic.c
branches/daly/version10/back_end/black_boxes/orwp/Makefile
branches/daly/version10/back_end/black_boxes/rkbp/Makefile
branches/daly/version10/back_end/black_boxes/tc5/enum.h
branches/daly/version10/back_end/black_boxes/tc5/main.c
branches/daly/version10/back_end/black_boxes/tc5/proc_ded.h
branches/daly/version10/back_end/black_boxes/tc5/save_ct.c
branches/daly/version10/back_end/general/include/Associations.h
branches/daly/version10/back_end/general/include/Cell.h
branches/daly/version10/back_end/general/include/Chars.h
branches/daly/version10/back_end/general/include/DArray.h
branches/daly/version10/back_end/general/include/DList.h
branches/daly/version10/back_end/general/include/File.h
branches/daly/version10/back_end/general/include/GCD.h
branches/daly/version10/back_end/general/include/List.h
branches/daly/version10/back_end/general/include/QuickAssociations.h
branches/daly/version10/back_end/general/include/RandomNumbers.h
branches/daly/version10/back_end/general/include/Set.h
branches/daly/version10/back_end/general/include/Stack.h
branches/daly/version10/back_end/general/include/Vector.h
branches/daly/version10/back_end/general/src/Associations.C
branches/daly/version10/back_end/general/src/Chars.C
branches/daly/version10/back_end/general/src/GCD.C
branches/daly/version10/back_end/global/Trichotomy.h
branches/daly/version10/back_end/global/compile.mk
branches/daly/version10/back_end/libg++/src/Integer.C
branches/daly/version10/back_end/libg++/src/Rational.C
branches/daly/version10/back_end/libg++/src/String.C
branches/daly/version10/front_end/dialog.tcl
branches/daly/version10/front_end/files.tcl
branches/daly/version10/front_end/help/General_amalg_prods.help
branches/daly/version10/front_end/magnus
branches/daly/version10/front_end/magnus.in
branches/daly/version10/inventory/Abelian/subgroup/ComputeOrderTorsionSubgroup
branches/daly/version10/inventory/inv2html.tcl
branches/daly/version4/back_end/SMApps/src/WordProblem.C
branches/daly/version4/back_end/SMApps/src/fastProblems.C
branches/daly/version4/back_end/SMApps/src/menuDefns.C
branches/daly/version4/back_end/SessionManager/include/FEData.h
branches/daly/version4/back_end/SessionManager/include/OutMessages.h
branches/daly/version4/back_end/SessionManager/include/SMEnumerator.h
branches/daly/version4/back_end/SessionManager/include/SMList.h
branches/daly/version4/back_end/SessionManager/include/ViewContents.h
branches/daly/version4/back_end/SessionManager/src/DatabaseManager.C
branches/daly/version4/back_end/SessionManager/src/FEData.C
branches/daly/version4/back_end/SessionManager/src/GIC.C
branches/daly/version4/back_end/SessionManager/src/MIC.C
branches/daly/version4/back_end/SessionManager/src/Menu.C
branches/daly/version4/back_end/SessionManager/src/ObjectFactory.C
branches/daly/version4/back_end/SessionManager/src/Property.C
branches/daly/version4/back_end/SessionManager/src/RandomDefinitionsGenerator.C
branches/daly/version4/back_end/SessionManager/src/SMEnumerator.C
branches/daly/version4/back_end/SessionManager/src/SessionManager.C
branches/daly/version4/back_end/SessionManager/src/ViewContents.C
branches/daly/version4/back_end/Subgroup/include/DoubleCosetGraph.h
branches/daly/version4/back_end/Subgroup/include/GraphConjugacyProblem.h
branches/daly/version4/back_end/Subgroup/include/SubgroupGraph.h
branches/daly/version4/back_end/Todd-Coxeter/src/HavasTC.C
branches/daly/version4/back_end/general/include/BlackBox.h
branches/daly/version4/back_end/general/include/Chars.h
branches/daly/version4/back_end/general/include/QuickAssociations.h
branches/daly/version4/back_end/general/include/Set.h
branches/daly/version4/back_end/general/src/Chars.C
branches/daly/version4/back_end/global/compile.mk
branches/daly/version4/back_end/global/global.h
branches/daly/version4/back_end/global/global.mk
branches/daly/version4/back_end/libg++/src/Integer.C
branches/daly/version4/front_end/help/Acknowledgments.help
branches/daly/version4/front_end/help/Contributors.help
branches/daly/version4/front_end/help/General_abelian_groups.help
branches/daly/version4/front_end/help/General_amalg_prods.help
branches/daly/version4/front_end/help/abelian_algorithms.help
branches/daly/version4/front_end/help/chief_programmer.help
branches/daly/version4/front_end/help/probs/TorsionFreeRankProblem.help
Modified: branches/daly/version10/README
===================================================================
--- branches/daly/version10/README 2007-05-02 19:11:29 UTC (rev 236)
+++ branches/daly/version10/README 2007-05-14 19:28:42 UTC (rev 237)
@@ -100,3 +100,39 @@
-------
There is a ChangeLog file which describes changes for each MAGNUS'
release available in the same directory.
+
+ The source layout
+ -----------------
+
+ The directory $magnus/front_end contains the Tcl/Tk source for the
+ graphical user interface.
+
+ The directory $magnus/experiments contains stand-alone programs which
+ carry out group-theoretic experiments.
+
+ In $magnus/back_end, most source and header files are grouped by derivation
+ hierarchy. They are kept in (subdirectories of) a subdirectory of
+ $magnus/back_end named after the root of the hierarchy.
+ There is a canonical directory structure:
+
+ ______________ <root name> _________
+ / / | \ \
+ Makefile include src lib test
+ | / \ | / \
+ CVS CVS obj CVS CVS bin
+
+ A `blank' copy of this tree is in $magnus/back_end/canonical, which you
+ can cp -r to start a new hierarchy.
+
+ The Makefile explains itself. The src/obj subdirectory holds object and
+ dependency files. The test subdirectory holds source files for testing
+ and debugging programs; the executables are put in test/bin.
+
+ There is also a directory $magnus/back_end/global which contains header
+ files and GNU make include files which are global to the back end.
+
+ The directory $magnus/back_end/general has the above structure, but
+ contains several classes of general interest.
+
+ The directory $magnus/back_end/black_boxes contains all stand-alone
+ executables which magnus uses as black boxes.
Modified: branches/daly/version10/back_end/Group/include/AbelianSGPresentation.h
===================================================================
--- branches/daly/version10/back_end/Group/include/AbelianSGPresentation.h 2007-05-02 19:11:29 UTC (rev 236)
+++ branches/daly/version10/back_end/Group/include/AbelianSGPresentation.h 2007-05-14 19:28:42 UTC (rev 237)
@@ -30,19 +30,27 @@
// Copy constructor and operator = provided by compiler.
- AbelianSGPresentationRep(const AbelianGroup& parent,const VectorOf<Word>& sgGens,
- const FPGroup& thePresentation, const DArray<Integer>& sgPGens,
+ AbelianSGPresentationRep(const AbelianGroup& parent,
+ const VectorOf<Word>& sgGens,
+ const FPGroup& thePresentation,
+ const DArray<Integer>& sgPGens,
+ const DArray<Integer>& sgPGensInv,
+ const VectorOf<Integer>& invariants,
bool makeF )
: AbelianGroupRep(thePresentation,makeF),
theParent( parent ),
theSGGens( sgGens ),
- theSGPGens( sgPGens )
+ theSGPGens( sgPGens ),
+ theSGPGensInv( sgPGensInv ),
+ theInvariants( invariants )
{ }
// Make a rep. It accepts the following parameters:
- // parent - parent group of a subgroup, sgGens - generators od SG in terms of parent
+ // parent - parent group of a subgroup,
+ // sgGens - generators od SG in terms of parent
// thePresentation - the presentation for a subgroup as a group
// sgPGens - generators of presentation epressed in generators of canonical
- // decomposition of a parent group , makeF - true if you whant to make a files with
+ // decomposition of a parent group ,
+ // makeF - true if you whant to make a files with
// generators, the same as for AbelianGroup
// Destructor provided by compiler.
@@ -78,6 +86,8 @@
ostr < theParent;
ostr < theSGGens;
ostr < theSGPGens;
+ ostr < theSGPGensInv;
+ ostr < theInvariants;
}
inline void read( istream& istr )
@@ -86,6 +96,8 @@
istr > theParent;
istr > theSGGens;
istr > theSGPGens;
+ istr > theSGPGensInv;
+ istr > theInvariants;
}
// Data members:
@@ -95,6 +107,8 @@
DArray<Integer> theSGPGens;
// Generators of presentation, given in generators of
// canonical decomposition of parent group
+ DArray<Integer> theSGPGensInv;
+ VectorOf<Integer> theInvariants;
AbelianGroup theParent;
// Parent group
@@ -136,10 +150,7 @@
// Copy constructor provided by compiler
- AbelianSGPresentation( ):
- DerivedObjectOf<AbelianGroup,AbelianSGPresentationRep>( new AbelianSGPresentationRep
- (AbelianGroup(FPGroup()),VectorOf<Word>(), FPGroup(),
- DArray<Integer>(),false) ) { }
+ AbelianSGPresentation() : DerivedObjectOf<AbelianGroup,AbelianSGPresentationRep> (new AbelianSGPresentationRep(AbelianGroup(FPGroup()),VectorOf<Word>(),FPGroup(),DArray<Integer>(),DArray<Integer>(),VectorOf<Integer>(),false)) { }
///////////////////////////////////////////////////////
// //
@@ -178,22 +189,25 @@
///////////////////////////////////////////////////////
protected:
private:
- friend AbelianSGPresentation AbelianGroup::makeSubgroupPresentation
- (const VectorOf<Word>& vG) const;
+ friend AbelianSGPresentation AbelianGroup::makeSubgroupPresentation(const VectorOf<Word>& vG) const;
//Constructor is private because it have sence only for AbelianGroup
// It accepts the following parameters:
- // parent - parent group of a subgroup, sgGens - generators od SG in terms of parent
+ // parent - parent group of a subgroup,
+ // sgGens - generators od SG in terms of parent
// thePresentation - the presentation for a subgroup as a group
// sgPGens - generators of presentation epressed in generators of canonical
- // decomposition of a parent group , makeF - true if you whant to make a files with
+ // decomposition of a parent group ,
+ // makeF - true if you whant to make a files with
// generators, the same as for AbelianGroup
- AbelianSGPresentation(const AbelianGroup& parent,const VectorOf<Word>& sgGens,
- const FPGroup& thePresentation,const DArray<Integer>& sgPGens,
+ AbelianSGPresentation(const AbelianGroup& parent,
+ const VectorOf<Word>& sgGens,
+ const FPGroup& thePresentation,
+ const DArray<Integer>& sgPGens,
+ const DArray<Integer>& sgPGensInv,
+ const VectorOf<Integer>& invariants,
bool makeF = false):
- DerivedObjectOf<AbelianGroup,AbelianSGPresentationRep>( new AbelianSGPresentationRep
- (parent,sgGens,thePresentation,sgPGens,
- makeF) ) { }
+ DerivedObjectOf<AbelianGroup,AbelianSGPresentationRep>(new AbelianSGPresentationRep(parent,sgGens,thePresentation,sgPGens,sgPGensInv,invariants,makeF)) { }
// Special wrapping constructor to wrap new representations (returned
// by eg. delegated methods) and for base initialisation by derived
// classes:
@@ -201,9 +215,8 @@
AbelianSGPresentation( AbelianSGPresentationRep* newrep ) :
DerivedObjectOf<AbelianGroup,AbelianSGPresentationRep>(newrep) { }
-
#ifdef DEBUG
- // friend int main(... );
+ friend int main(int, char** );
#endif
};
Modified: branches/daly/version10/back_end/Packages/src/PackagesData.C
===================================================================
--- branches/daly/version10/back_end/Packages/src/PackagesData.C 2007-05-02 19:11:29 UTC (rev 236)
+++ branches/daly/version10/back_end/Packages/src/PackagesData.C 2007-05-14 19:28:42 UTC (rev 237)
@@ -1,4 +1,4 @@
-#include <sstream>
+
#include "PackagesData.h"
#include "MagnusHome.h"
#include "List.h"
Modified: branches/daly/version10/back_end/SMApps/include/AbelianProblems.h
===================================================================
--- branches/daly/version10/back_end/SMApps/include/AbelianProblems.h 2007-05-02 19:11:29 UTC (rev 236)
+++ branches/daly/version10/back_end/SMApps/include/AbelianProblems.h 2007-05-14 19:28:42 UTC (rev 237)
@@ -15,15 +15,13 @@
#ifndef _AbelianProblems_h_
#define _AbelianProblems_h_
-
+#include "ComputationManager.h"
#include "Supervisor.h"
#include "AbelianInvariants.h"
#include "AbelianSGPresentation.h"
-
// ----------------------- AbelianWordProblem ------------------------------ //
-
class AbelianWordProblem : public Supervisor
{
public:
@@ -77,12 +75,55 @@
};
+// ----------------------- AbelianSGWordProblem ---------------------------- //
-//---------------------------------------------------------------------------//
+class AbelianSGWordProblem : public Supervisor
+{
+public:
+ AbelianSGWordProblem(class SMSubgroup& S, class SMWord& w);
+ void viewStructure(ostream& ostr) const; // overrides SMObject
+ void takeControl( ); // overrides ComputationManager
+ void start( ) { }; // overrides ComputationManager
+ void terminate( ) { }; // overrides ComputationManager
+private:
+ SMSubgroup& theSubgroup;
+ SMWord& theWord;
+ MirrorSubordinate abelianSGInvariants;
+};
+
+// -------------------- AbelianQuotientWordProblem ----------------------- //
+
+class AbelianQuotientWordProblem : public Supervisor
+{
+public:
+ AbelianQuotientWordProblem(class SMSubgroup& S, class SMWord& w);
+ void viewStructure(ostream& ostr) const; // overrides SMObject
+ void takeControl( ); // overrides ComputationManager
+ void start( ) { }; // overrides ComputationManager
+ void terminate( ) { }; // overrides ComputationManager
+private:
+ SMSubgroup& theSubgroup;
+ SMWord& theWord;
+ MirrorSubordinate abelianInvariants;
+};
+
+class IsWordNthPower : public Supervisor
+{
+public:
+ IsWordNthPower(class SMWord& w, int p = 1);
+ void viewStructure(ostream& ostr) const; // overrides SMObject
+ void takeControl( ); // overrides ComputationManager
+ void start( ) { }; // overrides ComputationManager
+ void terminate( ) { }; // overrides ComputationManager
+private:
+ Integer thePower;
+ SMFPGroup& theGroup;
+ SMWord& theWord;
+ MirrorSubordinate abelianInvariants;
+};
+
//------------------------ AbelianIsomProblem -------------------------------//
-//---------------------------------------------------------------------------//
-
class AbelianIsomProblem : public Supervisor
{
public:
@@ -424,10 +465,8 @@
};
-
// ------------------------ WordInSGOfAbelian ------------------------------ //
-
class WordInSGOfAbelian : public Supervisor
{
@@ -489,10 +528,40 @@
MirrorSubordinate abelianInvariants;
};
+// ------------------------ WordPowerInSGOfAbelian ------------------------- //
+class WordPowerInSGOfAbelian : public Supervisor
+{
+public:
+ WordPowerInSGOfAbelian(class SMSubgroup& S, class SMWord& w);
+ void viewStructure(ostream& ostr) const; // overrides SMObject
+ void takeControl( ); // overrides ComputationManager
+ void start( ) { }; // overrides ComputationManager
+ void terminate( ) { }; // overrides ComputationManager
+private:
+ SMSubgroup& theSubgroup;
+ SMWord& theWord;
+ MirrorSubordinate abelianInvariants;
+};
+
+// ------------------------ WordInSGBasisOfAbelian ------------------------- //
+
+class WordInSGBasisOfAbelian : public Supervisor
+{
+public:
+ WordInSGBasisOfAbelian(class SMSubgroup& S, class SMWord& w);
+ void viewStructure(ostream& ostr) const; // overrides SMObject
+ void takeControl( ); // overrides ComputationManager
+ void start( ) { }; // overrides ComputationManager
+ void terminate( ) { }; // overrides ComputationManager
+private:
+ SMSubgroup& theSubgroup;
+ SMWord& theWord;
+ MirrorSubordinate abelianSGInvariants;
+};
+
// ------------------- AbelianIsSGEqualToTheGroup -------------------------- //
-
class AbelianIsSGEqualToTheGroup : public Supervisor
{
@@ -552,10 +621,8 @@
MirrorSubordinate abelianInvariants;
};
-
// ---------------------- AbelianSGIndexProblem ---------------------------- //
-
class AbelianSGIndexProblem : public Supervisor
{
@@ -694,7 +761,6 @@
/////////////////////////////////////////////////////////////////////////
AbelianSGContainmentProblem(class SMSubgroup& S1, class SMSubgroup& S2);
-
/////////////////////////////////////////////////////////////////////////
// //
@@ -744,10 +810,26 @@
MirrorSubordinate abelianInvariants;
};
+// ------------------- AbelianSGDirectFactorProblem ----------------------- //
+class AbelianSGDirectFactorProblem : public Supervisor
+{
+public:
+ AbelianSGDirectFactorProblem(SMSubgroup& S1, SMSubgroup& S2);
+ void viewStructure(ostream& ostr) const;
+ void takeControl( );
+ void start( ) { };
+ void terminate( ) { };
+private:
+ SMSubgroup& subgroup1;
+ SMSubgroup& subgroup2;
+ MirrorSubordinate abelianSGInvariants1;
+ MirrorSubordinate abelianSGInvariants2;
+ bool sgDone1, sgDone2;
+};
+
// -------------------- FindCanonicalSmithPresentation --------------------- //
-
class FindCanonicalSmithPresentation : public Supervisor
{
@@ -814,9 +896,8 @@
};
-// -------------------- AbelianPHeightOfEltProblem --------------------------- //
+// ------------------- AbelianPHeightOfEltProblem ------------------------- //
-
class AbelianPHeightOfEltProblem : public Supervisor
{
public:
@@ -872,8 +953,8 @@
MirrorSubordinate abelianInvariants;
MirrorSubordinate abelianPrimes;
};
-//-------------- AbelianOrderOfTheTorsionSubgroupProblem --------------------//
+//-------------- AbelianComputeTorsionSubgroup --------------------//
class AbelianComputeTorsionSubgroup : public Supervisor
{
@@ -927,8 +1008,8 @@
MirrorSubordinate abelianInvariants;
};
-// ---------------------- AbelianEltPowerSubgrARCer --------------------------- //
+// ---------------------- AbelianEltPowerSubgrARCer ----------------------- //
class AbelianEltPowerSubgrARCer : public ARCer
{
@@ -1150,9 +1231,10 @@
MirrorSubordinate abelianInvariants;
MirrorSubordinate abelianPrimes;
};
-// ---------------------- AbelianInvariantsOfSGARCer --------------------------- //
+// -------------------- AbelianInvariantsOfSGARCer ------------------------- //
+
class AbelianInvariantsOfSGARCer : public ARCer
{
public:
@@ -1214,7 +1296,7 @@
};
-// -------------------------- AbelianSGInvariants ---------------------------- //
+// ------------------------ AbelianSGInvariants ---------------------------- //
class AbelianSGInvariants : public ComputationManager
@@ -1325,7 +1407,6 @@
};
// ---------------------- AbelianPrimesOfSGARCer --------------------------- //
-
class AbelianPrimesOfSGARCer : public ARCer
{
public:
@@ -1493,6 +1574,8 @@
};
+// ---------------------- AbelianSGOrder ------------------------- //
+
class AbelianSGOrder : public Supervisor
{
public:
@@ -1531,7 +1614,6 @@
void terminate( ) { }; // overrides ComputationManager
-
private:
/////////////////////////////////////////////////////////////////////////
@@ -1548,9 +1630,8 @@
};
-// ---------------------- AbelianMaximalRootARCer --------------------------- //
+// ---------------------- AbelianMaximalRootARCer ------------------------- //
-
class AbelianMaximalRootARCer : public ARCer
{
public:
@@ -1829,8 +1910,8 @@
MirrorSubordinate abelianSGInvariants;
};
-//-------------- AbelianOrderOfTheTorsionSubgroupOfSG --------------------//
+//-------------- AbelianOrderOfTheTorsionSubgroupOfSG -------------------- //
class AbelianOrderOfTheTorsionSubgroupOfSG : public Supervisor
{
@@ -1886,6 +1967,7 @@
MirrorSubordinate abelianSGInvariants;
};
+
class EltPrimeForm : public Supervisor
{
public:
@@ -1938,7 +2020,6 @@
MirrorSubordinate abelianPrimes;
MirrorSubordinate abelianInvariants;
bool abDone;
-
};
@@ -2288,13 +2369,13 @@
SMSubgroup& theSubgroup;
+ MirrorSubordinate abelianInvariants;
MirrorSubordinate abelianPrimes;
- MirrorSubordinate abelianInvariants;
MirrorSubordinate abelianSGInvariants;
bool abDone;
bool PDDone;
bool sgAbDone;
- AbelianSGPurityARCer arcer;
+ AbelianSGPurityARCer arcer;
};
class AbelianSGGenedByWordPurityProblem : public Supervisor
@@ -2345,7 +2426,7 @@
/////////////////////////////////////////////////////////////////////////
SMWord& theWord;
-
+ SMFPGroup& theGroup;
MirrorSubordinate abelianPrimes;
MirrorSubordinate abelianInvariants;
bool abDone;
@@ -2401,7 +2482,7 @@
/////////////////////////////////////////////////////////////////////////
SMWord& theWord;
-
+ SMFPGroup& theGroup;
MirrorSubordinate abelianPrimes;
MirrorSubordinate abelianInvariants;
bool abDone;
@@ -2409,7 +2490,6 @@
// ------------------- AbelianSGEqualityProblem ------------------------- //
-
class AbelianSGEqualityProblem : public Supervisor
{
@@ -2475,7 +2555,7 @@
MirrorSubordinate s2AbelianInvariantsOfFactor;
};
-// ---------------------- IsAbelianWordPowerOfSecondArcer --------------------------- //
+// ----------------- IsAbelianWordPowerOfSecondArcer ---------------------- //
class IsAbelianWordPowerOfSecondArcer : public ARCer
{
@@ -2691,6 +2771,7 @@
MirrorSubordinate abelianHomIsEpi;
};
+
class AbelianHomIsMonoComp : public ComputationManager
{
public:
@@ -3446,7 +3527,7 @@
AbelianGroup result;
};
-// ----------------------- AbelianIntegralHomologyProblem -------------------------- //
+// -------------------- AbelianIntegralHomologyProblem -------------------- //
class AbelianIntegralHomologyProblem : public Supervisor
{
@@ -3506,11 +3587,77 @@
int d;
MirrorSubordinate abelianInvariants;
-
+
AbelianIntegralHomologyARCer arcer;
};
-#endif
+class IsAbelianHyperbolic : public Supervisor
+{
+public:
+ IsAbelianHyperbolic(SMFPGroup& G);
+ void viewStructure(ostream& ostr) const; // overrides SMObject
+ void takeControl( ); // overrides ComputationManager
+ void start( ) { }; // overrides ComputationManager
+ void terminate( ) { }; // overrides ComputationManager
+private:
+ SMFPGroup& theGroup;
+ MirrorSubordinate abelianInvariants;
+};
+class AbelianIsSGFinite : public Supervisor
+{
+public:
+ AbelianIsSGFinite(SMSubgroup& g);
+ void viewStructure(ostream& ostr) const; // overrides SMObject
+ void takeControl( ); // overrides ComputationManager
+ void start( ) { }; // overrides ComputationManager
+ void terminate( ) { }; // overrides ComputationManager
+private:
+ SMFPGroup& theGroup;
+ SMSubgroup& theSubgroup;
+ MirrorSubordinate abelianInvariants;
+};
+class AbelianIsSGFreeAbelian : public Supervisor
+{
+public:
+ AbelianIsSGFreeAbelian(SMSubgroup& g);
+ void viewStructure(ostream& ostr) const; // overrides SMObject
+ void takeControl( ); // overrides ComputationManager
+ void start( ) { }; // overrides ComputationManager
+ void terminate( ) { }; // overrides ComputationManager
+private:
+ SMSubgroup& theSubgroup;
+ MirrorSubordinate abelianSGInvariants;
+};
+
+class AbelianIsSGHyperbolic : public Supervisor
+{
+public:
+ AbelianIsSGHyperbolic(SMSubgroup& g);
+ void viewStructure(ostream& ostr) const; // overrides SMObject
+ void takeControl( ); // overrides ComputationManager
+ void start( ) { }; // overrides ComputationManager
+ void terminate( ) { }; // overrides ComputationManager
+private:
+ SMSubgroup& theSubgroup;
+ MirrorSubordinate abelianSGInvariants;
+};
+
+//-------------- AbelianComputeTorsionSubgroup --------------------//
+
+class AbelianComputeTorsionSubgroupOfSG : public Supervisor
+{
+public:
+ AbelianComputeTorsionSubgroupOfSG(class SMSubgroup& g);
+ void viewStructure(ostream& ostr) const; // overrides SMObject
+ void takeControl( ); // overrides ComputationManager
+ void start( ) { }; // overrides ComputationManager
+ void terminate( ) { }; // overrides ComputationManager
+private:
+ SMSubgroup& theSubgroup;
+ MirrorSubordinate abelianSGInvariants;
+};
+
+#endif
Modified: branches/daly/version10/back_end/SMApps/src/WhiteheadMinimal.C
===================================================================
--- branches/daly/version10/back_end/SMApps/src/WhiteheadMinimal.C 2007-05-02 19:11:29 UTC (rev 236)
+++ branches/daly/version10/back_end/SMApps/src/WhiteheadMinimal.C 2007-05-14 19:28:42 UTC (rev 237)
@@ -109,17 +109,17 @@
void FindWhiteheadMinimalProblem::viewStructure(ostream& ostr) const
{
- ProblemView pv( ostr, oid(), "Find a Whitehead minimal",
- Text("Find a Whitehead minimal of ") + Name( theTuple )
- + + "?",
- helpID("FindWhiteheadMinimalProblem", theTuple.getParent()),
+ ProblemView pv( ostr, oid(), Text("Find a Whitehead minimal"),
+ Text("Find a Whitehead minimal of ") + Name( theTuple )
+ + + "?",
+ helpID("FindWhiteheadMinimalProblem", theTuple.getParent()),
"Wh min"
);
pv.startItemGroup();
// pv.add("For the use of the Whitehead algorithm", freeIsPartOfBasis.arcSlotID(), 100);
- pv.add("For the use of the genetic algorithm", ThisARCSlotID(), 100);
+ pv.add(Text("For the use of the genetic algorithm"), ThisARCSlotID(), 100);
pv.done();
}
Modified: branches/daly/version10/back_end/SMApps/src/WordProblem.C
===================================================================
--- branches/daly/version10/back_end/SMApps/src/WordProblem.C 2007-05-02 19:11:29 UTC (rev 236)
+++ branches/daly/version10/back_end/SMApps/src/WordProblem.C 2007-05-14 19:28:42 UTC (rev 237)
@@ -176,13 +176,13 @@
theWord.wic.putIsTrivial(theAnswer,explanation);
}
if (nilpotentWPInQuotients->state() == ComputationManager::TERMINATED)
- if (nilpotentWPInQuotients->isTrivial()==no){
- int retClass;
- theAnswer = nilpotentWPInQuotients->isTrivial(retClass);
- std::ostrstream msgTmp;
- msgTmp << " because it's not trivial in lower central quotient of class "
- << retClass << ends;
- explanation = msgTmp.str();
+ if (nilpotentWPInQuotients->isTrivial()==no){
+ int retClass;
+ theAnswer = nilpotentWPInQuotients->isTrivial(retClass);
+ std::ostrstream msgTmp;
+ msgTmp << " because it's not trivial in lower central quotient of class "
+ << retClass << ends;
+ explanation = msgTmp.str();
theWord.wic.putIsTrivial(theAnswer,explanation);
}
}
@@ -208,10 +208,10 @@
Chars explanation = theChecker.getExplanation();
if ( theWord.getParent().gic.isAbelian() == yes){
- std::ostrstream msgTmp;
- msgTmp << "because it's canonical decomposition is ";
+ std::ostrstream msgTmp;
+ msgTmp << "because it's canonical decomposition is ";
- const AbelianGroup& A =
+ const AbelianGroup& A =
theWord.getParent().gic.getCyclicDecomposition();
A.printWordInNewGens(msgTmp,A.oldToNewGens
@@ -362,38 +362,38 @@
void WordProblem::viewStructure(ostream& ostr) const
{
- ProblemView pv( ostr, oid(), "Word problem",
- Text("Is") + Name( theWord ) + "trivial in"
- + Name( Parent( theWord ) ) + "?",
- helpID( "WordProblem", theWord.getParent() ),
- Text(Name(theWord)) + "= 1 ?"
- );
+ ProblemView pv( ostr, oid(), Text("Word problem"),
+ Text("Is") + Name( theWord ) + Text("trivial in")
+ + Name( Parent( theWord ) ) + Text("?"),
+ helpID( "WordProblem", theWord.getParent() ),
+ Text(Name(theWord)) + Text("= 1 ?")
+ );
pv.startItemGroup();
- pv.add("For the use of this problem", ThisARCSlotID(), 50);
+ pv.add(Text("For the use of this problem"), ThisARCSlotID(), 50);
pv.add(Text("Compute abelian invariants of") + Name( Parent( theWord ) ),
- abelianInvariants.arcSlotID(),
+ abelianInvariants.arcSlotID(),
15
);
pv.startItemGroup( CheckinType( Parent( theWord ) ) ==
- SMFPGroup::ONE_RELATOR);
+ SMFPGroup::ONE_RELATOR);
- pv.add("Compute the Magnus breakdown", orwp.arcSlotID(), 50);
+ pv.add(Text("Compute the Magnus breakdown"), orwp.arcSlotID(), 50);
pv.startItemGroup( CheckinType( Parent( theWord ) ) != SMFPGroup::ABELIAN );
pv.startItemGroup( CheckinType( Parent( theWord ) ) != SMFPGroup::ABELIAN &&
CheckinType( Parent( theWord ) ) != SMFPGroup::NILPOTENT &&
- CheckinType( Parent( theWord ) ) != SMFPGroup::FREE_NILPOTENT
- );
+ CheckinType( Parent( theWord ) ) != SMFPGroup::FREE_NILPOTENT
+ );
- pv.add("Enumerate normal closure of relators",
- normalClosure.arcSlotID(), 50);
+ pv.add(Text("Enumerate normal closure of relators"),
+ normalClosure.arcSlotID(), 50);
pv.add(Text("Seek a rewriting system for") + Name( Parent( theWord ) ),
kbSupervisor.arcSlotID(),
Modified: branches/daly/version10/back_end/SMApps/src/fastProblems.C
===================================================================
--- branches/daly/version10/back_end/SMApps/src/fastProblems.C 2007-05-02 19:11:29 UTC (rev 236)
+++ branches/daly/version10/back_end/SMApps/src/fastProblems.C 2007-05-14 19:28:42 UTC (rev 237)
@@ -59,7 +59,6 @@
#include "APwithOneRelator.h"
#include "RipsConstruction.h"
-
//#define ATS
@@ -71,10 +70,10 @@
void FastComputation::viewStructure(ostream& ostr) const
{
//#ifdef ATS
- ProblemView pv( ostr, oid(), "Temporary",
- Text("Temporary"),
- "none",
- "Temporary"
+ ProblemView pv( ostr, oid(), Text("Temporary"),
+ Text("Temporary"),
+ "none",
+ "Temporary"
);
pv.startItemGroup();
@@ -249,10 +248,10 @@
SMObject* smo =
new SMWord( theGroup,
- theGroup.getFreePreimage().getN_thElement(theNumber),
- Text("The") + s + Text("- th element of")
- + Name( theGroup )
- );
+ theGroup.getFreePreimage().getN_thElement(theNumber),
+ Text("The") + Text(s) + Text("- th element of")
+ + Name( theGroup )
+ );
ListOf<OID> dependencies( theGroup );
CheckinMessage( *smo, "", dependencies ).send();
@@ -577,11 +576,11 @@
{
SMObject* smo =
new SMWord( word.getParent(),
- subgroup.getSubgroup()
- .rightSchreierRepresentative( word.getWord() ),
- Text("The right Schreier representative of") + Name( word )
- + "mod" + Name( subgroup )
- );
+ subgroup.getSubgroup()
+ .rightSchreierRepresentative( word.getWord() ),
+ Text("The right Schreier representative of") + Name( word )
+ + Text("mod") + Name( subgroup )
+ );
ListOf<OID> dependencies( word.getParent() );
CheckinMessage( *smo, "", dependencies ).send();
@@ -600,7 +599,6 @@
msg.send();
}
-
void SGOfFreeAreEqual::takeControl( )
{
LogMessage msg( subgroup1, subgroup2 );
@@ -614,42 +612,35 @@
msg.send();
}
-
-
-
-
void SGOfFreeJoin::takeControl( )
{
SGofFreeGroup S2 = subgroup2.getSubgroup();
SMObject* smo =
new SMSubgroup( subgroup1.getParent(),
- subgroup1.getSubgroup().join( S2 ),
- Text("The join of") + Name( subgroup1 ) + "and"
- + Name( subgroup2 )
- );
+ subgroup1.getSubgroup().join( S2 ),
+ Text("The join of") + Name( subgroup1 ) + Text("and")
+ + Name( subgroup2 )
+ );
ListOf<OID> dependencies( subgroup1.getParent() );
CheckinMessage( *smo, "", dependencies ).send();
}
-
-
void SGOfFreeIntersection::takeControl( )
{
SGofFreeGroup S2 = subgroup2.getSubgroup();
SMObject* smo =
new SMSubgroup( subgroup1.getParent(),
- subgroup1.getSubgroup()
- .intersection( S2 ),
- Text("The intersection of") + Name( subgroup1 ) + "and"
- + Name( subgroup2 )
- );
+ subgroup1.getSubgroup()
+ .intersection( S2 ),
+ Text("The intersection of") + Name( subgroup1 ) + Text("and")
+ + Name( subgroup2 )
+ );
ListOf<OID> dependencies( subgroup1.getParent() );
CheckinMessage( *smo, "", dependencies ).send();
}
-
void SGOfFreeIsNormal::takeControl( )
{
LogMessage msg( subgroup );
@@ -680,7 +671,6 @@
msg.send();
}
-
// Conjugates each word of the given vector with the word `w'.
// This is duplicate of static function in SGofFreeGroup.C
// @dp: This function is for SGOfFreeIsMalnormal::takeControl() only.
@@ -700,22 +690,24 @@
SGofFreeGroup S = subgroup.getSubgroup();
if ( S.isMalnormal( conjugator ) )
- msg << Name( subgroup ) << " is malnormal in " << Name( Parent( subgroup ) ) << ".";
+ msg << Name( subgroup ) << " is malnormal in "
+ << Name( Parent( subgroup ) ) << ".";
else {
FPGroup G = subgroup.getParent().getFPGroup();
SGofFreeGroup S1( FreeGroup(G.numberOfGenerators()),
- conjugateBy(S.generators(), conjugator) );
+ conjugateBy(S.generators(), conjugator) );
SGofFreeGroup S2 = S.intersection( S1 );
- msg << Name( subgroup ) << " is not malnormal in " << Name( Parent( subgroup ) )
- << " because an intersection of " << Name( subgroup ) << " and "
- << Name( subgroup ) << " conjugated by ";
+ msg << Name( subgroup ) << " is not malnormal in "
+ << Name( Parent( subgroup ) ) << " because an intersection of "
+ << Name( subgroup ) << " and "
+ << Name( subgroup ) << " conjugated by ";
G.printWord( msg, conjugator );
msg << " is not trivial. The intersection is gp( ";
int numOfGens = S2.generators().length();
for( int i = min( 4, numOfGens-1 ); i >= 0; --i ) {
G.printWord( msg, S2.generators()[i] );
if( i != 0)
- msg << ", ";
+ msg << ", ";
}
if( numOfGens > 5 )
msg << ", ...";
@@ -731,8 +723,8 @@
msg << "A surface form of " << Name( equation ) << " : ";
QEqnSolutionsInFreeGroup solver( equation.getFreeGroup(), equation.getWord(),
- equation.numberOfVariables()
- );
+ equation.numberOfVariables()
+ );
Word surf = solver.surfaceForm();
equation.getFreeGroup().printWord( msg, surf );
msg << ".";
@@ -753,11 +745,11 @@
SGofFreeGroup sg(vect.getParent().getFreePreimage(), vect.getWords());
VectorOf<Word> answer = sg.findWhiteheadBasis();
SMObject* smo =
- new SMVectorOfWords( vect.getParent(),
- answer,
- Text("A Whitehead reduction of tuple")
- + Name( vect )
- );
+ new SMVectorOfWords( vect.getParent(),
+ answer,
+ Text("A Whitehead reduction of tuple")
+ + Name( vect )
+ );
ListOf<OID> dependencies( vect.getParent() );
CheckinMessage( *smo, "", dependencies ).send();
@@ -788,11 +780,11 @@
// Make link to the file with computed nielsen basis.
LogMessage msg( subgroup );
msg << Link( Chars("Click here to see the generators of a Nielsen basis of ")+
- Text( Name(subgroup) ),
- "NielsenBasis",
- file.getFileName()
- )
- << ".";
+ Text( Name(subgroup) ),
+ "NielsenBasis",
+ file.getFileName()
+ )
+ << ".";
msg.send();
}
@@ -800,11 +792,11 @@
// Make link to the file with details of computation of nielsen basis.
LogMessage msg( subgroup );
msg << Link( Chars("Click here to see computation details of a Nielsen basis of ")
- + Text( Name(subgroup) ),
- "NielsenBasisDetails",
- nielsenBasisProblem.getFileName()
- )
- << ".";
+ + Text( Name(subgroup) ),
+ "NielsenBasisDetails",
+ nielsenBasisProblem.getFileName()
+ )
+ << ".";
msg.send();
}
}
@@ -816,11 +808,11 @@
msg << Name( subgroup ) << " has ";
int index = subgroup.getSubgroup().findIndex();
if ( index == 0 )
- msg << "infinite index";
+ msg << "infinite index";
else
- msg << "index " << index;
+ msg << "index " << index;
msg << " in " << Name( Parent( subgroup ) ) << ".";
-
+
msg.send();
}
@@ -836,14 +828,11 @@
void SGOfFreeNormaliser::takeControl( )
{
SMObject* smo =
- new SMSubgroup( subgroup.getParent(),
- SGofFreeGroup(subgroup.getParent().getFreePreimage(),
- subgroup.getSubgroup().normalizer()
- ),
- Text("The normaliser of") + Name( subgroup ) + "in"
- + Name( Parent( subgroup ) )
- );
-
+ new SMSubgroup( subgroup.getParent(),
+ SGofFreeGroup(subgroup.getParent().getFreePreimage(),
+ subgroup.getSubgroup().normalizer() ),
+ Text("The normaliser of") + Name( subgroup ) + Text("in")
+ + Name( Parent( subgroup ) ) );
ListOf<OID> dependencies( subgroup.getParent() );
CheckinMessage( *smo, "", dependencies ).send();
}
@@ -852,17 +841,38 @@
void SGOfFreeHallCompletion::takeControl( )
{
SMObject* smo =
- new SMSubgroup( subgroup.getParent(),
- subgroup.getSubgroup().MHallCompletion(),
- Text("A finite index subgroup of")
- + Name( Parent( subgroup ) ) + "with"
- + Name( subgroup ) + "as a free factor"
- );
-
+ new SMSubgroup( subgroup.getParent(),
+ subgroup.getSubgroup().MHallCompletion(),
+ Text("A finite index subgroup of")
+ + Name( Parent( subgroup ) ) + "with"
+ + Name( subgroup ) + Text("as a free factor") );
ListOf<OID> dependencies( subgroup.getParent() );
CheckinMessage( *smo, "", dependencies ).send();
}
+void NormalApproximationProblem::takeControl()
+{
+ SMFPGroup& G = subgroup.getParent();
+ VectorOf<Word> v = subgroup.getSubgroup().generators();
+ SetOf<Word> s;
+ for(int i=0; i<v.length(); i++) s |= v[i];
+ for(int i=1; i<=level; i++) {
+ Word w = G.getFreePreimage().getN_thElement(i);
+ SetOf<Word> s1;
+ SetIterator<Word> I(s);
+ for(I.reset(); !I.done(); I.next()) s1 |= (w*I.value()*w.inverse()).freelyReduce();
+ s |= s1;
+ }
+ VectorOf<Word> v1;
+ SetIterator<Word> I(s);
+ for(I.reset(); !I.done(); I.next()) v1.append(I.value());
+ SMObject* smo =
+ new SMSubgroup( G, SGofFreeGroup(G.getFreePreimage(), v1),
+ Text(level) + "-th Normal Approximation of"
+ + Name(subgroup) );
+ ListOf<OID> dependencies( G );
+ CheckinMessage( *smo, "", dependencies ).send();
+}
void FreeIsSGTrivial::takeControl( )
{
@@ -890,7 +900,15 @@
msg.send();
}
+void FreeIsHyperbolic::takeControl( )
+{
+ LogMessage msg( group );
+ msg << "Free groups are hyperbolic.";
+
+ msg.send();
+}
+
//---------------------------------------------------------------------------//
//---------------------- Misc Fast Computations -----------------------------//
//---------------------------------------------------------------------------//
@@ -927,11 +945,11 @@
void FormalInverseOfWord::takeControl( )
{
SMObject* smo =
- new SMWord( theWord.getParent(),
- theWord.getWord().inverse(),
- Text("The inverse of") + Name( theWord )
- );
-
+ new SMWord( theWord.getParent(),
+ theWord.getWord().inverse(),
+ Text("The inverse of") + Name( theWord )
+ );
+
ListOf<OID> dependencies( theWord.getParent() );
CheckinMessage( *smo, "", dependencies ).send();
}
@@ -958,10 +976,10 @@
SMObject* smo =
new SMWord( theWord.getParent(),
- w.initialSegment( trueLen ),
- Text("The ") + Text(s) + Text("-th initial segment of ")
- + Name( theWord )
- );
+ w.initialSegment( trueLen ),
+ Text("The ") + Text(s) + Text("-th initial segment of ")
+ + Name( theWord )
+ );
ListOf<OID> dependencies( theWord.getParent() );
CheckinMessage( *smo, "", dependencies ).send();
@@ -978,10 +996,10 @@
SMObject* smo =
new SMWord( theWord.getParent(),
- w.terminalSegment( trueLen ),
- Text("The ") + Text(s) + Text("-th terminal segment of ")
- + Name( theWord )
- );
+ w.terminalSegment( trueLen ),
+ Text("The ") + Text(s) + Text("-th terminal segment of ")
+ + Name( theWord )
+ );
ListOf<OID> dependencies( theWord.getParent() );
CheckinMessage( *smo, "", dependencies ).send();
@@ -1004,18 +1022,18 @@
// SMObject* smo =
// new SMWord( theWord.getParent(),
- // w.subword(start-1, stop),
- // Text("The [") + startPos + Text(";") + stopPos
- // + Text("] segment of ") + Name( theWord )
- // );
+ // w.subword(start-1, stop),
+ // Text("The [") + startPos + Text(";") + stopPos
+ // + Text("] segment of ") + Name( theWord )
+ // );
SMObject* smo =
new SMWord( theWord.getParent(),
- w.subword(start-1, stop),
- Text("User defined a subword of length") + lenText
- + Text("(starting from") + startText + Text(") of")
- + Name( theWord )
- );
+ w.subword(start-1, stop),
+ Text("User defined a subword of length") + lenText
+ + Text("(starting from") + startText + Text(") of")
+ + Name( theWord )
+ );
ListOf<OID> dependencies( theWord.getParent() );
CheckinMessage( *smo, "", dependencies ).send();
@@ -1033,15 +1051,12 @@
sprintf(s,"%u", theNumber );
SMObject* smo =
- new SMWord( theGroup,
- F.getN_thElement(number),
- Text("The") + s + Text("- th element of")
- + Name( theGroup ) + Text("(after the word")
- + Name(theWord) + Text("in lex order)")
- );
-
+ new SMWord( theGroup, F.getN_thElement(number),
+ Text("The") + Text(s) + Text("- th element of")
+ + Name( theGroup ) + Text("(after the word")
+ + Name(theWord) + Text("in lex order)") );
ListOf<OID> dependencies( theGroup );
- CheckinMessage( *smo, "", dependencies ).send();
+ CheckinMessage( *smo, "", dependencies ).send();
}
@@ -1050,12 +1065,10 @@
void FormalProductOfWords::takeControl( )
{
SMObject* smo =
- new SMWord( word1.getParent(),
- (word1.getWord() * word2.getWord()).freelyReduce(),
- Text("The product of") + Name( word1 )
- + "and" + Name( word2 )
- );
-
+ new SMWord( word1.getParent(),
+ (word1.getWord() * word2.getWord()).freelyReduce(),
+ Text("The product of") + Name( word1 )
+ + Text("and") + Name( word2 ) );
ListOf<OID> dependencies( word1.getParent() );
CheckinMessage( *smo, "", dependencies ).send();
}
@@ -1064,10 +1077,10 @@
{
SMObject* smo =
new SMWord( theWord1.getParent(),
- (theWord2.getWord().inverse() * theWord1.getWord() * theWord2.getWord()).freelyReduce(),
- Text("The conjugate of") + Name( theWord1 )
- + Text("by") + Name( theWord2 )
- );
+ (theWord2.getWord().inverse() * theWord1.getWord()
+ * theWord2.getWord()).freelyReduce(),
+ Text("The conjugate of") + Name( theWord1 )
+ + Text("by") + Name( theWord2 ) );
ListOf<OID> dependencies( theWord1.getParent() );
CheckinMessage( *smo, "", dependencies ).send();
@@ -1077,10 +1090,10 @@
{
SMObject* smo =
new SMWord( theWord1.getParent(),
- (theWord1.getWord().inverse() * theWord2.getWord().inverse() * theWord1.getWord() * theWord2.getWord()).freelyReduce(),
- Text("The commutator of") + Name( theWord1 )
- + Text("and") + Name( theWord2 )
- );
+ (theWord1.getWord().inverse() * theWord2.getWord().inverse()
+ * theWord1.getWord() * theWord2.getWord()).freelyReduce(),
+ Text("The commutator of") + Name( theWord1 )
+ + Text("and") + Name( theWord2 ) );
ListOf<OID> dependencies( theWord1.getParent() );
CheckinMessage( *smo, "", dependencies ).send();
@@ -1099,12 +1112,8 @@
while ( --count ) result = composition(m, result);
SMObject* smo =
- new SMMap( map.getDomain(),
- map.getRange(),
- result,
- Text("The map") + Name( map ) + "to the power" + power
- );
-
+ new SMMap( map.getDomain(), map.getRange(), result,
+ Text("The map") + Name( map ) + Text("to the power") + power );
ListOf<OID> dependencies( map.getDomain() );
dependencies.append( map.getRange() );
CheckinMessage( *smo, "", dependencies ).send();
@@ -1114,12 +1123,10 @@
void ComposeMaps::takeControl( )
{
if( map1.getDomain().oid() == map2.getRange().oid() ) {
-
SMHomomorphism* smo = new SMHomomorphism
( map1.getDomain(),
- composition( map2.getMap(), map1.getMap() ),
- Text("The composition") + Name( map2 ) + Text(Name( map1 ))
- );
+ composition( map2.getMap(), map1.getMap() ),
+ Text("The composition") + Name( map2 ) + Text(Name( map1 )) );
ListOf<OID> dependencies( map1.getDomain() );
CheckinMessage( *smo, "", dependencies ).send();
@@ -1131,7 +1138,7 @@
(
map1.getDomain(),
map2.getRange(),
- composition( map2.getMap(), map1.getMap() ),
+ composition( map2.getMap(), map1.getMap() ),
Text("The composition") + Name( map2 ) + Text(Name( map1 ))
);
@@ -1172,12 +1179,12 @@
{
Word tmpWord = map.getMap().imageOf( word.getWord() );
if ( map.getRange().gic.isAbelian()==yes)
- tmpWord = AbelianWord( map.getRange().getFPGroup().numberOfGenerators(),
- tmpWord ).getWord();
+ tmpWord = AbelianWord( map.getRange().getFPGroup().numberOfGenerators(),
+ tmpWord ).getWord();
SMObject* smo =
new SMWord( map.getRange(),tmpWord,
- Text("The image of") + Name( word ) + "under" + Name( map )
- );
+ Text("The image of") + Name( word ) + "under" + Name( map )
+ );
ListOf<OID> dependencies( map.getRange() );
CheckinMessage( *smo, "", dependencies ).send();
@@ -1226,8 +1233,8 @@
SMFPGroup* smo =
new SMFPGroup( FPGroup( temp.namesOfGenerators(), temp.getRelators() ),
- Text("Extension of") + Name(theGroup) + "by" + Name(theMap)
- );
+ Text("Extension of") + Name(theGroup) + "by" + Name(theMap)
+ );
smo->gic.putIsFreeByCyclic( theGroup.getFreePreimage(), theMap.getMap() );
@@ -1364,9 +1371,9 @@
if ( lambda < 6 && lambda != 0 ) {
msg << "The presentation of " << Name( theGroup )
- << " is not metric small cancellation; it is only C'(1/"
- << lambda << ')';
-
+ << " is not metric small cancellation; it is only C'(1/"
+ << lambda << ')';
+ msg.send();
} else {
File file;
@@ -1457,6 +1464,45 @@
}
+void SubgroupJoin::takeControl( )
+{
+ SetOf<Word> S(makeSetOf(subgroup2.getSubgroup().generators()));
+ VectorOf<Word> gensS1 = subgroup1.getSubgroup().generators();
+ for (int i=0;i<gensS1.length();i++)
+ S |= gensS1[i];
+
+ SGofFreeGroup SG( subgroup1.getSubgroup().parentGroup(), makeVectorOf(S) );
+
+ SMObject* smo =
+ new SMSubgroup( subgroup1.getParent(), SG,
+ Text("The join of") + Name( subgroup1 ) + "and"
+ + Name( subgroup2 )
+ );
+
+ ListOf<OID> dependencies( subgroup1.getParent() );
+ CheckinMessage( *smo, "", dependencies ).send();
+}
+
+
+void SubgroupConjugateBy::takeControl( )
+{
+ VectorOf<Word> result(theSubgroup.getSubgroup().generators());
+
+ for( int i = 0; i < result.length(); ++i )
+ result[i] = Word( Word(result[i]).conjugateBy(theWord.getWord()) ).freelyReduce();
+
+ SGofFreeGroup SG( theSubgroup.getSubgroup().parentGroup(), result );
+
+ SMObject* smo =
+ new SMSubgroup( theSubgroup.getParent(), SG,
+ Text(Name( theSubgroup )) + Text("conjugated by") + Name( theWord )
+ );
+
+ ListOf<OID> dependencies( theSubgroup.getParent() );
+ CheckinMessage( *smo, "", dependencies ).send();
+}
+
+
//--------------------- Abelian Group Computations --------------------------//
@@ -1500,12 +1546,10 @@
SMObject* smo =
new SMWord( word1.getParent(),
- A.oldInAbelianForm( word1.getWord() * word2.getWord() )
- .getWord(),
- Text("The product of") + Name( word1 )
- + "and" + Name( word2 )
- );
-
+ A.oldInAbelianForm( word1.getWord() * word2.getWord() )
+ .getWord(),
+ Text("The product of") + Name( word1 )
+ + Text("and") + Name( word2 ));
ListOf<OID> dependencies( word1.getParent() );
CheckinMessage( *smo, "", dependencies ).send();
@@ -1515,18 +1559,28 @@
{
AbelianGroup A(subgroup1.getParent().getFPGroup());
SGofFreeGroup S2(subgroup1.getParent().getFreePreimage(),
- A.joinSubgroups(subgroup1.getSubgroup().generators(),subgroup2.getSubgroup().generators()));
+ A.joinSubgroups(subgroup1.getSubgroup().generators(),
+ subgroup2.getSubgroup().generators()));
SMObject* smo = new SMSubgroup( subgroup1.getParent(),S2,
- Text("The join of") + Name( subgroup1 ) + "and"
- + Name( subgroup2 )
- );
-
+ Text("The join of") + Name( subgroup1 )
+ + Text("and") + Name( subgroup2 ) );
ListOf<OID> dependencies( subgroup1.getParent() );
CheckinMessage( *smo, "", dependencies ).send();
}
//----------------------- MSC Group Computations ----------------------------//
+void AbelianIsAutomatic::takeControl()
+{
+ LogMessage("All abelian groups are automatic.").send();
+}
+void AbelianIsConfluent::takeControl()
+{
+ LogMessage("All abelian groups have a confluent rewriting system.").send();
+}
+
+//----------------------- MSC Group Computations ----------------------------//
+
void MSCOrder::takeControl( )
{
if( theGroup.gic.haveOrder() )
@@ -1535,7 +1589,6 @@
theGroup.gic.putHaveOrder( theGroup.gic.getMSC().order() );
}
-
void MSCIsTrivial::takeControl( )
{
bool answer = ( theGroup.gic.getMSC().isTrivial() == yes );
@@ -1952,10 +2005,10 @@
SMHomomorphism2* hom1 = new SMHomomorphism2
( theGroup, *smo,
- Map( theGroup.getFPGroup(), smo->getFPGroup(), v1 ),
- Text("The isomorphism from generators of") + Name(theGroup)
- + "to" + Name(*smo)
- );
+ Map( theGroup.getFPGroup(), smo->getFPGroup(), v1 ),
+ Text("The isomorphism from generators of") + Name(theGroup)
+ + Text("to") + Name(*smo)
+ );
dependencies = ListOf<OID>( theGroup );
dependencies.append( *smo );
@@ -1964,10 +2017,10 @@
SMHomomorphism2* hom2 = new SMHomomorphism2
( *smo, theGroup,
- Map( smo->getFPGroup(), theGroup.getFPGroup(), v2 ),
- Text("The isomorphism from generators of") + Name(*smo)
- + "to" + Name(theGroup)
- );
+ Map( smo->getFPGroup(), theGroup.getFPGroup(), v2 ),
+ Text("The isomorphism from generators of") + Name(*smo)
+ + Text("to") + Name(theGroup)
+ );
dependencies = ListOf<OID>( *smo );
dependencies.append( theGroup );
@@ -2039,9 +2092,9 @@
SMHomomorphism2* hom = new SMHomomorphism2
( pGroup, *smo, Map( pGroup.getFPGroup(), smo->getFPGroup(), v),
- Text("The homomorphism from generators of") + Name(pGroup)
- + "to" + Name(*smo)
- );
+ Text("The homomorphism from generators of") + Name(pGroup)
+ + Text("to") + Name(*smo)
+ );
dependencies = ListOf<OID>( pGroup );
dependencies.append( *smo );
@@ -2075,7 +2128,7 @@
SMHomomorphism2* hom = new SMHomomorphism2
( theGroup, *smo, Map( theGroup.getFPGroup(), smo->getFPGroup(), v),
Text("The homomorphism from generators of") + Name(theGroup)
- + "to" + Name(*smo)
+ + Text("to") + Name(*smo)
);
dependencies = ListOf<OID>( theGroup );
@@ -2102,10 +2155,10 @@
SMFPGroup* smo
= new SMFPGroup( theGroup.getFPGroup(),
- Text("User defined nilpotent quotient of class")
- + strClass + "of" + Name( theGroup ),
- SMFPGroup::NILPOTENT
- );
+ Text("User defined nilpotent quotient of class")
+ + Text(strClass) + Text("of") + Name( theGroup ),
+ SMFPGroup::NILPOTENT
+ );
smo->gic.putIsNilpotent( theClass );
ListOf<OID> dependencies;
@@ -2122,7 +2175,7 @@
SMHomomorphism2* hom = new SMHomomorphism2
( theGroup, *smo, Map( theGroup.getFPGroup(), smo->getFPGroup(), v),
Text("The homomorphism from generators of") + Name(theGroup)
- + "to" + Name(*smo)
+ + Text("to") + Name(*smo)
);
dependencies = ListOf<OID>( theGroup );
@@ -2170,7 +2223,7 @@
SMHomomorphism2* hom = new SMHomomorphism2
( theGroup, *smo, Map( theGroup.getFPGroup(), smo->getFPGroup(), v),
Text("The homomorphism from generators of") + Name(theGroup)
- + "to" + Name(*smo)
+ + Text("to") + Name(*smo)
);
dependencies = ListOf<OID>( theGroup );
@@ -2210,11 +2263,11 @@
smo = new SMFPGroup
( AP,
- Text("User defined amalgamated product <")
- + Name(Parent(subgroup2)) + "*" + Name(Parent(subgroup1)) + ";"
- + Name(subgroup2) + "=" + Name(subgroup1) + ">",
- SMFPGroup::AP_FREE_CYCLIC
- );
+ Text("User defined amalgamated product <")
+ + Name(Parent(subgroup2)) + Text("*") + Name(Parent(subgroup1)) + Text(";")
+ + Name(subgroup2) + Text("=") + Name(subgroup1) + Text(">"),
+ SMFPGroup::AP_FREE_CYCLIC
+ );
smo->gic.putHaveAPOfFree(AP);
}
@@ -2225,8 +2278,8 @@
smo = new SMFPGroup
( AP,
Text("User defined amalgamated product <")
- + Name(Parent(subgroup2)) + "*" + Name(Parent(subgroup1)) + ";"
- + Name(subgroup2) + "=" + Name(subgroup1) + ">",
+ + Name(Parent(subgroup2)) + Text("*") + Name(Parent(subgroup1)) + Text(";")
+ + Name(subgroup2) + Text("=") + Name(subgroup1) + Text(">"),
SMFPGroup::AP_FREE
);
@@ -2625,9 +2678,9 @@
SMObject* smo =
new SMSubgroup( subgroup1.getParent(), F,
- Text("The join of") + Name( subgroup1 ) + "and"
- + Name( subgroup2 )
- );
+ Text("The join of") + Name( subgroup1 ) + Text("and")
+ + Name( subgroup2 )
+ );
ListOf<OID> dependencies( subgroup1.getParent() );
CheckinMessage( *smo, "", dependencies ).send();
@@ -2652,9 +2705,9 @@
SMObject* smo =
new SMSubgroup( group, F,
- Text("The ") + Text(Chars(number)+ordinalPostfix(number))+
- " term of the lower central series of " + Name( group )
- );
+ Text("The ") + Text(Chars(number)+ordinalPostfix(number))+
+ Text(" term of the lower central series of ") + Name( group )
+ );
ListOf<OID> dependencies( group );
CheckinMessage( *smo, "", dependencies ).send();
@@ -2708,7 +2761,7 @@
SMHomomorphism2* hom1 = new SMHomomorphism2
( group1, *smo, fp->mapFromG1(),
Text("The homomorphism from generators of") + Name(group1)
- + "to" + Name(*smo)
+ + Text("to") + Name(*smo)
);
ListOf<OID> dependencies = ListOf<OID>( group1 );
@@ -2891,22 +2944,15 @@
return;
}
- SMFPGroup* smo
- = new SMFPGroup( G,
- Text("User defined the Rips construction of")
- + Name( theGroup ),
- SMFPGroup::FP
- );
+ SMFPGroup* smo =
+ new SMFPGroup (G, Text("User defined the Rips construction of")
+ + Name( theGroup ), SMFPGroup::FP);
ListOf<OID> dependencies;
CheckinMessage( *smo, "", dependencies, false ).send();
LogMessage msg( *this, *smo );
msg << Link( Chars("Click here to see the relators of ") +
- Text( Name( *smo) ),
- "RipsConstruction",
- f.getFileName() );
+ Text( Name( *smo) ), "RipsConstruction", f.getFileName() );
msg.send();
}
-
-
Modified: branches/daly/version10/back_end/SMApps/src/menuDefns.C
===================================================================
--- branches/daly/version10/back_end/SMApps/src/menuDefns.C 2007-05-02 19:11:29 UTC (rev 236)
+++ branches/daly/version10/back_end/SMApps/src/menuDefns.C 2007-05-14 19:28:42 UTC (rev 237)
@@ -85,8 +85,8 @@
#include "SMListWordProblem.h"
#include "SMListSubgroupProblems.h"
#include "FreeListProblems.h"
+#include "PreAbelianRepProblem.h"
-
// --------------- ObjectSmith::outputCheckinMenuDefns --------------------- //
@@ -103,15 +103,15 @@
M.startItemGroup();
- M.add( ReadSMAbelianGroup(), "Abelian Group", DefineAbelianGroup() );
+ M.add( ReadS...
[truncated message content] |
|
From: <ybr...@us...> - 2007-05-02 19:11:33
|
Revision: 236
http://svn.sourceforge.net/magnus/?rev=236&view=rev
Author: ybryukhov
Date: 2007-05-02 12:11:29 -0700 (Wed, 02 May 2007)
Log Message:
-----------
Chnages for GCC 4 compatibility:
1. For some reason Roman used size_t instead of int for indexing arrays and refering to array sizes. size_it is actually for refering to sizes of raw memory blocks.
2. int[] replaced with VecotrOf<int> in one places.
3. std:: added in several places.
4. A couple of headers were not included in there right places
Modified Paths:
--------------
trunk/magnus/back_end/Genetic/include/GHNConfig.h
trunk/magnus/back_end/Genetic/include/Roulette.h
trunk/magnus/back_end/Genetic/test/HNC.C
Modified: trunk/magnus/back_end/Genetic/include/GHNConfig.h
===================================================================
--- trunk/magnus/back_end/Genetic/include/GHNConfig.h 2007-04-23 17:48:21 UTC (rev 235)
+++ trunk/magnus/back_end/Genetic/include/GHNConfig.h 2007-05-02 19:11:29 UTC (rev 236)
@@ -18,7 +18,6 @@
#include "global.h"
-
//------------------------------ GHNConfig ----------------------------------//
@@ -74,13 +73,13 @@
// assignment operator supplied by compiler
- friend ostream& operator << ( ostream& ostr, const GHNConfig& C )
+ friend std::ostream& operator << ( std::ostream& ostr, const GHNConfig& C )
{
C.printOn(ostr);
return ostr;
}
- friend istream& operator >> ( istream& istr, GHNConfig& C )
+ friend std::istream& operator >> ( std::istream& istr, GHNConfig& C )
{
C.readFrom(istr);
return istr;
@@ -95,9 +94,9 @@
// //
/////////////////////////////////////////////////////////////////////////
- void readFrom( istream& istr );
+ void readFrom( std::istream& istr );
- void printOn( ostream& ostr ) const;
+ void printOn( std::ostream& ostr ) const;
void setVariable( const char*, int );
// used by readFrom() to set variables
Modified: trunk/magnus/back_end/Genetic/include/Roulette.h
===================================================================
--- trunk/magnus/back_end/Genetic/include/Roulette.h 2007-04-23 17:48:21 UTC (rev 235)
+++ trunk/magnus/back_end/Genetic/include/Roulette.h 2007-05-02 19:11:29 UTC (rev 236)
@@ -14,6 +14,7 @@
#define FORGE_ROULETTE_H
#include "RandomNumbers.h"
+#include "Vector.h"
class RW_Except { };
@@ -24,7 +25,7 @@
// creation constructor
RouletteWheel
(
- size_t sz,
+ int sz,
const VectorOf<FType>& weight,
int seed = 0
);
@@ -47,24 +48,24 @@
// change the weight of an entry
FType Change
(
- size_t i,
+ int i,
FType weight
);
// interrogation function
- size_t GetSize() { return N; }
+ int GetSize() { return N; }
FType GetWeight
(
- size_t i
+ int i
);
// retrieve a random index
- size_t GetIndex();
+ int GetIndex();
protected:
// array of weights
- size_t N;
+ int N;
FType * W;
// total weight of all indexes
@@ -97,7 +98,7 @@
template < class FType>
RouletteWheel<FType>::RouletteWheel
(
- size_t sz,
+ int sz,
const VectorOf<FType>& weights,
int seed
)
@@ -106,7 +107,7 @@
if( seed != 0 )
G = UniformRandom(seed);
- size_t i;
+ int i;
N = sz;
T = FType(0);
@@ -178,7 +179,7 @@
template < class FType >
FType RouletteWheel<FType>::Change
(
- size_t i,
+ int i,
FType weight
)
{
@@ -197,7 +198,7 @@
template < class FType >
inline FType RouletteWheel<FType>::GetWeight
(
- size_t i
+ int i
)
{
return (i < N) ? W[i] : FType(-1);
@@ -205,10 +206,10 @@
// retrieve a random index
template < class FType >
- size_t RouletteWheel<FType>::GetIndex()
+ int RouletteWheel<FType>::GetIndex()
{
FType s = FType(G.rand() * T);
- size_t i = 0;
+ int i = 0;
while ((i < N) && (s > W[i]))
{
Modified: trunk/magnus/back_end/Genetic/test/HNC.C
===================================================================
--- trunk/magnus/back_end/Genetic/test/HNC.C 2007-04-23 17:48:21 UTC (rev 235)
+++ trunk/magnus/back_end/Genetic/test/HNC.C 2007-05-02 19:11:29 UTC (rev 236)
@@ -43,7 +43,7 @@
pop1[i] = pop1[i].randomSubgroup();
pop2[i] = pop2[i].randomSubgroup();
}
- int fit[popSize];
+ VectorOf<int> fit(popSize);
// the main loop
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <ybr...@us...> - 2007-04-23 17:48:57
|
Revision: 235
http://svn.sourceforge.net/magnus/?rev=235&view=rev
Author: ybryukhov
Date: 2007-04-23 10:48:21 -0700 (Mon, 23 Apr 2007)
Log Message:
-----------
Merging v4 and v5, we are moving but slowly
Peter & Yegor.
Modified Paths:
--------------
branches/daly/version4/README
branches/daly/version4/back_end/Group/include/AbelianSGPresentation.h
branches/daly/version4/back_end/Packages/src/PackagesData.C
branches/daly/version4/back_end/SMApps/src/AGModule.C
branches/daly/version4/back_end/SMApps/src/ToddCoxeter.C
branches/daly/version4/back_end/SessionManager/include/BaseProperties.h
branches/daly/version4/back_end/SessionManager/src/ARCer.C
branches/daly/version4/back_end/SessionManager/src/Property.C
branches/daly/version4/back_end/SessionManager/src/SMEnumerator.C
branches/daly/version4/back_end/SessionManager/src/SMList.C
branches/daly/version4/back_end/Subgroup/include/SubgroupGraph.h
branches/daly/version4/back_end/Subgroup/include/SubgroupGraphRep.h
branches/daly/version4/back_end/Subgroup/src/SGofFreeGroup.C
branches/daly/version4/back_end/Subgroup/src/SubgroupGraphRep.C
branches/daly/version4/back_end/black_boxes/TietzeTrek/Fclasses/FtoolBox.C
branches/daly/version4/back_end/black_boxes/TietzeTrek/TTdriverDebug/FTietzeNode.C
branches/daly/version4/back_end/black_boxes/TietzeTrek/TTnodesRsrc/FTT1node.C
branches/daly/version4/back_end/black_boxes/TietzeTrek/TTnodesRsrc/FTT2pnode.C
branches/daly/version4/back_end/black_boxes/ace/coinc.c
branches/daly/version4/back_end/black_boxes/ace/enum.c
branches/daly/version4/back_end/black_boxes/ace/enum01.c
branches/daly/version4/back_end/black_boxes/ace/parser.c
branches/daly/version4/back_end/black_boxes/ace/util1.c
branches/daly/version4/back_end/black_boxes/kbmag/lib/fsa.c
branches/daly/version4/back_end/black_boxes/kbmag/lib/fsalogic.c
branches/daly/version4/back_end/black_boxes/tc5/enum.h
branches/daly/version4/back_end/black_boxes/tc5/proc_ded.h
branches/daly/version4/back_end/black_boxes/tc5/save_ct.c
branches/daly/version5/Configure
branches/daly/version5/INSTALL
branches/daly/version5/Makefile
branches/daly/version5/README
branches/daly/version5/aConfigure
branches/daly/version5/back_end/AProducts/Makefile
branches/daly/version5/back_end/AProducts/include/AP-fixups.h
branches/daly/version5/back_end/AProducts/include/APwithOneRelator.h
branches/daly/version5/back_end/AProducts/src/APwithOneRelatorRep.C
branches/daly/version5/back_end/AProducts/src/CONDITION.C
branches/daly/version5/back_end/AProducts/src/OneRelatorGroupWithTorsion.C
branches/daly/version5/back_end/Enumerators/Makefile
branches/daly/version5/back_end/Enumerators/src/SMListIterator.C
branches/daly/version5/back_end/Equations/Makefile
branches/daly/version5/back_end/Equations/include/QEqnSolutions.h
branches/daly/version5/back_end/Equations/include/Queue.h
branches/daly/version5/back_end/Equations/include/VectorPtr.h
branches/daly/version5/back_end/Equations/src/QEqnSolutions.C
branches/daly/version5/back_end/FSA/include/FSARep.h
branches/daly/version5/back_end/FSA/src/DFSAParser.C
branches/daly/version5/back_end/GAP/Makefile
branches/daly/version5/back_end/GAP/src/PermutationParser.C
branches/daly/version5/back_end/Genetic/include/GACPforORGSolver.h
branches/daly/version5/back_end/Genetic/include/GAIsPartOfBasis.h
branches/daly/version5/back_end/Genetic/src/ACConfig.C
branches/daly/version5/back_end/Genetic/src/Config.C
branches/daly/version5/back_end/Genetic/src/GACPforORGSolver.C
branches/daly/version5/back_end/Genetic/src/GAEquationSolver.C
branches/daly/version5/back_end/Genetic/src/GAIsPartOfBasis.C
branches/daly/version5/back_end/Genetic/src/TwoCommSolver.C
branches/daly/version5/back_end/Group/Makefile
branches/daly/version5/back_end/Group/include/AbelianGroup.h
branches/daly/version5/back_end/Group/include/AbelianGroupRep.h
branches/daly/version5/back_end/Group/include/AbelianInfinitenessProblem.h
branches/daly/version5/back_end/Group/include/FGGroupRep.h
branches/daly/version5/back_end/Group/include/GroupRep.h
branches/daly/version5/back_end/Group/include/MSCGConjugacyProblem.h
branches/daly/version5/back_end/Group/include/MSCGroup.h
branches/daly/version5/back_end/Group/include/ShortenByRelators.h
branches/daly/version5/back_end/Group/src/AbelianEquations.C
branches/daly/version5/back_end/Group/src/AbelianGroupRep.C
branches/daly/version5/back_end/Group/src/AbelianInfinitenessProblem.C
branches/daly/version5/back_end/Group/src/Homology.C
branches/daly/version5/back_end/Group/src/ORWordProblem.C
branches/daly/version5/back_end/KB/src/KBmagPackage.C
branches/daly/version5/back_end/Makefile
branches/daly/version5/back_end/Map/Makefile
branches/daly/version5/back_end/Matrix/Makefile
branches/daly/version5/back_end/Matrix/include/Matrix.h
branches/daly/version5/back_end/Matrix/src/GaussTransformation.C
branches/daly/version5/back_end/Matrix/src/Matrix.C
branches/daly/version5/back_end/NilpotentGroup/Makefile
branches/daly/version5/back_end/NilpotentGroup/src/BasicCommutators.C
branches/daly/version5/back_end/NilpotentGroup/src/NilpotentCollector.C
branches/daly/version5/back_end/NilpotentGroup/src/NilpotentGroup.C
branches/daly/version5/back_end/NilpotentGroup/src/SGOfFNGRep.C
branches/daly/version5/back_end/NilpotentGroup/test/test_NilpotentGroup.C
branches/daly/version5/back_end/Packages/Makefile
branches/daly/version5/back_end/Packages/src/PackagesData.C
branches/daly/version5/back_end/Packages/src/PackagesObject.C
branches/daly/version5/back_end/Packages/src/PackagesSMApps.C
branches/daly/version5/back_end/Polynomial/Makefile
branches/daly/version5/back_end/Polynomial/src/Polynomial.C
branches/daly/version5/back_end/Polynomial/src/RingParser.C
branches/daly/version5/back_end/SMApps/Makefile
branches/daly/version5/back_end/SMApps/include/ACConjecture.h
branches/daly/version5/back_end/SMApps/include/AGModule.h
branches/daly/version5/back_end/SMApps/include/FreeIsPartOfBasisProblem.h
branches/daly/version5/back_end/SMApps/include/IsWordAPE.h
branches/daly/version5/back_end/SMApps/include/WhiteheadMinimal.h
branches/daly/version5/back_end/SMApps/include/fastProblems.h
branches/daly/version5/back_end/SMApps/src/ACE.C
branches/daly/version5/back_end/SMApps/src/AGModule.C
branches/daly/version5/back_end/SMApps/src/AbelianInvariants.C
branches/daly/version5/back_end/SMApps/src/AbelianProblems.C
branches/daly/version5/back_end/SMApps/src/AreEltsEqual.C
branches/daly/version5/back_end/SMApps/src/ExtendToHomProblem.C
branches/daly/version5/back_end/SMApps/src/IsAbelianProblem.C
branches/daly/version5/back_end/SMApps/src/IsEltCentral.C
branches/daly/version5/back_end/SMApps/src/IsFiniteProblem.C
branches/daly/version5/back_end/SMApps/src/IsNilpotentProblem.C
branches/daly/version5/back_end/SMApps/src/IsTrivialProblem.C
branches/daly/version5/back_end/SMApps/src/OneRelatorProblems.C
branches/daly/version5/back_end/SMApps/src/SubgroupContainmentProblem.C
branches/daly/version5/back_end/SMApps/src/SubgroupProblems.C
branches/daly/version5/back_end/SMApps/src/TTProblem.C
branches/daly/version5/back_end/SMApps/src/ToddCoxeter.C
branches/daly/version5/back_end/SMApps/src/WordProblem.C
branches/daly/version5/back_end/SMApps/src/menuDefns.C
branches/daly/version5/back_end/SessionManager/Makefile
branches/daly/version5/back_end/SessionManager/include/FEData.h
branches/daly/version5/back_end/SessionManager/include/Menu.h
branches/daly/version5/back_end/SessionManager/include/OutMessages.h
branches/daly/version5/back_end/SessionManager/include/SMEnumerator.h
branches/daly/version5/back_end/SessionManager/include/SMList.h
branches/daly/version5/back_end/SessionManager/include/SMSetOfWords.h
branches/daly/version5/back_end/SessionManager/include/SessionManager.h
branches/daly/version5/back_end/SessionManager/include/ViewContents.h
branches/daly/version5/back_end/SessionManager/src/DatabaseManager.C
branches/daly/version5/back_end/SessionManager/src/FEData.C
branches/daly/version5/back_end/SessionManager/src/GIC.C
branches/daly/version5/back_end/SessionManager/src/MIC.C
branches/daly/version5/back_end/SessionManager/src/Menu.C
branches/daly/version5/back_end/SessionManager/src/ObjectFactory.C
branches/daly/version5/back_end/SessionManager/src/Property.C
branches/daly/version5/back_end/SessionManager/src/RandomDefinitionsGenerator.C
branches/daly/version5/back_end/SessionManager/src/SMEnumerator.C
branches/daly/version5/back_end/SessionManager/src/SMList.C
branches/daly/version5/back_end/SessionManager/src/SessionManager.C
branches/daly/version5/back_end/SessionManager/src/ViewContents.C
branches/daly/version5/back_end/Subgroup/Makefile
branches/daly/version5/back_end/Subgroup/include/TurnerProperSubgroupEnumerator.h
branches/daly/version5/back_end/Todd-Coxeter/Makefile
branches/daly/version5/back_end/Todd-Coxeter/src/CosetEnumerator.C
branches/daly/version5/back_end/black_boxes/Makefile
branches/daly/version5/back_end/black_boxes/TietzeTrek/Compile.mk
branches/daly/version5/back_end/black_boxes/TietzeTrek/Fclasses/FResources.C
branches/daly/version5/back_end/black_boxes/TietzeTrek/GLink/GLfunctions.C
branches/daly/version5/back_end/black_boxes/TietzeTrek/GLinkGLvar/FGLvarLow.C
branches/daly/version5/back_end/black_boxes/TietzeTrek/Makefile
branches/daly/version5/back_end/black_boxes/TietzeTrek/TTnodesRsrc/FTT1node.C
branches/daly/version5/back_end/black_boxes/ace/make.darter
branches/daly/version5/back_end/black_boxes/homology/Makefile
branches/daly/version5/back_end/black_boxes/homology/lib/makefile
branches/daly/version5/back_end/black_boxes/homology/src/homology/makefile
branches/daly/version5/back_end/black_boxes/kbmag/Makefile
branches/daly/version5/back_end/black_boxes/kbmag/gapdoc/manual.tex
branches/daly/version5/back_end/black_boxes/kbmag/lib/makefile
branches/daly/version5/back_end/black_boxes/kbmag/src/makefile
branches/daly/version5/back_end/black_boxes/orwp/Makefile
branches/daly/version5/back_end/black_boxes/rkbp/Makefile
branches/daly/version5/back_end/black_boxes/tc5/main.c
branches/daly/version5/back_end/black_boxes/tc5/makefile
branches/daly/version5/back_end/general/Makefile
branches/daly/version5/back_end/general/include/Associations.h
Removed Paths:
-------------
branches/daly/version4/back_end/black_boxes/kbmag/bin/.keepme
branches/daly/version5/back_end/AProducts/lib/.keepme
branches/daly/version5/back_end/AProducts/src/obj/.keepme
branches/daly/version5/back_end/Apps/lib/.keepme
branches/daly/version5/back_end/Apps/src/obj/.keepme
branches/daly/version5/back_end/Apps/test/.keepme
branches/daly/version5/back_end/Elt/lib/.keepme
branches/daly/version5/back_end/Elt/src/obj/.keepme
branches/daly/version5/back_end/Elt/test/bin/.keepme
branches/daly/version5/back_end/Enumerators/lib/.keepme
branches/daly/version5/back_end/Enumerators/src/obj/.keepme
branches/daly/version5/back_end/Enumerators/test/bin/.keepme
branches/daly/version5/back_end/Equations/lib/.keepme
branches/daly/version5/back_end/Equations/src/obj/.keepme
branches/daly/version5/back_end/FSA/lib/.keepme
branches/daly/version5/back_end/FSA/src/obj/.keepme
branches/daly/version5/back_end/GAP/lib/.keepme
branches/daly/version5/back_end/GAP/src/obj/.keepme
branches/daly/version5/back_end/GAP/test/bin/.keepme
branches/daly/version5/back_end/Genetic/lib/.keepme
branches/daly/version5/back_end/Genetic/src/obj/.keepme
branches/daly/version5/back_end/Genetic/test/bin/.keepme
branches/daly/version5/back_end/Group/lib/.keepme
branches/daly/version5/back_end/Group/src/obj/.keepme
branches/daly/version5/back_end/Group/test/bin/.keepme
branches/daly/version5/back_end/KB/lib/.keepme
branches/daly/version5/back_end/KB/src/obj/.keepme
branches/daly/version5/back_end/Map/lib/.keepme
branches/daly/version5/back_end/Map/src/obj/.keepme
branches/daly/version5/back_end/Map/test/bin/.keepme
branches/daly/version5/back_end/Matrix/lib/.keepme
branches/daly/version5/back_end/Matrix/src/obj/.keepme
branches/daly/version5/back_end/NilpotentGroup/lib/.keepme
branches/daly/version5/back_end/NilpotentGroup/src/obj/.keepme
branches/daly/version5/back_end/NilpotentGroup/test/bin/.keepme
branches/daly/version5/back_end/Packages/lib/.keepme
branches/daly/version5/back_end/Packages/src/obj/.keepme
branches/daly/version5/back_end/Packages/test/bin/.keepme
branches/daly/version5/back_end/Polynomial/lib/.keepme
branches/daly/version5/back_end/Polynomial/src/obj/.keepme
branches/daly/version5/back_end/SMApps/lib/.keepme
branches/daly/version5/back_end/SMApps/src/obj/.keepme
branches/daly/version5/back_end/SMApps/test/bin/.keepme
branches/daly/version5/back_end/SessionManager/lib/.keepme
branches/daly/version5/back_end/SessionManager/src/obj/.keepme
branches/daly/version5/back_end/SessionManager/test/bin/tmp/.keepme
branches/daly/version5/back_end/Subgroup/lib/.keepme
branches/daly/version5/back_end/Subgroup/src/obj/.keepme
branches/daly/version5/back_end/Subgroup/test/bin/.keepme
branches/daly/version5/back_end/Todd-Coxeter/lib/.keepme
branches/daly/version5/back_end/Todd-Coxeter/src/obj/.keepme
branches/daly/version5/back_end/Todd-Coxeter/test/bin/.keepme
branches/daly/version5/back_end/black_boxes/homology/bin/.keepme
branches/daly/version5/back_end/black_boxes/homology/testfiles/.keepme
branches/daly/version5/back_end/black_boxes/kbmag/bin/.keepme
branches/daly/version5/back_end/black_boxes/rkbp/bin/.keepme
branches/daly/version5/back_end/canonical/include/.keepme
branches/daly/version5/back_end/canonical/lib/.keepme
branches/daly/version5/back_end/canonical/src/obj/.keepme
branches/daly/version5/back_end/canonical/test/bin/.keepme
branches/daly/version5/back_end/experiments/include/.keepme
branches/daly/version5/back_end/experiments/lib/.keepme
branches/daly/version5/back_end/experiments/src/obj/.keepme
branches/daly/version5/back_end/experiments/test/bin/.keepme
branches/daly/version5/back_end/exprs/bin/.keepme
branches/daly/version5/back_end/exprs/obj/.keepme
branches/daly/version5/back_end/general/lib/.keepme
branches/daly/version5/back_end/general/src/obj/.keepme
branches/daly/version5/back_end/general/test/bin/.keepme
branches/daly/version5/back_end/libg++/lib/.keepme
branches/daly/version5/back_end/libg++/src/obj/.keepme
branches/daly/version5/back_end/libg++/test/.keepme
branches/daly/version5/experiments/bin/.keepme
branches/daly/version5/experiments/obj/.keepme
branches/daly/version5/inventory/FreeGroups/_incomplete/.keepme
branches/daly/version5/inventory/HNNExtensions/homomorphism/.keepme
branches/daly/version5/inventory/OneRelatorWithTorsion/homomorphism/.keepme
branches/daly/version5/inventory/OneRelatorWithTorsion/subgroup/.keepme
branches/daly/version5/inventory/html/.keepme
branches/daly/version5/packages/.keepme
Modified: branches/daly/version4/README
===================================================================
--- branches/daly/version4/README 2007-04-15 18:31:05 UTC (rev 234)
+++ branches/daly/version4/README 2007-04-23 17:48:21 UTC (rev 235)
@@ -100,3 +100,39 @@
-------
There is a ChangeLog file which describes changes for each MAGNUS'
release available in the same directory.
+
+ The source layout
+ -----------------
+
+ The directory $magnus/front_end contains the Tcl/Tk source for the
+ graphical user interface.
+
+ The directory $magnus/experiments contains stand-alone programs which
+ carry out group-theoretic experiments.
+
+ In $magnus/back_end, most source and header files are grouped by derivation
+ hierarchy. They are kept in (subdirectories of) a subdirectory of
+ $magnus/back_end named after the root of the hierarchy.
+ There is a canonical directory structure:
+
+ ______________ <root name> _________
+ / / | \ \
+ Makefile include src lib test
+ | / \ | / \
+ CVS CVS obj CVS CVS bin
+
+ A `blank' copy of this tree is in $magnus/back_end/canonical, which you
+ can cp -r to start a new hierarchy.
+
+ The Makefile explains itself. The src/obj subdirectory holds object and
+ dependency files. The test subdirectory holds source files for testing
+ and debugging programs; the executables are put in test/bin.
+
+ There is also a directory $magnus/back_end/global which contains header
+ files and GNU make include files which are global to the back end.
+
+ The directory $magnus/back_end/general has the above structure, but
+ contains several classes of general interest.
+
+ The directory $magnus/back_end/black_boxes contains all stand-alone
+ executables which magnus uses as black boxes.
Modified: branches/daly/version4/back_end/Group/include/AbelianSGPresentation.h
===================================================================
--- branches/daly/version4/back_end/Group/include/AbelianSGPresentation.h 2007-04-15 18:31:05 UTC (rev 234)
+++ branches/daly/version4/back_end/Group/include/AbelianSGPresentation.h 2007-04-23 17:48:21 UTC (rev 235)
@@ -31,15 +31,15 @@
// Copy constructor and operator = provided by compiler.
AbelianSGPresentationRep(const AbelianGroup& parent,
- const VectorOf<Word>& sgGens,
- const FPGroup& thePresentation,
- const DArray<Integer>& sgPGens,
- const DArray<Integer>& sgPGensInv,
- const VectorOf<Integer>& invariants,
- bool makeF )
- : AbelianGroupRep(thePresentation,makeF),
- theParent( parent ),
- theSGGens( sgGens ),
+ const VectorOf<Word>& sgGens,
+ const FPGroup& thePresentation,
+ const DArray<Integer>& sgPGens,
+ const DArray<Integer>& sgPGensInv,
+ const VectorOf<Integer>& invariants,
+ bool makeF )
+ : AbelianGroupRep(thePresentation,makeF),
+ theParent( parent ),
+ theSGGens( sgGens ),
theSGPGens( sgPGens ),
theSGPGensInv( sgPGensInv ),
theInvariants( invariants )
@@ -61,6 +61,8 @@
AbelianSGPresentationRep* clone( ) const { return new AbelianSGPresentationRep(*this); }
+
+
Word fromSGPGensToSGGens(const Word& w)const;
// Makes the map from presentation generators to
// generators of parent group
@@ -119,6 +121,18 @@
void makeFileOfPDGens( );
// Creates the file containing the expression of the generators
// of primary decomposition in terms of the old ones.
+
+ bool powerOfNewGenInTorsionPart (const Integer& inv,const Integer& b,
+ const Integer& a,Integer& x)const;
+ //gives the power of new generator when expressing old generators
+ //in generators of presentation, when solve this problem in torsion
+ //part of new generators presentation. It return true if there is
+ //exist this power, and put it in x.
+ bool powerOfNewGenInFreePart (const Integer& b,const Integer& a,Integer& x)const;
+ //gives the power of new generator when expressing old generators
+ //in generators of presentation, when solve this problem in torsion
+ //free part of new generators presentation. It return true if there is
+ //exist this power, and put it in x.
};
//--------------- AbelianSGPresentation -------------------------//
@@ -137,7 +151,7 @@
AbelianSGPresentation() : DerivedObjectOf<AbelianGroup,AbelianSGPresentationRep> (new AbelianSGPresentationRep(AbelianGroup(FPGroup()),VectorOf<Word>(),FPGroup(),DArray<Integer>(),DArray<Integer>(),VectorOf<Integer>(),false)) { }
-
+
///////////////////////////////////////////////////////
// //
// I/O //
@@ -147,13 +161,13 @@
// Inherited from AbelianGroup:
Word fromSGPGensToSGGens(const Word& w)const{
- return look()->fromSGPGensToSGGens(w);
+ return look()->fromSGPGensToSGGens(w);
}
// Makes the map from presentation generators to
// generators of parent group
bool fromSGGensToSGPGens(const Word& w,Word& wInNew)const{
- return look()->fromSGGensToSGPGens(w,wInNew);
+ return look()->fromSGGensToSGPGens(w,wInNew);
}
// Makes the map from generators of parent group to
// presentation generators, if word w is in the subgroup it
@@ -187,20 +201,20 @@
// makeF - true if you whant to make a files with
// generators, the same as for AbelianGroup
AbelianSGPresentation(const AbelianGroup& parent,
- const VectorOf<Word>& sgGens,
- const FPGroup& thePresentation,
- const DArray<Integer>& sgPGens,
- const DArray<Integer>& sgPGensInv,
- const VectorOf<Integer>& invariants,
- bool makeF = false) :
+ const VectorOf<Word>& sgGens,
+ const FPGroup& thePresentation,
+ const DArray<Integer>& sgPGens,
+ const DArray<Integer>& sgPGensInv,
+ const VectorOf<Integer>& invariants,
+ bool makeF = false):
DerivedObjectOf<AbelianGroup,AbelianSGPresentationRep>(new AbelianSGPresentationRep(parent,sgGens,thePresentation,sgPGens,sgPGensInv,invariants,makeF)) { }
// Special wrapping constructor to wrap new representations (returned
// by eg. delegated methods) and for base initialisation by derived
// classes:
AbelianSGPresentation( AbelianSGPresentationRep* newrep ) :
- DerivedObjectOf<AbelianGroup,AbelianSGPresentationRep>(newrep) { }
-
+ DerivedObjectOf<AbelianGroup,AbelianSGPresentationRep>(newrep) { }
+
#ifdef DEBUG
friend int main(int, char** );
#endif
Modified: branches/daly/version4/back_end/Packages/src/PackagesData.C
===================================================================
--- branches/daly/version4/back_end/Packages/src/PackagesData.C 2007-04-15 18:31:05 UTC (rev 234)
+++ branches/daly/version4/back_end/Packages/src/PackagesData.C 2007-04-23 17:48:21 UTC (rev 235)
@@ -23,39 +23,33 @@
name[20] = '\0';
in.read(comm, 129);
comm[128] = '\0';
-
- //@njz
- // in.read(&cs, sizeof(int) );
- // in.read(&os, sizeof(int) );
- // int ID;
- // in.read(&ID, sizeof(int) );
- // setID( ID );
+ // changed by xiaowei xu (xuxw) because of uncompilable
+ //in.read(&cs, sizeof(int) );
in >> cs;
+ //in.read(&os, sizeof(int) );
in >> os;
int ID;
+ // changed by xiaowei xu (xuxw) because of uncompilable
+ // in.read(&ID, sizeof(int) );
in >> ID;
setID( ID );
- //
}
void PackageRecord::writeTo ( ostream& out ) const
{
- out.write(name,21);
-
- out.write(comm,129);
-
- //@njz
- // out.write(&cs, sizeof(int) );
- // out.write(&os, sizeof(int) );
- // int ID = getID();
- // out.write(&ID, sizeof(int) );
- // out.flush();
+ // changed by xiaowei xu (xuxw) because of uncompilable
+ //out.write(name,21);
+ out << name;
+ //out.write(comm,129);
+ out << comm;
+ //out.write(&cs, sizeof(int) );
out << cs;
+ //out.write(&os, sizeof(int) );
out << os;
int ID = getID();
+ //out.write(&ID, sizeof(int) );
out << ID;
out.flush();
- //
}
@@ -65,18 +59,17 @@
{
if (in.eof())
return;
- in.read(name,81);
+ // changed by xiaowei xu (xuxw) because of uncompilable
+ //in.read(name,81);
+ in >> name;
name[80] = '\0';
-
- //@njz
- // in.read(&packID, sizeof(int) );
- // int t;
- // in.read(&t, sizeof(int) );
+ // changed by xiaowei xu (xuxw) because of uncompilable
+ // in.read(&packID, sizeof(int) );
in >> packID;
int t;
+ // in.read(&t, sizeof(int) );
+ // changed by xiaowei xu (xuxw) because of uncompilable
in >> t;
- //
-
if (t == int(INT))
pType = INT;
else if(t == int(BOOL))
@@ -89,21 +82,18 @@
void ParamRecord::writeTo ( ostream& out ) const
{
- out.write(name,81);
-
+ // changed by xiaowei xu (xuxw) because of uncompilable
+ //out.write(name,81);
+ out << name;
if (packID < 0 )
error("Invalid package ID");
-
- //@njz
- // out.write(&packID, sizeof(int) );
- out << packID;
- //
-
+ // changed by xiaowei xu (xuxw) because of uncompilable
+ //out.write(&packID, sizeof(int) );
+ out << packID;
int t = int(pType);
- //@njz
// out.write(&t, sizeof(int) );
+ // changed by xiaowei xu (xuxw) because of uncompilable
out << t;
- //
out.flush();
}
@@ -127,10 +117,9 @@
error("Can't open the database configureation file");
if (!cfgFile.eof())
- //@njz
- // cfgFile.read(&lastIDNumber, sizeof(int) );
+ // cfgFile.read(&lastIDNumber, sizeof(int) );
+ // changed by xiaowei xu(xuxw) because of uncompilable
cfgFile >> lastIDNumber;
- //
} else
error("Doesnot look like a database file.");
@@ -205,10 +194,10 @@
cfgFile.clear();
cfgFile.seekg(0);
- //@njz
+
// cfgFile.write(&lastIDNumber, sizeof(int) );
+ // changed by xiaowei xu(xuxw) because uncompiable
cfgFile << lastIDNumber;
- //
cfgFile.flush();
}
@@ -292,16 +281,13 @@
PObject* po = getPObjectFromType( o );
Chars dbPath = getPackagePath(po);
DatabaseOf<PackageRecord> db(dbPath);
- //@njz
- // iostream tmp;
- // int io;
- // tmp << o;
- // tmp >> io;
+ ///cahnged by xiaowei xu (xuxw) because of uncompilable.
+ //iostream tmp;
std::stringstream tmp;
int io;
tmp << o;
tmp >> io;
- //
+
PackageRecord r( theName, theCommand, t, io);
db.append(r);
Modified: branches/daly/version4/back_end/SMApps/src/AGModule.C
===================================================================
--- branches/daly/version4/back_end/SMApps/src/AGModule.C 2007-04-15 18:31:05 UTC (rev 234)
+++ branches/daly/version4/back_end/SMApps/src/AGModule.C 2007-04-23 17:48:21 UTC (rev 235)
@@ -147,6 +147,8 @@
File fileWA, fileDM1, fileDM2, fileGM;
arcer.getWordAcceptor().printOn(fileWA);
fileWA << end;
+ arcer.getDiffMachine1().printOn(fileDM1);
+ fileDM1 << end;
arcer.getDiffMachine2().printOn(fileDM2);
fileDM2 << end;
arcer.getGeneralMultiplier().printOn(fileGM);
Modified: branches/daly/version4/back_end/SMApps/src/ToddCoxeter.C
===================================================================
--- branches/daly/version4/back_end/SMApps/src/ToddCoxeter.C 2007-04-15 18:31:05 UTC (rev 234)
+++ branches/daly/version4/back_end/SMApps/src/ToddCoxeter.C 2007-04-23 17:48:21 UTC (rev 235)
@@ -477,8 +477,7 @@
{
if( Chars(theParent.typeID()) == Chars("SMFPGroup") ) {
return ((SMFPGroup& )theParent).gic.isFinite() == no;
- }
-
+ else
return ((SMSubgroup& )theParent).sic.index() == 0;
}
@@ -554,13 +553,10 @@
*/
bool WordRepresentativeProblem::isInfinite()const{
- if (Chars(theParent.typeID())==Chars("SMFPGroup")) {
- return (((SMFPGroup& )theParent).gic.isFinite()==no);
- } else
- if (((SMSubgroup& )theParent).sic.index() == 0)
- return true;
+ if (Chars(theParent.typeID())==Chars("SMFPGroup"))
+ return ((SMFPGroup& )theParent).gic.isFinite()==no;
else
- return false;
+ return ((SMSubgroup& )theParent).sic.index()==0;
}
void WordRepresentativeProblem::viewStructure(ostream& ostr) const
Modified: branches/daly/version4/back_end/SessionManager/include/BaseProperties.h
===================================================================
--- branches/daly/version4/back_end/SessionManager/include/BaseProperties.h 2007-04-15 18:31:05 UTC (rev 234)
+++ branches/daly/version4/back_end/SessionManager/include/BaseProperties.h 2007-04-23 17:48:21 UTC (rev 235)
@@ -48,8 +48,11 @@
class NoData {};
// I/O stubs
-inline istream& operator>>( const istream&, const NoData& ) {}
-inline ostream& operator<<( const ostream&, const NoData& ) {}
+//inline istream& operator>>(const istream& a, const NoData& b) {return(a);}
+//inline ostream& operator<<(const ostream& a, const NoData& b) {return(a);}
+//tpdhere
+inline istream& operator>>(istream& a, const NoData& b) {return(a);}
+inline ostream& operator<<(ostream& a, const NoData& b) {return(a);}
/*
Modified: branches/daly/version4/back_end/SessionManager/src/ARCer.C
===================================================================
--- branches/daly/version4/back_end/SessionManager/src/ARCer.C 2007-04-15 18:31:05 UTC (rev 234)
+++ branches/daly/version4/back_end/SessionManager/src/ARCer.C 2007-04-23 17:48:21 UTC (rev 235)
@@ -12,6 +12,8 @@
// * 7/96 Dmitry B. made porting to gcc 2.7.2.
//
+// 20030630000 TPD add namespace std
+using namespace std;
#include "ARCer.h"
@@ -91,7 +93,9 @@
char sPid[100];
sprintf(sPid, "/results.%d", pid);
- ifstream in(MagnusTmp::magnusTmp()+sPid, ios::in | ios::nocreate );
+ // 20030630000 TPD remove nocreate
+ // ifstream in(MagnusTmp::magnusTmp()+sPid, ios::in | ios::nocreate );
+ ifstream in(MagnusTmp::magnusTmp()+sPid, ios::in );
if( !in ) {
//error("Cannot open an input file.");
@@ -120,8 +124,29 @@
: ARCer( boss, delay ),
theCmdLine( cmdline )
{
- argFN = tempnam(MagnusTmp::magnusTmp(),"arg");
- resultFN = tempnam(MagnusTmp::magnusTmp(),"res");
+ /* 20031017000 tpd change tmpnam to mkstemp */
+ static char arg[] = "argXXXXXX";
+ char *argname;
+ argname = (char *)(malloc(10));
+ strncpy(argname,arg,10);
+ FILE *f = NULL;
+ if ((f=(FILE *)mkstemp(argname))==0){
+ fprintf(stderr,"Error: cannot open file %s\n",argname);
+ exit(1);
+ }
+ else fclose(f);
+ argFN = argname;
+
+ static char res[] = "resXXXXXX";
+ char *resname;
+ resname = (char *)(malloc(10));
+ strncpy(resname,res,10);
+ if ((f=(FILE *)mkstemp(resname))==0){
+ fprintf(stderr,"Error: cannot open file %s\n",resname);
+ exit(1);
+ }
+ else fclose(f);
+ resultFN = resname;
}
void ExternalARCer::runComputation( )
@@ -179,7 +204,9 @@
// get results of the computation
- ifstream in(resultFN, ios::in | ios::nocreate );
+ // 20030630000 TPD remove nocreate
+ // ifstream in(resultFN, ios::in | ios::nocreate );
+ ifstream in(resultFN, ios::in);
if( !in ) {
// error("bool ExternalARCer::takeControl( ): "
@@ -287,9 +314,11 @@
char sPid[100];
sprintf(sPid, "/results.%d", pid);
- in = new ifstream(MagnusTmp::magnusTmp()+sPid, ios::in | ios::nocreate );
+ // 20030630000 TPD remove nocreate
+ // in =new ifstream(MagnusTmp::magnusTmp()+sPid,ios::in | ios::nocreate);
+ in = new ifstream(MagnusTmp::magnusTmp()+sPid, ios::in);
if( !(*in) )
- error("Cannot open an input file.");
+ error("Cannot open an input file.");
}
if( readResults2(*in) ) {
Modified: branches/daly/version4/back_end/SessionManager/src/Property.C
===================================================================
--- branches/daly/version4/back_end/SessionManager/src/Property.C 2007-04-15 18:31:05 UTC (rev 234)
+++ branches/daly/version4/back_end/SessionManager/src/Property.C 2007-04-23 17:48:21 UTC (rev 235)
@@ -582,19 +582,16 @@
}
void GenericComplexProperty::write( ostream& ostr, bool extraDetails,
- const Chars& extraDetailsFileName ) const
+ const Chars& extraDetailsFileName ) const
{
- int start, length;
+ long start, length;
if( extraDetails ) {
ofstream file(extraDetailsFileName, ios::app);
start = file.tellp();
file << propertyName() << ' ';
writeTo(file);
- //@njz
- // length = file.tellp() - start;
- length = (int)file.tellp() - start;
- //
+ length = file.tellp() - start;
}
ostr << "{ ";
Modified: branches/daly/version4/back_end/SessionManager/src/SMEnumerator.C
===================================================================
--- branches/daly/version4/back_end/SessionManager/src/SMEnumerator.C 2007-04-15 18:31:05 UTC (rev 234)
+++ branches/daly/version4/back_end/SessionManager/src/SMEnumerator.C 2007-04-23 17:48:21 UTC (rev 235)
@@ -48,7 +48,17 @@
SMListData::SMListData( ): number_of_elements(0), mode( -1 )
{
// get name for the data file
- char* tmpFileName = tempnam(MagnusTmp::magnusTmp(),NULL);
+ /* 20031017000 tpd change tmpnam to mkstemp */
+ static char sml[] = "smlXXXXXX";
+ char *tmpFileName;
+ tmpFileName = (char *)(malloc(10));
+ strncpy(tmpFileName,sml,10);
+ FILE *f = NULL;
+ if ((f=(FILE *)mkstemp(tmpFileName))==0){
+ fprintf(stderr,"Error: cannot open file %s\n",tmpFileName);
+ exit(1);
+ }
+ else fclose(f);
dataFileName = Chars( tmpFileName );
// makes an empty color file for front end maybe needs to be changed
@@ -60,7 +70,15 @@
free(tmpFileName);
// get name for the referencies file
- tmpFileName = tempnam(MagnusTmp::magnusTmp(),NULL);
+ /* 20031017000 tpd change tmpnam to mkstemp */
+ static char smr[] = "smrXXXXXX";
+ tmpFileName = (char *)(malloc(10));
+ strncpy(tmpFileName,smr,10);
+ if ((f=(FILE *)mkstemp(tmpFileName))==0){
+ fprintf(stderr,"Error: cannot open file %s\n",tmpFileName);
+ exit(1);
+ }
+ else fclose(f);
refFileName = Chars( tmpFileName );
free(tmpFileName);
@@ -89,10 +107,9 @@
// save element length
char e_size[5];
- //@njz
- // sprintf(e_size, "%.5d",dataFile.tellg() - beg_pos );
- sprintf(e_size, "%.5d",((int)dataFile.tellg()) - beg_pos );
- //
+ // 20030630000 TPD template expansion causes grief
+ long grief = dataFile.tellg() - beg_pos;
+ sprintf(e_size, "%.5d",grief);
refFile << e_size << flush;
dataFile << flush;
@@ -157,10 +174,9 @@
// save element length
char e_size[5];
- //@njz
- // sprintf(e_size, "%.5d",dataFile.tellg() - beg_pos );
- sprintf(e_size, "%.5d",((int)dataFile.tellg()) - beg_pos );
- //
+ // 20030630000 TPD template expansion causes grief
+ long grief = dataFile.tellg() - beg_pos;
+ sprintf(e_size, "%.5d",grief);
refFile << e_size << flush;
}
@@ -169,20 +185,18 @@
void SMListData::openFiles( int m )
{
mode = m;
- //@njz:
- // dataFile.open(dataFileName,mode);
- dataFile.open(dataFileName,(ios::openmode)mode);
- //
+ // 20030630000 assume that mode is the unix NNN (e.g. 644)
+ // dataFile.open(dataFileName,,mode);
+ dataFile.open(dataFileName);
#if SAFETY > 0
if( !dataFile )
error( "SMListData::openFiles( int ) : "
"Cannot open the data file." );
#endif
- //@njz:
+ // 20030630000 assume that mode is the unix NNN (e.g. 644)
// refFile.open(refFileName,mode);
- refFile.open(refFileName,(ios::openmode)mode);
- //
+ refFile.open(refFileName);
#if SAFETY > 0
if( !refFile )
error( "SMListData::openFiles( int ) : "
@@ -226,7 +240,17 @@
number_of_elements = sd.number_of_elements;
// copy the file with enumerations
- char* tmpFileName = tempnam(MagnusTmp::magnusTmp(),NULL);
+ /* 20031017000 tpd change tmpnam to mkstemp */
+ static char smd[] = "smdXXXXXX";
+ char *tmpFileName;
+ tmpFileName = (char *)(malloc(10));
+ strncpy(tmpFileName,smd,10);
+ FILE *f = NULL;
+ if ((f=(FILE *)mkstemp(tmpFileName))==0){
+ fprintf(stderr,"Error: cannot open file %s\n",tmpFileName);
+ exit(1);
+ }
+ else fclose(f);
Chars fName = sd.dataFileName;
const char* tmpStr = fName;
int pid;
@@ -261,7 +285,15 @@
dataFileName = Chars( tmpFileName );
free( tmpFileName );
// Copy references file
- tmpFileName = tempnam(MagnusTmp::magnusTmp(),NULL);
+ /* 20031017000 tpd change tmpnam to mkstemp */
+ static char smp[] = "smpXXXXXX";
+ tmpFileName = (char *)(malloc(10));
+ strncpy(tmpFileName,smp,10);
+ if ((f=(FILE *)mkstemp(tmpFileName))==0){
+ fprintf(stderr,"Error: cannot open file %s\n",tmpFileName);
+ exit(1);
+ }
+ else fclose(f);
fName = sd.refFileName;
tmpStr = fName;
Modified: branches/daly/version4/back_end/SessionManager/src/SMList.C
===================================================================
--- branches/daly/version4/back_end/SessionManager/src/SMList.C 2007-04-15 18:31:05 UTC (rev 234)
+++ branches/daly/version4/back_end/SessionManager/src/SMList.C 2007-04-23 17:48:21 UTC (rev 235)
@@ -286,29 +286,39 @@
#if ( SAFETY > 0 )
if ( status_buffer != NULL )
error("LIC::status_type::status_type( int s ):"
- " buffer has been initialized already");
+ " buffer has been initialized already");
#endif
- char* tmpFileName = tempnam(MagnusTmp::magnusTmp(),NULL);
+ /* 20031017000 tpd change tmpnam to mkstemp */
+ static char lic[] = "licXXXXXX";
+ char *licname;
+ licname = (char *)(malloc(10));
+ strncpy(licname,lic,10);
+ FILE *f = NULL;
+ if ((f=(FILE *)mkstemp(licname))==0){
+ fprintf(stderr,"Error: cannot open file %s\n",licname);
+ exit(1);
+ }
+ else fclose(f);
- status_file = open(tmpFileName,O_RDWR | O_CREAT, S_IWUSR | S_IRUSR );
+ status_file = open(licname,O_RDWR | O_CREAT, S_IWUSR | S_IRUSR );
if ( status_file < 0 )
error("LIC::status_type::status_type( int s ):"
- "error couldn't open a file.");
+ "error couldn't open a file.");
-
int c = 0;
- char s[1];
- s[0] = '\0';
+ // 20030630000 TPD rename s to ss so we don't cover the parameter name
+ char ss[1];
+ ss[0] = '\0';
for ( int i = 0;i<size ;i++)
- c += write(status_file,s,1);
+ c += write(status_file,ss,1);
- free(tmpFileName);
+ free(licname);
status_buffer = (char*)mmap(0, size,
- PROT_READ | PROT_WRITE, MAP_SHARED,
- status_file, 0);
+ PROT_READ | PROT_WRITE, MAP_SHARED,
+ status_file, 0);
if ( status_buffer < 0 )
error("LIC::status_type::status_type( int s ) :"
Modified: branches/daly/version4/back_end/Subgroup/include/SubgroupGraph.h
===================================================================
--- branches/daly/version4/back_end/Subgroup/include/SubgroupGraph.h 2007-04-15 18:31:05 UTC (rev 234)
+++ branches/daly/version4/back_end/Subgroup/include/SubgroupGraph.h 2007-04-23 17:48:21 UTC (rev 235)
@@ -117,8 +117,9 @@
// Returns TRUE iff some conjugate of `w' is in the subgroup.
// If TRUE, `conjugator' is set to the conjugator.
- Bool conjugateInSubgroup(const SetOf<Word>& S, Word& conjugator) {
- return enhance()->conjugateInSubgroup(S,conjugator);
+ // 20030628000 TPD add ignore to distinguish signature from above
+ Bool conjugateInSubgroup(const SetOf<Word>& S, Word& conjugator,int ignore) {
+ return enhance()->conjugateInSubgroup(S,conjugator,0);
}
// Returns TRUE iff some conjugate of the subgroup generated by `S' is
// in the subgroup. If TRUE, `conjugator' is set to the conjugator.
Modified: branches/daly/version4/back_end/Subgroup/include/SubgroupGraphRep.h
===================================================================
--- branches/daly/version4/back_end/Subgroup/include/SubgroupGraphRep.h 2007-04-15 18:31:05 UTC (rev 234)
+++ branches/daly/version4/back_end/Subgroup/include/SubgroupGraphRep.h 2007-04-23 17:48:21 UTC (rev 235)
@@ -120,7 +120,7 @@
// Returns TRUE iff some conjugate of `w' is in the subgroup.
// If TRUE, `conjugator' is set to the conjugator.
- Bool conjugateInSubgroup(const SetOf<Word>& S, Word& conjugator);
+ Bool conjugateInSubgroup(const SetOf<Word>& S, Word& conjugator, int ignore);
// Returns TRUE iff some conjugate of the subgroup generated by `S' is
// in the subgroup. If TRUE, `conjugator' is set to the conjugator.
Modified: branches/daly/version4/back_end/Subgroup/src/SGofFreeGroup.C
===================================================================
--- branches/daly/version4/back_end/Subgroup/src/SGofFreeGroup.C 2007-04-15 18:31:05 UTC (rev 234)
+++ branches/daly/version4/back_end/Subgroup/src/SGofFreeGroup.C 2007-04-23 17:48:21 UTC (rev 235)
@@ -342,10 +342,8 @@
if ( !builtSubgroupGraph ) makeSubgroupGraph();
//@njz
// return theSubgroupGraph.conjugateInSubgroup(w.freelyReduce(),conjugator);
- SetOf<Word> tmp;
- tmp.adjoinElement(w.freelyReduce());
- return theSubgroupGraph.conjugateInSubgroup(tmp,conjugator);
- //
+ const Word& cw = w.freelyReduce();
+ return theSubgroupGraph.conjugateInSubgroup(cw,conjugator);
}
Bool SGofFreeGroupRep::conjugateInSubgroup(const SetOf<Word>& S, Word& conjugator)
@@ -359,7 +357,7 @@
I.next();
}
- return theSubgroupGraph.conjugateInSubgroup(tmp,conjugator);
+ return theSubgroupGraph.conjugateInSubgroup(tmp,conjugator,0);
}
bool SGofFreeGroupRep::conjugateTo(const SetOf<Word>& S)
@@ -585,13 +583,14 @@
return true;
}
-
+// 20030628000 explicit cast of float to int.
int SGofFreeGroupRep::hash() const
{
int t, j;
int result = 0;
const int rank = theParentGroup.rank();
- const int p = exp(14*log(2)/rank);
+ // const int p = exp(14*log(2)/rank);
+ const int p = (int)exp(14*log(2)/rank);
int* dg = new int[rank];
for( t=0;t<rank;++t ) dg[t] = 0;
Modified: branches/daly/version4/back_end/Subgroup/src/SubgroupGraphRep.C
===================================================================
--- branches/daly/version4/back_end/Subgroup/src/SubgroupGraphRep.C 2007-04-15 18:31:05 UTC (rev 234)
+++ branches/daly/version4/back_end/Subgroup/src/SubgroupGraphRep.C 2007-04-23 17:48:21 UTC (rev 235)
@@ -1160,7 +1160,8 @@
// We couldn't find anything better than using Proposition 2.22 ( Lyndon & Schupp ).
// We try to use all words with length less than the maximum of lengths of generators
// of both subgroups as a conjugator.
-Bool SubgroupGraphRep::conjugateInSubgroup(const SetOf<Word>& S, Word& conjugator)
+// 20030628000 TPD add ignore to distinguish signature from above
+Bool SubgroupGraphRep::conjugateInSubgroup(const SetOf<Word>& S, Word& conjugator, int ignore)
{
if ( contains(S) ) {
conjugator = Word();
@@ -1199,7 +1200,7 @@
bool SubgroupGraphRep::conjugateTo(const SetOf<Word>& S)
{
Word conjugator;
- if( !conjugateInSubgroup(S, conjugator) )
+ if( !conjugateInSubgroup(S, conjugator, 0) )
return false;
SubgroupGraphRep temp(valence/2,S);
//@db I cannot use "conversions.h" here because of gcc templates bugs.
@@ -1207,7 +1208,7 @@
SetOf<Word> SS;
for( int j = 0; j < V.length(); ++j )
SS |= V[j];
- return( temp.conjugateInSubgroup( SS, conjugator ) );
+ return( temp.conjugateInSubgroup( SS, conjugator, 0 ) );
}
Modified: branches/daly/version4/back_end/black_boxes/TietzeTrek/Fclasses/FtoolBox.C
===================================================================
--- branches/daly/version4/back_end/black_boxes/TietzeTrek/Fclasses/FtoolBox.C 2007-04-15 18:31:05 UTC (rev 234)
+++ branches/daly/version4/back_end/black_boxes/TietzeTrek/Fclasses/FtoolBox.C 2007-04-23 17:48:21 UTC (rev 235)
@@ -312,13 +312,14 @@
Ptr hPtr,donePtr;
Handle h=NewHandle(size);
if(h){
- hPtr=*h;
- donePtr=&hPtr[size];
- while(hPtr<donePtr){
- *hPtr=NULL;
- ++hPtr;
- }
- }
+ hPtr=*h;
+ donePtr=&hPtr[size];
+ while(hPtr<donePtr){
+// 20031016 Null is not a char. *hPtr=NULL;
+ *hPtr=(char)0;
+ ++hPtr;
+ }
+ }
return h;
}
Handle NewHandleClear( long size){
Modified: branches/daly/version4/back_end/black_boxes/TietzeTrek/TTdriverDebug/FTietzeNode.C
===================================================================
--- branches/daly/version4/back_end/black_boxes/TietzeTrek/TTdriverDebug/FTietzeNode.C 2007-04-15 18:31:05 UTC (rev 234)
+++ branches/daly/version4/back_end/black_boxes/TietzeTrek/TTdriverDebug/FTietzeNode.C 2007-04-23 17:48:21 UTC (rev 235)
@@ -349,13 +349,12 @@
break;
default: send(aMessage);
}
- break;
- case strToWordMail:
- switch (aMessage){
- break;
- case removeBlanksMsg:
- // we don't need to do this since we removed the blanks
- // earlier when we were creating the character luts
+ break;
+ case strToWordMail:
+ switch (aMessage){
+ case removeBlanksMsg:
+ // we don't need to do this since we removed the blanks
+ // earlier when we were creating the character luts
break;
case emptyWordStrMsg:
break;
@@ -374,13 +373,12 @@
break;
default: send(aMessage);
}
- break;
- case presMail:
- switch(aMessage){
- break;
- case presAuRevoirMsg:
- case presGoodbyeKissMsg:
- break;
+ break;
+ case presMail:
+ switch(aMessage){
+ case presAuRevoirMsg:
+ case presGoodbyeKissMsg:
+ break;
default: send(aMessage);
}
break;
Modified: branches/daly/version4/back_end/black_boxes/TietzeTrek/TTnodesRsrc/FTT1node.C
===================================================================
--- branches/daly/version4/back_end/black_boxes/TietzeTrek/TTnodesRsrc/FTT1node.C 2007-04-15 18:31:05 UTC (rev 234)
+++ branches/daly/version4/back_end/black_boxes/TietzeTrek/TTnodesRsrc/FTT1node.C 2007-04-23 17:48:21 UTC (rev 235)
@@ -383,13 +383,13 @@
FGLvarInitInfo *info= new FuTreeInitInfo();
info->rNoEntries=lettersNo;
if(!info->rNoEntries)xErr(51);
- uTree= new FuTree(uLink,(FuTreeInitInfo*)info);
- delete info;
- uNode=new FuNode(this,uTree,sizeof(GLref),Cayley->itsRoot);
- uTime=UTREE_FRACTION*CayleyTime;
- timer=0;
- }
- Boolean callAgain=uNode->run();
+ uTree= new FuTree(uLink,(FuTreeInitInfo*)info);
+ delete info;
+ uNode=new FuNode(this,uTree,sizeof(GLref),Cayley->itsRoot);
+ uTime=UTREE_FRACTION*CayleyTime;
+ timer=0;
+ }
+ Boolean callAgain=uNode->run();
timer+=clock()-startTime;
if(timer>uTime){
uNode->abort=TRUE;
@@ -491,13 +491,12 @@
}
break;
- case wordsToGLvarMail:
-
- switch (aMessage){
- break;
- case terminateWordMsg:
- FCayley *v;
- v=Cayley;
+ case wordsToGLvarMail:
+
+ switch (aMessage){
+ case terminateWordMsg:
+ FCayley *v;
+ v=Cayley;
v->bv=wordsToGLvar->itsRoot;
v->e=-v->e;
v->Lnk();
@@ -545,13 +544,12 @@
break;
default: send(aMessage);
}
- break;
- case presMail:
- switch(aMessage){
- break;
- case presAuRevoirMsg:
- break;
- case presGoodbyeKissMsg:{
+ break;
+ case presMail:
+ switch(aMessage){
+ case presAuRevoirMsg:
+ break;
+ case presGoodbyeKissMsg:{
// newPres doesn't have a global
// symbol table yet. We make a copy of the
// currentPres table and load it into newPres
Modified: branches/daly/version4/back_end/black_boxes/TietzeTrek/TTnodesRsrc/FTT2pnode.C
===================================================================
--- branches/daly/version4/back_end/black_boxes/TietzeTrek/TTnodesRsrc/FTT2pnode.C 2007-04-15 18:31:05 UTC (rev 234)
+++ branches/daly/version4/back_end/black_boxes/TietzeTrek/TTnodesRsrc/FTT2pnode.C 2007-04-23 17:48:21 UTC (rev 235)
@@ -168,12 +168,11 @@
}
void FTT2pnode::respond(short aMessage){
- switch(aMessage){
+ switch(aMessage){
+ case presAuRevoirMsg:
+ break;
+ case presGoodbyeKissMsg:
break;
- case presAuRevoirMsg:
- break;
- case presGoodbyeKissMsg:
- break;
case renumberPresAuRevoirMsg:
break;
case renumberPresGoodbyeKissMsg:
Modified: branches/daly/version4/back_end/black_boxes/ace/coinc.c
===================================================================
--- branches/daly/version4/back_end/black_boxes/ace/coinc.c 2007-04-15 18:31:05 UTC (rev 234)
+++ branches/daly/version4/back_end/black_boxes/ace/coinc.c 2007-04-23 17:48:21 UTC (rev 235)
@@ -235,11 +235,14 @@
static Logic al0_cols12(int low, int high, Logic saved)
{
- int i, j, l; /* for CREP()/COMPRESS() macros */
- int low1s, low2s, high1s, high2s; /* consequent coincidences */
- int inv1, inv2; /* column inverses */
- int rlow, rhigh; /* reps of low/high */
- int src, dst; /* source & dest'n for info move */
+ int i, j, l; /* for CREP()/COMPRESS() macros */
+ int low1s = 0; /* consequent coincidences */
+ int low2s = 0; /* consequent coincidences */
+ int high1s = 0; /* consequent coincidences */
+ int high2s = 0; /* consequent coincidences */
+ int inv1, inv2; /* column inverses */
+ int rlow, rhigh; /* reps of low/high */
+ int src, dst; /* source & dest'n for info move */
int low1, low2, high1, high2; /* original data from cols 1/2 */
int lowi; /* temp */
@@ -475,9 +478,10 @@
int al0_coinc(int low, int high, Logic saved)
{
- int i, j, l; /* Temps / for macros */
+ int i = 0; /* Temps / for macros */
+ int j = 0; /* Temps / for macros */
int lowi, highi;
- int chigh, clow, crep; /* current high, low & rep */
+ int chigh, clow, crep; /* current high, low & rep */
/* The xcoinc statistic counts the number of calls to this function. We
drop out immediately if we're called `needlessly'. */
Modified: branches/daly/version4/back_end/black_boxes/ace/enum.c
===================================================================
--- branches/daly/version4/back_end/black_boxes/ace/enum.c 2007-04-15 18:31:05 UTC (rev 234)
+++ branches/daly/version4/back_end/black_boxes/ace/enum.c 2007-04-23 17:48:21 UTC (rev 235)
@@ -143,7 +143,9 @@
int al0_apply(int cos, int *beg, int *end, Logic defn, Logic save)
{
- int i,j,k;
+ int i = 0;
+ int j = 0;
+ int k = 0;
int *fwd, *bwd;
int col, ifront, iback, ji;
@@ -263,7 +265,13 @@
static int al0_rl(int first, int last, Logic saved)
{
- int row,rel,i,ii,j,k,l;
+ int row = 0;
+ int rel = 0;
+ int i = 0;
+ int ii = 0;
+ int j = 0;
+ int k = 0;
+ int l = 0;
int *pj, *pk, *fwd, *bwd;
int ifront, iback;
@@ -358,7 +366,14 @@
static int al0_cl(int first, int last, Logic saved)
{
- int row,col,beg,end,i,j,ji,k;
+ int row = 0;
+ int col = 0;
+ int beg = 0;
+ int end = 0;
+ int i = 0;
+ int j = 0;
+ int ji = 0;
+ int k = 0;
int *pj, *pk, *fwd, *bwd;
int ifront, iback;
@@ -469,7 +484,13 @@
static int al0_rdefn(int cnt, Logic fillr, Logic saved)
{
- int i, j, k, l, m, mi, n;
+ int i = 0;
+ int j = 0;
+ int k = 0;
+ int l = 0;
+ int m = 0;
+ int mi = 0;
+ int n = 0;
int *beg, *end, *fwd, *bwd;
int col, ifront, iback;
@@ -1054,11 +1075,11 @@
int al0_enum(int mode, int style)
{
- int state, action, result; /* The current state, action & result. */
- Logic isave; /* Save definitions/deductions on stack? */
- static Logic rhfree; /* Table guaranteed hole-free (R-style)? */
- static Logic cdapp; /* All definitions applied (C-style)? */
- int i,j,k; /* temp ints / indices */
+ int state, action, result; /* The current state, action & result. */
+ Logic isave = FALSE; /* Save definitions/deductions on stack? */
+ static Logic rhfree; /* Table guaranteed hole-free (R-style)? */
+ static Logic cdapp; /* All definitions applied (C-style)? */
+ int i,j,k; /* temp ints / indices */
int *pj, *pk; /* temp pointers */
Logic li; /* temp booleans */
Modified: branches/daly/version4/back_end/black_boxes/ace/enum01.c
===================================================================
--- branches/daly/version4/back_end/black_boxes/ace/enum01.c 2007-04-15 18:31:05 UTC (rev 234)
+++ branches/daly/version4/back_end/black_boxes/ace/enum01.c 2007-04-23 17:48:21 UTC (rev 235)
@@ -44,7 +44,18 @@
static int al0_rpefn(int cnt, Logic fill)
{
int icol, rcol, irow, ires, col;
- int first, last, i, ii, j, ifront, iback, k, l, m, mi, n;
+ int first = 0;
+ int last = 0;
+ int i = 0;
+ int ii = 0;
+ int j = 0;
+ int ifront = 0;
+ int iback = 0;
+ int k = 0;
+ int l = 0;
+ int m = 0;
+ int mi = 0;
+ int n = 0;
int *beg, *end, *fwd, *bwd;
INCR(xrdefn);
Modified: branches/daly/version4/back_end/black_boxes/ace/parser.c
===================================================================
--- branches/daly/version4/back_end/black_boxes/ace/parser.c 2007-04-15 18:31:05 UTC (rev 234)
+++ branches/daly/version4/back_end/black_boxes/ace/parser.c 2007-04-23 17:48:21 UTC (rev 235)
@@ -432,10 +432,13 @@
int al2_pelt(int beg)
{
- int len, len2, gen, sign;
+ int len = 0;
+ int len2 = 0;
+ int gen = 0;
+ int sign = 0;
char ch;
- if (isalpha(currip)) /* we have 'a'..'z' or 'A'..'Z' */
+ if (isalpha(currip)) /* we have 'a'..'z' or 'A'..'Z' */
{
if (!galpha)
{ al2_restart("you specified numeric generators"); }
@@ -754,7 +757,9 @@
{
int i,j,k;
Wlist *p;
- Logic f, li, lj;
+ Logic f = FALSE;
+ Logic li = FALSE;
+ Logic lj = FALSE;
while (TRUE)
{
Modified: branches/daly/version4/back_end/black_boxes/ace/util1.c
===================================================================
--- branches/daly/version4/back_end/black_boxes/ace/util1.c 2007-04-15 18:31:05 UTC (rev 234)
+++ branches/daly/version4/back_end/black_boxes/ace/util1.c 2007-04-23 17:48:21 UTC (rev 235)
@@ -692,7 +692,11 @@
Logic al1_bldrep(int cos)
{
- int low, slow, col, scol, i;
+ int low = 0;
+ int slow = 0;
+ int col = 0;
+ int scol = 0;
+ int i = 0;
repsiz = 0;
if (cos <= 1 || cos >= nextdf || COL1(cos) < 0)
Deleted: branches/daly/version4/back_end/black_boxes/kbmag/bin/.keepme
===================================================================
Modified: branches/daly/version4/back_end/black_boxes/kbmag/lib/fsa.c
===================================================================
--- branches/daly/version4/back_end/black_boxes/kbmag/lib/fsa.c 2007-04-15 18:31:05 UTC (rev 234)
+++ branches/daly/version4/back_end/black_boxes/kbmag/lib/fsa.c 2007-04-23 17:48:21 UTC (rev 235)
@@ -682,7 +682,8 @@
* This works faster than deleting redundant states.
*/
if (fsaptr->flags[DFA]) {
- temp = fsa_and(fsaptr,fsaptr,st,TRUE,tmpnam(0));
+ /* 20031017000 tpd change tmpnam to mkstemp */
+ temp = fsa_and(fsaptr,fsaptr,st,TRUE,"");
fsa_copy(fsaptr,temp);
fsa_clear(temp);
tfree(temp);
Modified: branches/daly/version4/back_end/black_boxes/kbmag/lib/fsalogic.c
===================================================================
--- branches/daly/version4/back_end/black_boxes/kbmag/lib/fsalogic.c 2007-04-15 18:31:05 UTC (rev 234)
+++ branches/daly/version4/back_end/black_boxes/kbmag/lib/fsalogic.c 2007-04-23 17:48:21 UTC (rev 235)
@@ -325,8 +325,12 @@
fprintf(stderr,"Hash-initialisation problem in fsa_binop.\n");
exit(1);
}
- if ((tempfile=fopen(tempfilename,"w"))==0){
- fprintf(stderr,"Error: cannot open file %s\n",tempfilename);
+ /* 20031017000 tpd change tmpnam to mkstemp */
+ static char t[] = "tmpXXXXXX";
+ char filename[10];
+ strncpy(filename,t,10);
+ if ((tempfile=(FILE *)mkstemp(filename))==0){
+ fprintf(stderr,"Error: cannot open file %s\n",filename);
exit(1);
}
if (dense_op)
Modified: branches/daly/version4/back_end/black_boxes/tc5/enum.h
===================================================================
--- branches/daly/version4/back_end/black_boxes/tc5/enum.h 2007-04-15 18:31:05 UTC (rev 234)
+++ branches/daly/version4/back_end/black_boxes/tc5/enum.h 2007-04-23 17:48:21 UTC (rev 235)
@@ -190,7 +190,7 @@
#define Step(i) (++i) & List_length
-#define Test_time_limit; if (LTIME == 0.000000) \
+#define Test_time_limit if (LTIME == 0.000000) \
continue; \
curtim = utl_second(); \
if (curtim > LTIME) { \
Modified: branches/daly/version4/back_end/black_boxes/tc5/proc_ded.h
===================================================================
--- branches/daly/version4/back_end/black_boxes/tc5/proc_ded.h 2007-04-15 18:31:05 UTC (rev 234)
+++ branches/daly/version4/back_end/black_boxes/tc5/proc_ded.h 2007-04-23 17:48:21 UTC (rev 235)
@@ -9,7 +9,7 @@
#define Get_edp(beg,end,gen) beg=&EDP[EDP_BEG[gen]]; \
end=&EDP[EDP_END[gen]]
-#define Test_time_limit; if (LTIME == 0.000000) \
+#define Test_time_limit if (LTIME == 0.000000) \
continue; \
curtim = utl_second(); \
if (curtim > LTIME) { \
Modified: branches/daly/version4/back_end/black_boxes/tc5/save_ct.c
===================================================================
--- branches/daly/version4/back_end/black_boxes/tc5/save_ct.c 2007-04-15 18:31:05 UTC (rev 234)
+++ branches/daly/version4/back_end/black_boxes/tc5/save_ct.c 2007-04-23 17:48:21 UTC (rev 235)
@@ -10,13 +10,14 @@
FILE *tcout, *fopen();
Int i,j;
Rel_stk_type *ptt;
- struct timeval *tp,tpp; /* time of day */
+ struct timeval *tp,tpp; /* time of day */
struct timezone *tzp, tzpp;
- long betime;
- char *tcdate,out_file[50];
- Int *y;
- Int end, c_tab,info_space;
- Int *p;
+ time_t *betime; /* 20031017 tpd rewrite into time_t */
+ char *tcdate;
+ char *out_file; /* 20031017 tpd use malloc instead of stack */
+ Int *y;
+ Int end, c_tab,info_space;
+ Int *p;
/* subroutine to save a minimum amount of information about
* an enumeration into a file so that
* user will be able to recover it and resume this enumeration.
@@ -28,24 +29,25 @@
*/
/* get hour:minute for suffix of output file. */
y = Y;
- tp = &tpp;
+ tp = &tpp;
tzp = &tzpp;
- while (gettimeofday(tp, tzp) < 0);/* get time of day */
- betime = tp->tv_sec;
- tcdate = ctime(&betime);
- tcdate += 11;
- if (*tcdate == ' ')
- tcdate++;
- strcpy(out_file,Enum_name);
- strcat(out_file,".");
- strncat(out_file,tcdate,5);
+ while (gettimeofday(tp, tzp) < 0);/* get time of day */
+ betime = &(tp->tv_sec);
+ tcdate = (char *)ctime(betime);
+ tcdate += 11;
+ if (*tcdate == ' ')
+ tcdate++;
+ out_file=(char *)(malloc(50));
+ strcpy(out_file,Enum_name);
+ strcat(out_file,".");
+ strncat(out_file,tcdate,5);
/* now out_file is in format: Enum_name.hour:minute */
- tcout = fopen(out_file, "w");
- if (tcout == (FILE *) 0) {
- yyerror(7);
- return out_file;
- }
- fprintf(fout, "This enumeration information is saved in %s\n",out_file);
+ tcout = fopen(out_file, "w");
+ if (tcout == (FILE *) 0) {
+ yyerror(7);
+ return(out_file);
+ }
+ fprintf(fout, "This enumeration information is saved in %s\n",out_file);
/* compute the minimum workspace needed for this enumeration and save
* it in the first 2 places of the output file.
*/
Modified: branches/daly/version5/Configure
===================================================================
--- branches/daly/version5/Configure 2007-04-15 18:31:05 UTC (rev 234)
+++ branches/daly/version5/Configure 2007-04-23 17:48:21 UTC (rev 235)
@@ -1,8 +1,4 @@
#!/bin/sh
-##
-## $Id: Configure,v 1.1 2003/10/20 18:51...
[truncated message content] |
|
From: <ybr...@us...> - 2007-04-15 18:31:12
|
Revision: 234
http://svn.sourceforge.net/magnus/?rev=234&view=rev
Author: ybryukhov
Date: 2007-04-15 11:31:05 -0700 (Sun, 15 Apr 2007)
Log Message:
-----------
equality comparison was used instead of assignment in one place, fixed.
Modified Paths:
--------------
trunk/magnus/back_end/general/src/Set.C
Modified: trunk/magnus/back_end/general/src/Set.C
===================================================================
--- trunk/magnus/back_end/general/src/Set.C 2007-04-15 16:13:25 UTC (rev 233)
+++ trunk/magnus/back_end/general/src/Set.C 2007-04-15 18:31:05 UTC (rev 234)
@@ -98,7 +98,7 @@
istr > n;
if( n == 0 ) {
- scan->nextCell == NULL;
+ scan->nextCell = NULL;
break;
}
old = scan;
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <ybr...@us...> - 2007-04-15 16:13:29
|
Revision: 233
http://svn.sourceforge.net/magnus/?rev=233&view=rev
Author: ybryukhov
Date: 2007-04-15 09:13:25 -0700 (Sun, 15 Apr 2007)
Log Message:
-----------
according to Chuck's comments, reflected the fact that Mac OS X users should same OS choice as Linux users
Modified Paths:
--------------
trunk/magnus/configure
Modified: trunk/magnus/configure
===================================================================
--- trunk/magnus/configure 2007-04-02 18:41:56 UTC (rev 232)
+++ trunk/magnus/configure 2007-04-15 16:13:25 UTC (rev 233)
@@ -23,19 +23,19 @@
DEFAULT_MAGNUSTMP=/tmp
MAGNUSTMP=/tmp
echo "Which operation system are you going to use ? "
-echo "(Enter 0 for LINUX, 1 for System V, 2 for BSD 4.11+/Mac OS X; LINUX is default)"
+echo "(Enter 0 for LINUX/Mac OS X, 1 for System V (not tested for a long time), 2 for BSD 4.11+ (not tested for a long time); LINUX is default)"
read OS
if [ "$OS" = "1" ]
then
- OS='SYSV'
+ OS='SYSV'
elif [ "$OS" = "2" ]
then
OS='BSD'
else
- OS='LINUX'
+ OS='LINUX'
fi
echo "You chose $OS."
echo
@@ -47,22 +47,22 @@
read MAGNUSCURRENTHOME
if [ "$MAGNUSCURRENTHOME" = "" ]
then
- MAGNUSCURRENTHOME=$DEFAULT_MAGNUSCURRENTHOME
+ MAGNUSCURRENTHOME=$DEFAULT_MAGNUSCURRENTHOME
fi
echo "Checking existence of $MAGNUSCURRENTHOME ... "
if [ -d $MAGNUSCURRENTHOME ]
then
- echo "ok"
+ echo "ok"
else
- echo
- echo "Uh-oh ... $MAGNUSCURRENTHOME doesn't seem to exist!"
- echo "Continue? [n]"
- read YN
- if [ "`echo $YN | sed 's/\(.\).*/\1/'`" != "y" ]
- then
- exit 1
- fi
+ echo
+ echo "Uh-oh ... $MAGNUSCURRENTHOME doesn't seem to exist!"
+ echo "Continue? [n]"
+ read YN
+ if [ "`echo $YN | sed 's/\(.\).*/\1/'`" != "y" ]
+ then
+ exit 1
+ fi
fi
# this section should wait until we have a real install script
@@ -74,22 +74,22 @@
#read MAGNUSHOME
#if [ "$MAGNUSHOME" = "" ]
#then
-# MAGNUSHOME=$DEFAULT_MAGNUSHOME
+# MAGNUSHOME=$DEFAULT_MAGNUSHOME
#fi
#
#echo "Checking existence of $MAGNUSHOME ... "
#if [ -d $MAGNUSHOME ]
#then
-# echo "ok"
+# echo "ok"
#else
-# echo
-# echo "Uh-oh ... $MAGNUSHOME doesn't seem to exist!"
-# echo "Continue? [y]"
-# read YN
-# if [ "`echo $YN | sed 's/\(.\).*/\1/'`" = "n" ]
-# then
-# exit 1
-# fi
+# echo
+# echo "Uh-oh ... $MAGNUSHOME doesn't seem to exist!"
+# echo "Continue? [y]"
+# read YN
+# if [ "`echo $YN | sed 's/\(.\).*/\1/'`" = "n" ]
+# then
+# exit 1
+# fi
#fi
# in the meantime, just do this
@@ -102,22 +102,22 @@
read WISH
if [ "$WISH" = "" ]
then
- WISH=$DEFAULT_WISH
+ WISH=$DEFAULT_WISH
fi
echo "Checking existence of $WISH ... "
if [ -x $WISH ]
then
- echo "ok"
+ echo "ok"
else
- echo
- echo "Uh-oh ... $WISH doesn't seem to exist!"
- echo "Continue? [n]"
- read YN
- if [ "`echo $YN | sed 's/\(.\).*/\1/'`" != "y" ]
- then
- exit 1
- fi
+ echo
+ echo "Uh-oh ... $WISH doesn't seem to exist!"
+ echo "Continue? [n]"
+ read YN
+ if [ "`echo $YN | sed 's/\(.\).*/\1/'`" != "y" ]
+ then
+ exit 1
+ fi
fi
echo "Enter the path to the Magnus temporary directory:"
@@ -125,22 +125,22 @@
read MAGNUSTMP
if [ "$MAGNUSTMP" = "" ]
then
- MAGNUSTMP=$DEFAULT_MAGNUSTMP
+ MAGNUSTMP=$DEFAULT_MAGNUSTMP
fi
echo -n "Checking existence of $MAGNUSTMP ... "
if [ -d $MAGNUSTMP ]
then
- echo "ok"
+ echo "ok"
else
- echo
- echo "Uh-oh ... $MAGNUSTMP doesn't seem to exist!"
- echo -n "Continue? [n]"
- read YN
- if [ "`echo $YN | sed 's/\(.\).*/\1/'`" != "y" ]
- then
- exit 1
- fi
+ echo
+ echo "Uh-oh ... $MAGNUSTMP doesn't seem to exist!"
+ echo -n "Continue? [n]"
+ read YN
+ if [ "`echo $YN | sed 's/\(.\).*/\1/'`" != "y" ]
+ then
+ exit 1
+ fi
fi
SEDSCRIPT="s,%MAGNUSHOME%,$MAGNUSHOME,;s,%WISH%,$WISH,;s,%OS%,$OS,;s,%MAGNUSTMP%,$MAGNUSTMP,"
@@ -151,15 +151,15 @@
echo "Creating $MAGNUSCURRENTHOME/back_end/global/config.h ..."
if [ ! -f $MAGNUSCURRENTHOME/back_end/global/config.h.in ]
then
- echo "$MAGNUSCURRENTHOME/back_end/global/config.h.in is missing!"
- exit 1
+ echo "$MAGNUSCURRENTHOME/back_end/global/config.h.in is missing!"
+ exit 1
fi
if [ -f $MAGNUSCURRENTHOME/back_end/global/config.h ]
then
- echo " $MAGNUSCURRENTHOME/back_end/global/config.h already exists!"
- echo " Copying it to $MAGNUSCURRENTHOME/back_end/global/config.h.old"
- cp $MAGNUSCURRENTHOME/back_end/global/config.h $MAGNUSCURRENTHOME/back_end/global/config.h.old
+ echo " $MAGNUSCURRENTHOME/back_end/global/config.h already exists!"
+ echo " Copying it to $MAGNUSCURRENTHOME/back_end/global/config.h.old"
+ cp $MAGNUSCURRENTHOME/back_end/global/config.h $MAGNUSCURRENTHOME/back_end/global/config.h.old
fi
sed $SEDSCRIPT < $MAGNUSCURRENTHOME/back_end/global/config.h.in > $MAGNUSCURRENTHOME/back_end/global/config.h
@@ -172,15 +172,15 @@
echo "Creating $MAGNUSCURRENTHOME/back_end/black_boxes/TietzeTrek/Makefile ..."
if [ ! -f $MAGNUSCURRENTHOME/back_end/black_boxes/TietzeTrek/Makefile.in ]
then
- echo "$MAGNUSCURRENTHOME/back_end/black_boxes/TietzeTrek/Makefile.in is missing!"
- exit 1
+ echo "$MAGNUSCURRENTHOME/back_end/black_boxes/TietzeTrek/Makefile.in is missing!"
+ exit 1
fi
if [ -f $MAGNUSCURRENTHOME/back_end/black_boxes/TietzeTrek/Makefile ]
then
- echo " $MAGNUSCURRENTHOME/back_end/black_boxes/TietzeTrek/Makefile already exists!"
- echo " Copying it to $MAGNUSCURRENTHOME/back_end/black_boxes/TietzeTrek/Makefile.old"
- cp $MAGNUSCURRENTHOME/back_end/black_boxes/TietzeTrek/Makefile $MAGNUSCURRENTHOME/back_end/black_boxes/TietzeTrek/Makefile.old
+ echo " $MAGNUSCURRENTHOME/back_end/black_boxes/TietzeTrek/Makefile already exists!"
+ echo " Copying it to $MAGNUSCURRENTHOME/back_end/black_boxes/TietzeTrek/Makefile.old"
+ cp $MAGNUSCURRENTHOME/back_end/black_boxes/TietzeTrek/Makefile $MAGNUSCURRENTHOME/back_end/black_boxes/TietzeTrek/Makefile.old
fi
sed $SEDSCRIPT < $MAGNUSCURRENTHOME/back_end/black_boxes/TietzeTrek/Makefile.in > $MAGNUSCURRENTHOME/back_end/black_boxes/TietzeTrek/Makefile
@@ -192,15 +192,15 @@
echo "Creating $MAGNUSCURRENTHOME/front_end/magnus ..."
if [ ! -f $MAGNUSCURRENTHOME/front_end/magnus.in ]
then
- echo "$MAGNUSCURRENTHOME/front_end/magnus.in is missing!"
- exit 1
+ echo "$MAGNUSCURRENTHOME/front_end/magnus.in is missing!"
+ exit 1
fi
if [ -f $MAGNUSCURRENTHOME/front_end/magnus ]
then
- echo " $MAGNUSCURRENTHOME/front_end/magnus already exists!"
- echo " Copying it to $MAGNUSCURRENTHOME/front_end/magnus.old"
- cp $MAGNUSCURRENTHOME/front_end/magnus $MAGNUSCURRENTHOME/front_end/magnus.old
+ echo " $MAGNUSCURRENTHOME/front_end/magnus already exists!"
+ echo " Copying it to $MAGNUSCURRENTHOME/front_end/magnus.old"
+ cp $MAGNUSCURRENTHOME/front_end/magnus $MAGNUSCURRENTHOME/front_end/magnus.old
fi
sed $SEDSCRIPT < $MAGNUSCURRENTHOME/front_end/magnus.in > $MAGNUSCURRENTHOME/front_end/magnus
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|