Changeset 6298d6 in git
- Timestamp:
- Jul 15, 2013, 12:31:19 PM (10 years ago)
- Branches:
- (u'jengelh-datetime', 'ceac47cbc86fe4a15902392bdbb9bd2ae0ea02c6')(u'spielwiese', 'f875bbaccd0831e36aaed09ff6adeb3eb45aeb94')
- Children:
- 0382d520426f565cac32c4dfe0d40f988d7c50ad
- Parents:
- ee9bbe6149d97d547f224a27ae68ee67f173f19d9af5e1fd287578e090f0a1c2d719a85d22012795
- Files:
-
- 2 added
- 5 edited
- 2 moved
Legend:
- Unmodified
- Added
- Removed
-
factory/ftmpl_inst.cc
ree9bbe r6298d6 70 70 template List<Variable> Difference ( const List<Variable>&, const List<Variable>& ); 71 71 72 // NTL 6 73 #ifdef HAVE_NTL 74 #include<NTL/version.h> 75 #if NTL_MAJOR_VERSION == 6 76 77 #include<NTL/tools.h> 78 #include<NTL/lzz_pE.h> 79 #include<NTL/lzz_pEX.h> 80 #include<NTL/lzz_p.h> 81 #include<NTL/vector.h> 82 #include<NTL/pair.h> 83 #include<NTL/GF2X.h> 84 #include<NTL/GF2EX.h> 85 #include<NTL/ZZ.h> 86 #include<NTL/ZZX.h> 87 #include<NTL/ZZ_pX.h> 88 #include<NTL/vector.h> 89 #ifdef NTL_CLIENT // in <NTL/tools.h>: using of name space NTL 90 NTL_CLIENT 91 #endif 92 template void BlockDestroy<zz_pE> (zz_pE*, long); 93 template void BlockConstruct<zz_pE> (zz_pE*, long); 94 template void BlockDestroy<Pair<zz_pEX, long> > (Pair<zz_pEX, long>*, long); 95 template void BlockDestroy<Pair<GF2EX, long> > (Pair<GF2EX, long>*, long); 96 template void BlockDestroy<Pair<ZZX, long> > (Pair<ZZX, long>*, long); 97 template void BlockDestroy<Pair<ZZ_pX, long> > (Pair<ZZ_pX, long>*, long); 98 template void BlockDestroy<Pair<GF2X, long> > (Pair<GF2X, long>*, long); 99 template void BlockDestroy<Vec<zz_pE> > (Vec<zz_pE>*, long); 100 template class Vec<zz_p>; 101 template class Vec<Vec<zz_p> >; 102 template class Vec<zz_pE>; 103 template class Vec<ZZ>; 104 template class Vec<Vec<ZZ> >; 105 template class Mat<zz_p>; 106 template class Mat<zz_pE>; 107 template class Mat<ZZ>; 108 template class Vec<Pair<zz_pEX, long> >; 109 template class Vec<Pair<GF2EX, long> >; 110 template class Vec<Pair<ZZX, long> >; 111 template class Vec<Pair<ZZ_pX, long> >; 112 template class Vec<Pair<GF2X, long> >; 113 template class Vec<Vec<zz_pE> >; 114 template void swap<zz_pE>(Vec<zz_pE>&, Vec<zz_pE>&); 115 template long operator==<zz_p>(Vec<zz_p> const&, Vec<zz_p> const&); 116 #endif 117 #endif 118 72 119 //}}} 73 120 … … 81 128 template OSTREAM & operator << ( OSTREAM &, const Matrix<CanonicalForm> & ); 82 129 template OSTREAM & operator << ( OSTREAM &, const Array<REvaluation> & ); 130 //template OSTREAM & operator << ( OSTREAM &, const AFactor<CanonicalForm> & ); 83 131 #endif /* NOSTREAMIO */ 84 132 -
factory/gengftables-conway.cc
ree9bbe r6298d6 200 200 // open file to write to 201 201 ostrstream fname; 202 fname << "gftables/ gftable." << p << "." << d<< '\0';202 fname << "gftables/" << q << '\0'; 203 203 char * fn = fname.str(); 204 204 ofstream outfile; -
factory/gfops.cc
ree9bbe r6298d6 108 108 if (gftable_dir) 109 109 { 110 sprintf( buffer, " /gftable.%d.%d", p, n);110 sprintf( buffer, "gftables/%d", q); 111 111 gffilename = (char *)malloc(strlen(gftable_dir) + strlen(buffer) + 1); 112 112 STICKYASSERT(gffilename,"out of memory"); … … 118 118 { 119 119 #ifndef SINGULAR 120 sprintf( buffer, GFTABLEDIR "/gftable.%d.%d", p, n);120 sprintf( buffer, "gftables/%d", q ); 121 121 gffilename = buffer; 122 122 inputfile = fopen( buffer, "r" ); -
factory/singext.h
ree9bbe r6298d6 9 9 #include <factory/cf_gmp.h> 10 10 11 #ifdef SINGULAR 11 12 #include <resources/feFopen.h> 13 #endif 12 14 13 15 /*BEGINPUBLIC*/ -
factory/templates/ftmpl_afactor.cc
ree9bbe r6298d6 26 26 { 27 27 if ( exp() == 1 ) 28 s << "(" << factor() ,", " << minpoly() << ")";28 s << "(" << factor() << ", " << minpoly() << ")"; 29 29 else 30 30 s << "((" << factor() << ")^" << exp() << ", " << minpoly() << ")";
Note: See TracChangeset
for help on using the changeset viewer.