Changeset f20518 in git


Ignore:
Timestamp:
Apr 9, 2019, 3:00:16 PM (4 years ago)
Author:
Hans Schoenemann <hannes@…>
Branches:
(u'spielwiese', '8d54773d6c9e2f1d2593a28bc68b7eeab54ed529')
Children:
71d8cc963194f7a7d75dd63c8856982987161c3c
Parents:
bc2ffb3ac3495d903c975099bc679854cfae5a29
Message:
fix: rUnComplet (for order L inssi)
File:
1 edited

Legend:

Unmodified
Added
Removed
  • libpolys/polys/monomials/ring.cc

    rbc2ffb rf20518  
    39023902        {
    39033903          id_Delete(&r->typ[i].data.is.F, r);
    3904           r->typ[i].data.is.F = NULL; // ?
    39053904
    39063905          if( r->typ[i].data.is.pVarOffset != NULL )
    39073906          {
    39083907            omFreeSize((ADDRESS)r->typ[i].data.is.pVarOffset, (r->N +1)*sizeof(int));
    3909             r->typ[i].data.is.pVarOffset = NULL; // ?
    39103908          }
    39113909        }
     
    39143912          if(r->typ[i].data.syz.limit > 0)
    39153913            omFreeSize(r->typ[i].data.syz.syz_index, ((r->typ[i].data.syz.limit) +1)*sizeof(int));
    3916           r->typ[i].data.syz.syz_index = NULL;
    39173914        }
    39183915        else if (r->typ[i].ord_typ == ro_syzcomp)
     
    39333930
    39343931    omFreeSize((ADDRESS)r->VarOffset, (r->N +1)*sizeof(int));
     3932    r->VarOffset=NULL;
    39353933
    39363934    if (r->ordsgn != NULL && r->CmpL_Size != 0)
     3935    {
    39373936      omFreeSize((ADDRESS)r->ordsgn,r->ExpL_Size*sizeof(long));
     3937      r->ordsgn=NULL;
     3938    }
    39383939    if (r->p_Procs != NULL)
     3940    {
    39393941      omFreeSize(r->p_Procs, sizeof(p_Procs_s));
     3942      r->p_Procs=NULL;
     3943    }
    39403944    omfreeSize(r->VarL_Offset, r->VarL_Size*sizeof(int));
     3945    r->VarL_Offset=NULL;
    39413946  }
    39423947  if (r->NegWeightL_Offset!=NULL)
Note: See TracChangeset for help on using the changeset viewer.