Changeset eb1f43 in git


Ignore:
Timestamp:
Jul 12, 2018, 5:04:16 PM (6 years ago)
Author:
Hans Schoenemann <hannes@…>
Branches:
(u'spielwiese', '17f1d200f27c5bd38f5dfc6e8a0879242279d1d8')
Children:
0612fd84c8ed63efc96d7b8645ceb1f37b32cd17
Parents:
6c8f2bd7d8f3d28a5621da4bfc39a75f6d4ce055
Message:
compiler warnings
File:
1 edited

Legend:

Unmodified
Added
Removed
  • kernel/GBEngine/kstd2.cc

    r6c8f2b reb1f43  
    20162016    }
    20172017
    2018     if (strat->P.p == NULL && strat->P.t_p == NULL)
     2018    if ((strat->P.p == NULL) && (strat->P.t_p == NULL))
    20192019    {
    20202020      red_result = 0;
     
    28692869      {
    28702870        int cmp     = pGetComp(strat->P.sig);
    2871         int max_cmp = IDELEMS(F);
     2871        unsigned max_cmp = IDELEMS(F);
    28722872        int* vv = (int*)omAlloc((currRing->N+1)*sizeof(int));
    28732873        p_GetExpV (strat->P.p,vv,currRing);
     
    28962896          // if the element is not the first one in the given index we build all
    28972897          // possible syzygies with elements of higher index
    2898           for (int i=cmp+1; i<=max_cmp; ++i)
     2898          for (unsigned i=cmp+1; i<=max_cmp; ++i)
    28992899          {
    29002900            pos = -1;
Note: See TracChangeset for help on using the changeset viewer.