Changeset 160f8f7 in git


Ignore:
Timestamp:
Apr 15, 1997, 1:11:36 PM (26 years ago)
Author:
Jens Schmidt <schmidt@…>
Branches:
(u'spielwiese', '0d6b7fcd9813a1ca1ed4220cfa2b104b97a0a003')
Children:
40ff315d72a74456226cda819d20ef537a307c6d
Parents:
433d1a6d54832da08d11f72b8842246c26041cac
Message:
calls to macro DEBOUTLN changed to new calling syntax


git-svn-id: file:///usr/local/Singular/svn/trunk@164 2c84dea3-7e68-4137-9b89-c4e89433aadc
Location:
factory
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • factory/cf_linsys.cc

    r433d1a r160f8f7  
    11// emacs edit mode for this file is -*- C++ -*-
    2 // $Id: cf_linsys.cc,v 1.5 1997-04-07 16:01:47 schmidt Exp $
     2// $Id: cf_linsys.cc,v 1.6 1997-04-15 11:06:40 schmidt Exp $
    33
    44/*
    55$Log: not supported by cvs2svn $
     6Revision 1.5  1997/04/07 16:01:47  schmidt
     7#include <config.h> added
     8
    69Revision 1.4  1997/03/26 16:46:46  schmidt
    710debug output rewritten
     
    142145        // calculate the bound for the result
    143146        B = bound( M );
    144         DEBOUTLN( cerr, "bound = ",  B );
     147        DEBOUTLN( cerr, "bound = " <<  B );
    145148
    146149        // find a first solution mod p
  • factory/fac_berlekamp.cc

    r433d1a r160f8f7  
    11// emacs edit mode for this file is -*- C++ -*-
    2 // $Id: fac_berlekamp.cc,v 1.2 1997-04-07 16:17:28 schmidt Exp $
     2// $Id: fac_berlekamp.cc,v 1.3 1997-04-15 11:09:01 schmidt Exp $
    33
    44/*
    55$Log: not supported by cvs2svn $
     6Revision 1.2  1997/04/07 16:17:28  schmidt
     7#include <config.h> added
     8
    69Revision 1.1  1997/03/27 09:34:59  schmidt
    710debug output changed to DEBOUT
     
    245248    QmatFF( f, Q, p );
    246249#ifdef DEBUGOUTPUT
    247     DEBOUTLN( cerr, "Q = ", ' ' );
     250    DEBOUTLN( cerr, "Q = " );
    248251    QprintFF( Q, n );
    249252#endif /* DEBUGOUTPUT */
    250253    k = nullSpaceFF( Q, B, n );
    251254#ifdef DEBUGOUTPUT
    252     DEBOUTLN( cerr, "Q = ", ' ' );
     255    DEBOUTLN( cerr, "Q = " );
    253256    QprintFF( Q, n );
    254257#endif /* DEBUGOUTPUT */
     
    296299    QmatGF( f, Q, gf_q );
    297300#ifdef DEBUGOUTPUT
    298     DEBOUTLN( cerr, "Q = ", ' ' );
     301    DEBOUTLN( cerr, "Q = " );
    299302    QprintGF( Q, n );
    300303#endif /* DEBUGOUTPUT */
    301304    k = nullSpaceGF( Q, B, n );
    302305#ifdef DEBUGOUTPUT
    303     DEBOUTLN( cerr, "Q = ", ' ' );
     306    DEBOUTLN( cerr, "Q = " );
    304307    QprintFF( Q, n );
    305308#endif /* DEBUGOUTPUT */
  • factory/fac_distrib.cc

    r433d1a r160f8f7  
    11// emacs edit mode for this file is -*- C++ -*-
    2 // $Id: fac_distrib.cc,v 1.3 1997-04-07 16:21:32 schmidt Exp $
     2// $Id: fac_distrib.cc,v 1.4 1997-04-15 11:11:36 schmidt Exp $
    33
    44/*
    55 * $Log: not supported by cvs2svn $
     6 * Revision 1.3  1997/04/07 16:21:32  schmidt
     7 * #include <config.h> added
     8 *
    69 * Revision 1.2  1997/03/27 09:39:51  schmidt
    710 * debug output rewritten
     
    8184        ft = I.getItem().factor();
    8285        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 );
    8689        j = 1;
    8790        while ( m > 0 && j <= r ) {
    8891            ut = lc( G[j] );
    89             DEBOUTLN( cerr, "checking with ", ut );
     92            DEBOUTLN( cerr, "checking with " << ut );
    9093            while ( m > 0 && divides( D[i], ut ) ) {
    91                 DEBOUTLN( cerr, "match found", ' ' );
     94                DEBOUTLN( cerr, "match found" );
    9295                m--; ut /= D[i];
    9396                lcG[j] *= ft;
     
    100103        }
    101104    }
    102     DEBOUTLN( cerr, "the leading coeffs before omega and delta correction: ", lcG );
     105    DEBOUTLN( cerr, "the leading coeffs before omega and delta correction: " << lcG );
    103106    if ( omega != 1 ) {
    104107        for ( j = 1; j <= r; j++ ) {
Note: See TracChangeset for help on using the changeset viewer.