Changeset 160f8f7 in git
- Timestamp:
- Apr 15, 1997, 1:11:36 PM (26 years ago)
- Branches:
- (u'spielwiese', '0d6b7fcd9813a1ca1ed4220cfa2b104b97a0a003')
- Children:
- 40ff315d72a74456226cda819d20ef537a307c6d
- Parents:
- 433d1a6d54832da08d11f72b8842246c26041cac
- Location:
- factory
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
factory/cf_linsys.cc
r433d1a r160f8f7 1 1 // emacs edit mode for this file is -*- C++ -*- 2 // $Id: cf_linsys.cc,v 1. 5 1997-04-07 16:01:47schmidt Exp $2 // $Id: cf_linsys.cc,v 1.6 1997-04-15 11:06:40 schmidt Exp $ 3 3 4 4 /* 5 5 $Log: not supported by cvs2svn $ 6 Revision 1.5 1997/04/07 16:01:47 schmidt 7 #include <config.h> added 8 6 9 Revision 1.4 1997/03/26 16:46:46 schmidt 7 10 debug output rewritten … … 142 145 // calculate the bound for the result 143 146 B = bound( M ); 144 DEBOUTLN( cerr, "bound = " ,B );147 DEBOUTLN( cerr, "bound = " << B ); 145 148 146 149 // find a first solution mod p -
factory/fac_berlekamp.cc
r433d1a r160f8f7 1 1 // emacs edit mode for this file is -*- C++ -*- 2 // $Id: fac_berlekamp.cc,v 1. 2 1997-04-07 16:17:28schmidt Exp $2 // $Id: fac_berlekamp.cc,v 1.3 1997-04-15 11:09:01 schmidt Exp $ 3 3 4 4 /* 5 5 $Log: not supported by cvs2svn $ 6 Revision 1.2 1997/04/07 16:17:28 schmidt 7 #include <config.h> added 8 6 9 Revision 1.1 1997/03/27 09:34:59 schmidt 7 10 debug output changed to DEBOUT … … 245 248 QmatFF( f, Q, p ); 246 249 #ifdef DEBUGOUTPUT 247 DEBOUTLN( cerr, "Q = " , ' ');250 DEBOUTLN( cerr, "Q = " ); 248 251 QprintFF( Q, n ); 249 252 #endif /* DEBUGOUTPUT */ 250 253 k = nullSpaceFF( Q, B, n ); 251 254 #ifdef DEBUGOUTPUT 252 DEBOUTLN( cerr, "Q = " , ' ');255 DEBOUTLN( cerr, "Q = " ); 253 256 QprintFF( Q, n ); 254 257 #endif /* DEBUGOUTPUT */ … … 296 299 QmatGF( f, Q, gf_q ); 297 300 #ifdef DEBUGOUTPUT 298 DEBOUTLN( cerr, "Q = " , ' ');301 DEBOUTLN( cerr, "Q = " ); 299 302 QprintGF( Q, n ); 300 303 #endif /* DEBUGOUTPUT */ 301 304 k = nullSpaceGF( Q, B, n ); 302 305 #ifdef DEBUGOUTPUT 303 DEBOUTLN( cerr, "Q = " , ' ');306 DEBOUTLN( cerr, "Q = " ); 304 307 QprintFF( Q, n ); 305 308 #endif /* DEBUGOUTPUT */ -
factory/fac_distrib.cc
r433d1a r160f8f7 1 1 // emacs edit mode for this file is -*- C++ -*- 2 // $Id: fac_distrib.cc,v 1. 3 1997-04-07 16:21:32schmidt Exp $2 // $Id: fac_distrib.cc,v 1.4 1997-04-15 11:11:36 schmidt Exp $ 3 3 4 4 /* 5 5 * $Log: not supported by cvs2svn $ 6 * Revision 1.3 1997/04/07 16:21:32 schmidt 7 * #include <config.h> added 8 * 6 9 * Revision 1.2 1997/03/27 09:39:51 schmidt 7 10 * debug output rewritten … … 81 84 ft = I.getItem().factor(); 82 85 m = I.getItem().exp(); 83 DEBOUTLN( cerr, "trying to distribute " ,ft );84 DEBOUTLN( cerr, "which is tested with " ,D[i] );85 DEBOUTLN( cerr, "and contained to the power of " ,m );86 DEBOUTLN( cerr, "trying to distribute " << ft ); 87 DEBOUTLN( cerr, "which is tested with " << D[i] ); 88 DEBOUTLN( cerr, "and contained to the power of " << m ); 86 89 j = 1; 87 90 while ( m > 0 && j <= r ) { 88 91 ut = lc( G[j] ); 89 DEBOUTLN( cerr, "checking with " ,ut );92 DEBOUTLN( cerr, "checking with " << ut ); 90 93 while ( m > 0 && divides( D[i], ut ) ) { 91 DEBOUTLN( cerr, "match found" , ' ');94 DEBOUTLN( cerr, "match found" ); 92 95 m--; ut /= D[i]; 93 96 lcG[j] *= ft; … … 100 103 } 101 104 } 102 DEBOUTLN( cerr, "the leading coeffs before omega and delta correction: " ,lcG );105 DEBOUTLN( cerr, "the leading coeffs before omega and delta correction: " << lcG ); 103 106 if ( omega != 1 ) { 104 107 for ( j = 1; j <= r; j++ ) {
Note: See TracChangeset
for help on using the changeset viewer.