Changeset ff071e in git for kernel/kutil.cc


Ignore:
Timestamp:
Jun 4, 2009, 10:42:07 AM (15 years ago)
Author:
Hans Schönemann <hannes@…>
Branches:
(u'spielwiese', 'fe61d9c35bf7c61f2b6cbf1b56e25e2f08d536cc')
Children:
6a2e9c609792f05bc3eb81c375c2871c68070eb7
Parents:
21323952007759b29c74a5d0fca115a71a216451
Message:
*hannes: gcc 4.3


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

Legend:

Unmodified
Added
Removed
  • kernel/kutil.cc

    r2132395 rff071e  
    22*  Computer Algebra System SINGULAR     *
    33****************************************/
    4 /* $Id: kutil.cc,v 1.142 2009-06-04 08:32:59 Singular Exp $ */
     4/* $Id: kutil.cc,v 1.143 2009-06-04 08:42:06 Singular Exp $ */
    55/*
    66* ABSTRACT: kernel: utils for kStd
     
    64606460    else if (strat->red==redEcart) PrintS("redEcart\n");
    64616461    else if (strat->red==redHomog) PrintS("redHomog\n");
    6462     else  Print("%lx\n",(long)(void*)strat->red);
     6462    else  Print("%p\n",(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("%lx\n",(long)(void*)strat->posInT);
     6482    else  Print("%p\n",(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("%lx\n",(long)(void*)strat->posInL);
     6494    else  Print("%p\n",(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("%lx\n",(long)(void*)strat->enterS);
     6499    else  Print("%p\n",(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("%lx\n",(long)(void*)strat->initEcart);
     6503    else  Print("%p\n",(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("%lx\n",(long)(void*)strat->initEcartPair);
     6507    else  Print("%p\n",(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.