Changeset 2132395 in git for kernel/kutil.cc


Ignore:
Timestamp:
Jun 4, 2009, 10:32:59 AM (15 years ago)
Author:
Hans Schönemann <hannes@…>
Branches:
(u'spielwiese', '17f1d200f27c5bd38f5dfc6e8a0879242279d1d8')
Children:
ff071ec5a4a263c7cf30b4d3c2fa92403f07e08e
Parents:
6867f525aa45f6c8eaffe5bab6bb413b0cebc9af
Message:
*hannes: gcc 4.3


git-svn-id: file:///usr/local/Singular/svn/trunk@11869 2c84dea3-7e68-4137-9b89-c4e89433aadc
File:
1 edited

Legend:

Unmodified
Added
Removed
  • kernel/kutil.cc

    r6867f5 r2132395  
    22*  Computer Algebra System SINGULAR     *
    33****************************************/
    4 /* $Id: kutil.cc,v 1.141 2009-05-29 16:21:26 Singular Exp $ */
     4/* $Id: kutil.cc,v 1.142 2009-06-04 08:32:59 Singular Exp $ */
    55/*
    66* ABSTRACT: kernel: utils for kStd
     
    46784678      Print("\n  %d:",i);
    46794679      strat->T[i].wrp();
    4680       Print(" o:%d e:%d l:%d",
     4680      Print(" o:%ld e:%d l:%d",
    46814681        strat->T[i].pFDeg(),strat->T[i].ecart,strat->T[i].length);
    46824682    }
     
    46934693    PrintS("\n  p : ");
    46944694    strat->L[i].wrp();
    4695     Print("  o:%d e:%d l:%d",
     4695    Print("  o:%ld e:%d l:%d",
    46964696          strat->L[i].pFDeg(),strat->L[i].ecart,strat->L[i].length);
    46974697  }
     
    64606460    else if (strat->red==redEcart) PrintS("redEcart\n");
    64616461    else if (strat->red==redHomog) PrintS("redHomog\n");
    6462     else  Print("%x\n",strat->red);
     6462    else  Print("%lx\n",(long)(void*)strat->red);
    64636463  PrintS("posInT: ");
    64646464    if (strat->posInT==posInT0) PrintS("posInT0\n");
     
    64806480    else if (strat->posInT==posInT_EcartpLength) PrintS("posInT_EcartpLength\n");
    64816481    else if (strat->posInT==posInTrg0) PrintS("posInTrg0\n");
    6482     else  Print("%x\n",strat->posInT);
     6482    else  Print("%lx\n",(long)(void*)strat->posInT);
    64836483  PrintS("posInL: ");
    64846484    if (strat->posInL==posInL0) PrintS("posInL0\n");
     
    64926492    else if (strat->posInL==posInLSpecial) PrintS("posInLSpecial\n");
    64936493    else if (strat->posInL==posInLrg0) PrintS("posInLrg0\n");
    6494     else  Print("%x\n",strat->posInL);
     6494    else  Print("%lx\n",(long)(void*)strat->posInL);
    64956495  PrintS("enterS: ");
    64966496    if (strat->enterS==enterSBba) PrintS("enterSBba\n");
    64976497    else if (strat->enterS==enterSMora) PrintS("enterSMora\n");
    64986498    else if (strat->enterS==enterSMoraNF) PrintS("enterSMoraNF\n");
    6499     else  Print("%x\n",strat->enterS);
     6499    else  Print("%lx\n",(long)(void*)strat->enterS);
    65006500  PrintS("initEcart: ");
    65016501    if (strat->initEcart==initEcartBBA) PrintS("initEcartBBA\n");
    65026502    else if (strat->initEcart==initEcartNormal) PrintS("initEcartNormal\n");
    6503     else  Print("%x\n",strat->initEcart);
     6503    else  Print("%lx\n",(long)(void*)strat->initEcart);
    65046504  PrintS("initEcartPair: ");
    65056505    if (strat->initEcartPair==initEcartPairBba) PrintS("initEcartPairBba\n");
    65066506    else if (strat->initEcartPair==initEcartPairMora) PrintS("initEcartPairMora\n");
    6507     else  Print("%x\n",strat->initEcartPair);
     6507    else  Print("%lx\n",(long)(void*)strat->initEcartPair);
    65086508  Print("homog=%d, LazyDegree=%d, LazyPass=%d, ak=%d,\n",
    65096509         strat->homog, strat->LazyDegree,strat->LazyPass, strat->ak);
Note: See TracChangeset for help on using the changeset viewer.