Changeset 6be182 in git
- Timestamp:
- Dec 20, 2000, 2:38:21 PM (22 years ago)
- Branches:
- (u'spielwiese', '0d6b7fcd9813a1ca1ed4220cfa2b104b97a0a003')
- Children:
- 15568a0d866c181ee4d8c0528c16f053e1324eac
- Parents:
- 85e6342bb6f468ed007878e11c55866a1428299c
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
Singular/kutil.cc
r85e6342 r6be182 2 2 * Computer Algebra System SINGULAR * 3 3 ****************************************/ 4 /* $Id: kutil.cc,v 1.8 8 2000-12-20 11:15:45obachman Exp $ */4 /* $Id: kutil.cc,v 1.89 2000-12-20 13:38:21 obachman Exp $ */ 5 5 /* 6 6 * ABSTRACT: kernel: utils for kStd … … 2644 2644 h = p; 2645 2645 hn = pNext(h); 2646 long op = pFDeg(hn, strat->tailRing);2646 long op = strat->tailRing->pFDeg(hn, strat->tailRing); 2647 2647 long e; 2648 2648 int l; … … 2653 2653 while(hn != NULL) 2654 2654 { 2655 op = pFDeg(hn, strat->tailRing);2655 op = strat->tailRing->pFDeg(hn, strat->tailRing); 2656 2656 if ((Kstd1_deg>0)&&(op>Kstd1_deg)) goto all_done; 2657 2657 e = pLDeg(hn, &l, strat->tailRing) - op; … … 2679 2679 hn = pNext(h); 2680 2680 if (hn == NULL) goto all_done; 2681 op = pFDeg(hn, strat->tailRing);2681 op = strat->tailRing->pFDeg(hn, strat->tailRing); 2682 2682 if ((Kstd1_deg>0)&&(op>Kstd1_deg)) goto all_done; 2683 2683 e = pLDeg(hn, &l) - op;
Note: See TracChangeset
for help on using the changeset viewer.