Changeset 2c1877 in git


Ignore:
Timestamp:
Aug 16, 2018, 11:28:09 AM (6 years ago)
Author:
Christian Eder
Branches:
(u'spielwiese', '5b153614cbc72bfa198d75b1e9e33dab2645d9fe')
Children:
7d405eac6c437045eb3f0923568aea729aab4594
Parents:
ff4c0c11dc6a44dd3a861bbaa15e41ab4d071d7b
Message:
fixes calling convention for finding divisor in T set
Location:
kernel/GBEngine
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • kernel/GBEngine/kstd2.cc

    rff4c0c1 r2c1877  
    8383// return -1 if no divisor is found
    8484//        number of first divisor, otherwise
    85 int kFindDivisibleByInTIntegers(const kStrategy strat, const LObject* L, const int start)
     85int kFindDivisibleByInT_Z(const kStrategy strat, const LObject* L, const int start)
    8686{
    8787  unsigned long not_sev = ~L->sev;
     
    536536    j = kFindDivisibleByInT(strat, h);
    537537    if (j < 0) {
    538       j = kFindDivisibleByInTIntegers(strat, h);
     538      j = kFindDivisibleByInT_Z(strat, h);
    539539      if (j < 0)
    540540      {
  • kernel/GBEngine/kutil.h

    rff4c0c1 r2c1877  
    594594///        number of first divisor in T, otherwise
    595595int kFindDivisibleByInT(const kStrategy strat, const LObject* L, const int start=0);
    596 int kFindDivisibleByInTIntegers(const kStrategy strat, const LObject* L, const int start=0);
     596int kFindDivisibleByInT_Z(const kStrategy strat, const LObject* L, const int start=0);
    597597
    598598/// return -1 if no divisor is found
Note: See TracChangeset for help on using the changeset viewer.