Changeset 3b9cf6 in git for kernel/gfan.cc


Ignore:
Timestamp:
Oct 29, 2009, 5:26:32 PM (14 years ago)
Author:
Martin Monerjan
Branches:
(u'spielwiese', 'fe61d9c35bf7c61f2b6cbf1b56e25e2f08d536cc')
Children:
d1eca415c4ca8674004856bc7a1638c4893f92df
Parents:
61197ff3d42399e95c952f06a3cd10fdd665dd82
Message:
#ifndef NDEBUG for idShow


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

Legend:

Unmodified
Added
Removed
  • kernel/gfan.cc

    r61197f r3b9cf6  
    22Compute the Groebner fan of an ideal
    33$Author: monerjan $
    4 $Date: 2009-10-29 15:54:04 $
    5 $Header: /exports/cvsroot-2/cvsroot/kernel/gfan.cc,v 1.101 2009-10-29 15:54:04 monerjan Exp $
    6 $Id: gfan.cc,v 1.101 2009-10-29 15:54:04 monerjan Exp $
     4$Date: 2009-10-29 16:26:32 $
     5$Header: /exports/cvsroot-2/cvsroot/kernel/gfan.cc,v 1.102 2009-10-29 16:26:32 monerjan Exp $
     6$Id: gfan.cc,v 1.102 2009-10-29 16:26:32 monerjan Exp $
    77*/
    88
     
    225225void facet::printFlipGB()
    226226{
     227#ifndef NDEBUG
    227228        idShow(this->flipGB);
     229#endif
    228230}
    229231               
     
    26972699                ideal rootIdeal;
    26982700                rootIdeal=fast_map(inputIdeal,inputRing,(ideal)theMap, currRing);
     2701#ifndef NDEBUG
    26992702        #ifdef gfan_DEBUG
    27002703                cout << "Root ideal is " << endl;
     
    27032706                rWrite(rootRing);
    27042707                cout << endl;
    2705         #endif 
     2708        #endif
     2709#endif
    27062710               
    27072711                //gcone *gcRoot = new gcone();  //Instantiate the sink
     
    27112715                gcAct->numVars=pVariables;
    27122716                gcAct->getGB(rootIdeal);        //sets gcone::gcBasis
     2717#ifndef NDEBUG
    27132718                idShow(gcAct->gcBasis);
     2719#endif
    27142720                gcAct->getConeNormals(gcAct->gcBasis);  //hopefully compute the normals
    27152721                //gcAct->flip(gcAct->gcBasis,gcAct->facetPtr); 
     
    27312737                gcAct->getGB(inputIdeal);
    27322738                cout << "GB of input ideal is:" << endl;
     2739#ifndef NDEBUG
    27332740                idShow(gcAct->gcBasis);
     2741#endif
    27342742                if(gcAct->isMonomial(gcAct->gcBasis))
    27352743                {
Note: See TracChangeset for help on using the changeset viewer.