Changeset eb1f43 in git
- Timestamp:
- Jul 12, 2018, 5:04:16 PM (5 years ago)
- Branches:
- (u'spielwiese', '8e0ad00ce244dfd0756200662572aef8402f13d5')
- Children:
- 0612fd84c8ed63efc96d7b8645ceb1f37b32cd17
- Parents:
- 6c8f2bd7d8f3d28a5621da4bfc39a75f6d4ce055
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
kernel/GBEngine/kstd2.cc
r6c8f2b reb1f43 2016 2016 } 2017 2017 2018 if ( strat->P.p == NULL && strat->P.t_p == NULL)2018 if ((strat->P.p == NULL) && (strat->P.t_p == NULL)) 2019 2019 { 2020 2020 red_result = 0; … … 2869 2869 { 2870 2870 int cmp = pGetComp(strat->P.sig); 2871 intmax_cmp = IDELEMS(F);2871 unsigned max_cmp = IDELEMS(F); 2872 2872 int* vv = (int*)omAlloc((currRing->N+1)*sizeof(int)); 2873 2873 p_GetExpV (strat->P.p,vv,currRing); … … 2896 2896 // if the element is not the first one in the given index we build all 2897 2897 // possible syzygies with elements of higher index 2898 for ( inti=cmp+1; i<=max_cmp; ++i)2898 for (unsigned i=cmp+1; i<=max_cmp; ++i) 2899 2899 { 2900 2900 pos = -1;
Note: See TracChangeset
for help on using the changeset viewer.