Changeset ff4c0c1 in git


Ignore:
Timestamp:
Aug 16, 2018, 10:54:56 AM (5 years ago)
Author:
Christian Eder
Branches:
(u'spielwiese', 'a719bcf0b8dbc648b128303a49777a094b57592c')
Children:
2c1877bee39e18edce18852e793125bdfcafb3e0
Parents:
96ece66a46b74893793916e9a6ee4aca46d52f7f
Message:
renaming of function for reduction over Z to fit to new naming convention
Location:
kernel/GBEngine
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • kernel/GBEngine/kstd1.cc

    r96ece66 rff4c0c1  
    13501350    if (rField_is_Z(currRing))
    13511351      /* strat->red = redRing; */
    1352       strat->red = redRingIntegers;
     1352      strat->red = redRing_Z;
    13531353    else
    13541354      strat->red = redRing;
  • kernel/GBEngine/kstd2.cc

    r96ece66 rff4c0c1  
    511511*  reduction procedure for the ring Z/2^m
    512512*/
    513 int redRingIntegers (LObject* h,kStrategy strat)
     513int redRing_Z (LObject* h,kStrategy strat)
    514514{
    515515  if (h->IsNull()) return 0; // spoly is zero (can only occure with zero divisors)
  • kernel/GBEngine/kutil.cc

    r96ece66 rff4c0c1  
    13341334  h.lcm = p_Lcm(p,strat->S[i],currRing);
    13351335  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)))
    13371337  {
    13381338      strat->cp++;
  • kernel/GBEngine/kutil.h

    r96ece66 rff4c0c1  
    505505#ifdef HAVE_RINGS
    506506int redRing (LObject* h,kStrategy strat);
    507 int redRingIntegers (LObject* h,kStrategy strat);
     507int redRing_Z (LObject* h,kStrategy strat);
    508508int redRiloc (LObject* h,kStrategy strat);
    509509void enterExtendedSpoly(poly h,kStrategy strat);
Note: See TracChangeset for help on using the changeset viewer.