Changeset f5d749 in git


Ignore:
Timestamp:
Dec 5, 2000, 2:01:11 PM (22 years ago)
Author:
Olaf Bachmann <obachman@…>
Branches:
(u'jengelh-datetime', 'ceac47cbc86fe4a15902392bdbb9bd2ae0ea02c6')(u'spielwiese', 'a657104b677b4c461d018cbf3204d72d34ad66a9')
Children:
e6243c52793c81123253d462d4029d506b6c7456
Parents:
9f9b9a1a665602bf82b5e271e8cc596d26f25203
Message:
* update


git-svn-id: file:///usr/local/Singular/svn/trunk@4807 2c84dea3-7e68-4137-9b89-c4e89433aadc
Location:
Singular
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • Singular/pInline1.h

    r9f9b9a1 rf5d749  
    77 *  Author:  obachman (Olaf Bachmann)
    88 *  Created: 8/00
    9  *  Version: $Id: pInline1.h,v 1.13 2000-11-03 14:50:19 obachman Exp $
     9 *  Version: $Id: pInline1.h,v 1.14 2000-12-05 13:01:11 obachman Exp $
    1010 *******************************************************************/
    1111#ifndef PINLINE1_H
     
    9999  omTypeAlloc0Bin(poly, p, bin);
    100100  p_MemAdd_NegWeightAdjust(p, r);
    101   p_SetRingOfPoly(p, r);
     101  p_SetRingOfLm(p, r);
    102102  return p;
    103103}
     
    112112  poly np;
    113113  omTypeAllocBin(poly, np, r->PolyBin);
    114   p_SetRingOfPoly(np, r);
     114  p_SetRingOfLm(np, r);
    115115  p_ExpVectorCopy(np, p, r);
    116116  _pNext(np) = NULL;
     
    146146  poly np;
    147147  omTypeAllocBin(poly, np, r->PolyBin);
    148   p_SetRingOfPoly(np, r);
     148  p_SetRingOfLm(np, r);
    149149  p_ExpVectorCopy(np, p, r);
    150150  _pNext(np) = NULL;
  • Singular/pInline2.h

    r9f9b9a1 rf5d749  
    77 *  Author:  obachman (Olaf Bachmann)
    88 *  Created: 8/00
    9  *  Version: $Id: pInline2.h,v 1.21 2000-12-05 12:14:32 obachman Exp $
     9 *  Version: $Id: pInline2.h,v 1.22 2000-12-05 13:01:11 obachman Exp $
    1010 *******************************************************************/
    1111#ifndef PINLINE2_H
     
    216216  poly p;
    217217  omTypeAllocBin(poly, p, bin);
    218   p_SetRingOfPoly(p, r);
     218  p_SetRingOfLm(p, r);
    219219  return p;
    220220}
  • Singular/p_kBucketSetLm__Template.cc

    r9f9b9a1 rf5d749  
    77 *  Author:  obachman (Olaf Bachmann)
    88 *  Created: 8/00
    9  *  Version: $Id: p_kBucketSetLm__Template.cc,v 1.1 2000-11-28 11:50:56 obachman Exp $
     9 *  Version: $Id: p_kBucketSetLm__Template.cc,v 1.2 2000-12-05 13:01:11 obachman Exp $
    1010 *******************************************************************/
    1111
     
    2929      {
    3030        p =  bucket->buckets[j];
    31         if (j == 0) goto Greater;
     31        if (j == 0)
     32        {
     33          if (p != NULL) goto Greater;
     34          j = i;
     35          goto Continue;
     36        }
     37        assume(p != NULL);
    3238        p_MemCmp(bucket->buckets[i]->exp, p->exp, length, ordsgn, goto Equal, goto Greater, goto Continue);
    3339
    3440        Greater:
    3541        {
    36           if (j > 0 && p != NULL && n_IsZero(pGetCoeff(p), r))
     42          if (n_IsZero(pGetCoeff(p), r))
    3743          {
    3844            n_Delete(&pGetCoeff(p), r);
Note: See TracChangeset for help on using the changeset viewer.