Changeset 739881 in git


Ignore:
Timestamp:
Dec 14, 2011, 3:53:55 PM (11 years ago)
Author:
Hans Schoenemann <hannes@…>
Branches:
(u'spielwiese', '8d54773d6c9e2f1d2593a28bc68b7eeab54ed529')
Children:
6f6320b9e405525cc39ba4d1e6e22d95e179106593f7ef6b1b74542646ed5510d7cd20f45e9d2757
Parents:
69ed5243c7b1d76bdf25206c9670341020c3e5d9
Message:
fix: kDebugPrint
File:
1 edited

Legend:

Unmodified
Added
Removed
  • kernel/kutil.cc

    r69ed52 r739881  
    22*  Computer Algebra System SINGULAR     *
    33****************************************/
    4 /* $Id$ */
    54/*
    65* ABSTRACT: kernel: utils for kStd
     
    2524#include <polys/nc/nc.h>
    2625#include <polys/nc/sca.h>
     26#include <polys/weight.h> /* for kDebugPrint: maxdegreeWecart*/
    2727#ifdef KDEBUG
    2828#undef KDEBUG
     
    67196719  Print("homog=%d, LazyDegree=%d, LazyPass=%d, ak=%d,\n",
    67206720         strat->homog, strat->LazyDegree,strat->LazyPass, strat->ak);
    6721   Print("honey=%d, sugarCrit=%d, Gebauer=%d, noTailReduction=%d\n",
     6721  Print("honey=%d, sugarCrit=%d, Gebauer=%d, noTailReduction=%d, use_buckets: %d\n",
    67226722         strat->honey,strat->sugarCrit,strat->Gebauer,strat->noTailReduction,strat->use_buckets);
    67236723  Print("posInLDependsOnLength=%d, use_buckets=%d\n",
     
    67366736    else if (currRing->pLDeg==pLDeg1_WFirstTotalDegree) PrintS("pLDeg1_WFirstTotalDegree");
    67376737    else if (currRing->pLDeg==pLDeg1c_WFirstTotalDegree) PrintS("pLDeg1c_WFirstTotalDegree");
     6738    else if (currRing->pLDeg==maxdegreeWecart) PrintS("maxdegreeWecart");
    67386739    else Print("? (%lx)", (long)currRing->pLDeg);
    67396740    PrintS(" / ");
     
    67496750    else if (strat->tailRing->pLDeg==pLDeg1_WFirstTotalDegree) PrintS("pLDeg1_WFirstTotalDegree");
    67506751    else if (strat->tailRing->pLDeg==pLDeg1c_WFirstTotalDegree) PrintS("pLDeg1c_WFirstTotalDegree");
     6752    else if (strat->tailRing->pLDeg==maxdegreeWecart) PrintS("maxdegreeWecart");
    67516753    else Print("? (%lx)", (long)strat->tailRing->pLDeg);
    67526754    Print(" syzring:%d, syzComp(strat):%d syzComb(ring)\n",rIsSyzIndexRing(currRing),strat->syzComp,rGetCurrSyzLimit(currRing));
Note: See TracChangeset for help on using the changeset viewer.