Changeset ff4c0c1 in git
- Timestamp:
- Aug 16, 2018, 10:54:56 AM (5 years ago)
- Branches:
- (u'spielwiese', 'a719bcf0b8dbc648b128303a49777a094b57592c')
- Children:
- 2c1877bee39e18edce18852e793125bdfcafb3e0
- Parents:
- 96ece66a46b74893793916e9a6ee4aca46d52f7f
- Location:
- kernel/GBEngine
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
kernel/GBEngine/kstd1.cc
r96ece66 rff4c0c1 1350 1350 if (rField_is_Z(currRing)) 1351 1351 /* strat->red = redRing; */ 1352 strat->red = redRing Integers;1352 strat->red = redRing_Z; 1353 1353 else 1354 1354 strat->red = redRing; -
kernel/GBEngine/kstd2.cc
r96ece66 rff4c0c1 511 511 * reduction procedure for the ring Z/2^m 512 512 */ 513 int redRing Integers(LObject* h,kStrategy strat)513 int redRing_Z (LObject* h,kStrategy strat) 514 514 { 515 515 if (h->IsNull()) return 0; // spoly is zero (can only occure with zero divisors) -
kernel/GBEngine/kutil.cc
r96ece66 rff4c0c1 1334 1334 h.lcm = p_Lcm(p,strat->S[i],currRing); 1335 1335 pSetCoeff0(h.lcm, n_Lcm(pGetCoeff(p), pGetCoeff(strat->S[i]), currRing->cf)); 1336 if (nIsZero(pGetCoeff(h.lcm)))1336 if (nIsZero(pGetCoeff(h.lcm))) 1337 1337 { 1338 1338 strat->cp++; -
kernel/GBEngine/kutil.h
r96ece66 rff4c0c1 505 505 #ifdef HAVE_RINGS 506 506 int redRing (LObject* h,kStrategy strat); 507 int redRing Integers(LObject* h,kStrategy strat);507 int redRing_Z (LObject* h,kStrategy strat); 508 508 int redRiloc (LObject* h,kStrategy strat); 509 509 void enterExtendedSpoly(poly h,kStrategy strat);
Note: See TracChangeset
for help on using the changeset viewer.