Changeset 7523a7 in git for kernel/kutil.cc
- Timestamp:
- Jun 12, 2006, 7:40:10 PM (17 years ago)
- Branches:
- (u'spielwiese', '8e0ad00ce244dfd0756200662572aef8402f13d5')
- Children:
- ffde366b5edf43184cdef9fba1212ec84b1b00c5
- Parents:
- d2bf5007073dfa4f5f78e737768f464d25fcb0b6
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
kernel/kutil.cc
rd2bf50 r7523a7 2 2 * Computer Algebra System SINGULAR * 3 3 ****************************************/ 4 /* $Id: kutil.cc,v 1.2 7 2006-06-12 14:27:23 SingularExp $ */4 /* $Id: kutil.cc,v 1.28 2006-06-12 17:40:09 wienand Exp $ */ 5 5 /* 6 6 * ABSTRACT: kernel: utils for kStd … … 1854 1854 deleteInL(strat->L,&strat->Ll,j,strat); 1855 1855 strat->c3++; 1856 Print("|UL|");1856 // Print("|UL|"); 1857 1857 } 1858 1858 } … … 1895 1895 if (i < 0) break; 1896 1896 // Element is from B and has the same lcm as L[j] 1897 if ((strat->L[i].p2 == p) && pLmEqual(strat->L[j].lcm,strat->L[i].lcm) 1898 #ifdef HAVE_RING2TOM 1899 && nGreater(pGetCoeff(strat->L[j].lcm), pGetCoeff(strat->L[i].lcm)) 1900 #endif 1901 ) 1897 if ((strat->L[i].p2 == p) && nGreater(pGetCoeff(strat->L[j].lcm), pGetCoeff(strat->L[i].lcm)) 1898 && pLmEqual(strat->L[j].lcm,strat->L[i].lcm)) 1902 1899 { 1903 1900 /*L[i] could be canceled but we search for a better one to cancel*/ 1904 1901 strat->c3++; 1905 Print("|EP|");1902 // Print("|EP|"); 1906 1903 if (isInPairsetL(i-1,strat->L[j].p1,strat->L[i].p1,&l,strat) 1907 1904 && (pNext(strat->L[l].p) == strat->tail) 1908 1905 && (!pLmEqual(strat->L[i].p,strat->L[l].p)) 1909 #ifdef HAVE_RING2TOM1910 // && 1 == 01911 #endif1912 1906 && pDivisibleBy(p,strat->L[l].lcm)) 1913 1907 {
Note: See TracChangeset
for help on using the changeset viewer.