Changeset 0e9b4e in git for Singular


Ignore:
Timestamp:
Oct 20, 1999, 3:30:02 PM (25 years ago)
Author:
Olaf Bachmann <obachman@…>
Branches:
(u'fieker-DuVal', '117eb8c30fc9e991c4decca4832b1d19036c4c65')(u'spielwiese', 'fc741b6502fd8a97288eaa3eba6e5220f3c3df87')
Children:
b82c79787be43aa8ad783130c1c619bf5f32e5a6
Parents:
75a7a29b7eff9b80934cb3a0bb1f565fbbfbfe8a
Message:
* clean up


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

Legend:

Unmodified
Added
Removed
  • Singular/ideals.cc

    r75a7a2 r0e9b4e  
    22*  Computer Algebra System SINGULAR     *
    33****************************************/
    4 /* $Id: ideals.cc,v 1.66 1999-10-20 11:52:00 obachman Exp $ */
     4/* $Id: ideals.cc,v 1.67 1999-10-20 13:30:00 obachman Exp $ */
    55/*
    66* ABSTRACT - all basic methods to manipulate ideals
     
    15551555  j = IDELEMS(s_h1);
    15561556  if (s_quot!=NULL) idDelete(&s_quot);
    1557 
     1557  idDelete(&s_h1);
     1558 
    15581559  if (syz_ring!=orig_ring)
    15591560    rChangeCurrRing(orig_ring,TRUE);
  • Singular/iparith.cc

    r75a7a2 r0e9b4e  
    22*  Computer Algebra System SINGULAR     *
    33****************************************/
    4 /* $Id: iparith.cc,v 1.181 1999-10-20 07:35:50 siebert Exp $ */
     4/* $Id: iparith.cc,v 1.182 1999-10-20 13:30:01 obachman Exp $ */
    55
    66/*
     
    17481748  idhdl h=(idhdl)v->data;
    17491749  // CopyD for IDEAL_CMD and MODUL_CMD are identical:
    1750   res->data = (char *)idLiftStd((ideal)u->CopyD(IDEAL_CMD), currQuotient,
     1750  res->data = (char *)idLiftStd((ideal)u->Data(), currQuotient,
    17511751              &(h->data.umatrix),testHomog);
    17521752  setFlag(res,FLAG_STD);
  • Singular/ipid.cc

    r75a7a2 r0e9b4e  
    22*  Computer Algebra System SINGULAR     *
    33****************************************/
    4 /* $Id: ipid.cc,v 1.35 1999-10-14 14:27:08 obachman Exp $ */
     4/* $Id: ipid.cc,v 1.36 1999-10-20 13:30:02 obachman Exp $ */
    55
    66/*
     
    726726  while (p!=NULL)
    727727  {
    728     if (p->pi==pi)
     728    if (p->pi==pi && pi->ref <= 1)
    729729    {
    730730      Warn("`%s` in use, can not be killed",pi->procname);
  • Singular/syz2.cc

    r75a7a2 r0e9b4e  
    22*  Computer Algebra System SINGULAR     *
    33****************************************/
    4 /* $Id: syz2.cc,v 1.5 1999-10-19 17:19:38 obachman Exp $ */
     4/* $Id: syz2.cc,v 1.6 1999-10-20 13:30:02 obachman Exp $ */
    55/*
    66* ABSTRACT: resolutions
     
    11771177  syzstr->Firstelem = (int**)Alloc0((*length+1)*sizeof(int*));
    11781178  syzstr->hilb_coeffs = (intvec**)Alloc0((*length+1)*sizeof(intvec*));
     1179  syzstr->sev = (unsigned long **)Alloc0((*length+1)*sizeof(unsigned long*));
    11791180  syzstr->bucket = kBucketCreate();
    11801181  syzstr->syz_bucket = kBucketCreate();
Note: See TracChangeset for help on using the changeset viewer.