Changeset 2c1877 in git
- Timestamp:
- Aug 16, 2018, 11:28:09 AM (5 years ago)
- Branches:
- (u'spielwiese', 'a719bcf0b8dbc648b128303a49777a094b57592c')
- Children:
- 7d405eac6c437045eb3f0923568aea729aab4594
- Parents:
- ff4c0c11dc6a44dd3a861bbaa15e41ab4d071d7b
- Location:
- kernel/GBEngine
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
kernel/GBEngine/kstd2.cc
rff4c0c1 r2c1877 83 83 // return -1 if no divisor is found 84 84 // number of first divisor, otherwise 85 int kFindDivisibleByInT Integers(const kStrategy strat, const LObject* L, const int start)85 int kFindDivisibleByInT_Z(const kStrategy strat, const LObject* L, const int start) 86 86 { 87 87 unsigned long not_sev = ~L->sev; … … 536 536 j = kFindDivisibleByInT(strat, h); 537 537 if (j < 0) { 538 j = kFindDivisibleByInT Integers(strat, h);538 j = kFindDivisibleByInT_Z(strat, h); 539 539 if (j < 0) 540 540 { -
kernel/GBEngine/kutil.h
rff4c0c1 r2c1877 594 594 /// number of first divisor in T, otherwise 595 595 int kFindDivisibleByInT(const kStrategy strat, const LObject* L, const int start=0); 596 int kFindDivisibleByInT Integers(const kStrategy strat, const LObject* L, const int start=0);596 int kFindDivisibleByInT_Z(const kStrategy strat, const LObject* L, const int start=0); 597 597 598 598 /// return -1 if no divisor is found
Note: See TracChangeset
for help on using the changeset viewer.