Changeset 535b07 in git for kernel/GBEngine/kstd1.cc
- Timestamp:
- Jul 7, 2015, 12:51:32 PM (8 years ago)
- Branches:
- (u'spielwiese', 'ec94ef7a30b928574c0c3daf41f6804dff5f6b69')
- Children:
- 22d119e2f3926b708140a4db3479c1c31c0ba384
- Parents:
- d762df9ec71d7bdcea2d647c0b3cc592a7eb400d
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
kernel/GBEngine/kstd1.cc
rd762df9 r535b07 1667 1667 message(strat->P.ecart+strat->P.GetpFDeg(),&olddeg,&reduc,strat, red_result); 1668 1668 // reduce 1669 #if ADIDEBUG 1670 printf("\nThis is P vor red:\n");p_Write(strat->P.p,strat->tailRing);p_Write(strat->P.p1,strat->tailRing);p_Write(strat->P.p2,strat->tailRing); 1671 printf("\nBefore Ll = %i\n", strat->Ll); 1672 #endif 1669 1673 red_result = strat->red(&strat->P,strat); 1674 #if ADIDEBUG 1675 printf("\nThis is P nach red:\n");p_Write(strat->P.p,strat->tailRing);p_Write(strat->P.p1,strat->tailRing);p_Write(strat->P.p2,strat->tailRing); 1676 printf("\nBefore Ll = %i\n", strat->Ll); 1677 #endif 1670 1678 } 1671 1679 … … 1717 1725 enterpairs(strat->P.p,strat->sl,strat->P.ecart,0,strat, strat->tl); 1718 1726 // put in S 1727 1728 #if ADIDEBUG 1729 Print("\n The new pair list L -- after superenterpairs in loop %d -- is:\n",loop_count); 1730 for(int iii=0;iii<=strat->Ll;iii++) 1731 { 1732 printf("\n L[%d]:\n",iii); 1733 PrintS(" ");p_Write(strat->L[iii].p,strat->tailRing); 1734 PrintS(" ");p_Write(strat->L[iii].p1,strat->tailRing); 1735 PrintS(" ");p_Write(strat->L[iii].p2,strat->tailRing); 1736 } 1737 #endif 1719 1738 strat->enterS(strat->P, 1720 1739 posInS(strat,strat->sl,strat->P.p, strat->P.ecart), 1721 1740 strat, strat->tl); 1741 #if ADIDEBUG 1742 printf("\nThis pair has been added to S:\n"); 1743 pWrite(strat->P.p); 1744 pWrite(strat->P.p1); 1745 pWrite(strat->P.p2); 1746 #endif 1722 1747 1723 1748 // apply hilbert criterion … … 1766 1791 for(int iii=0;iii<=strat->tl;iii++) 1767 1792 { 1768 PrintS("\n T[%d]:",iii);1793 printf("\n T[%d]:",iii); 1769 1794 p_Write(strat->T[iii].p,strat->tailRing); 1770 1795 } … … 1802 1827 // } 1803 1828 // } 1829 #ifdef HAVE_RINGS 1830 if(nCoeff_is_Ring_Z(currRing->cf)) 1831 finalReduceByMon(strat); 1832 #endif 1804 1833 if (Q!=NULL) updateResult(strat->Shdl,Q,strat); 1805 1834 SI_RESTORE_OPT1(save1);
Note: See TracChangeset
for help on using the changeset viewer.