Changeset 551fd7 in git for Singular/ideals.cc


Ignore:
Timestamp:
Nov 16, 1999, 1:39:31 PM (24 years ago)
Author:
Olaf Bachmann <obachman@…>
Branches:
(u'spielwiese', 'fe61d9c35bf7c61f2b6cbf1b56e25e2f08d536cc')
Children:
97d3c00617cfd87ee2359033f8b2ae1bbf23a456
Parents:
5952b6d526bb76067dc7af45610780364733945c
Message:
* small bug fixes


git-svn-id: file:///usr/local/Singular/svn/trunk@3830 2c84dea3-7e68-4137-9b89-c4e89433aadc
File:
1 edited

Legend:

Unmodified
Added
Removed
  • Singular/ideals.cc

    r5952b6 r551fd7  
    22*  Computer Algebra System SINGULAR     *
    33****************************************/
    4 /* $Id: ideals.cc,v 1.73 1999-11-15 17:20:06 obachman Exp $ */
     4/* $Id: ideals.cc,v 1.74 1999-11-16 12:39:27 obachman Exp $ */
    55/*
    66* ABSTRACT - all basic methods to manipulate ideals
     
    13471347*/
    13481348ideal idSyzygies (ideal  h1, tHomog h,intvec **w, BOOLEAN setSyzComp,
    1349                   BOOLEAN setRegularity, int &deg)
     1349                  BOOLEAN setRegularity, int *deg)
    13501350{
    13511351  ideal s_h1;
     
    14261426  idSkipZeroes(e);
    14271427 
    1428   if ((!isMonomial)
     1428  if (deg != NULL
     1429  && (!isMonomial)
    14291430  && (!TEST_OPT_NOTREGULARITY)
    14301431  && (setRegularity)
     
    14361437    resolvente res = sySchreyerResolvente(e,-1,&length,TRUE, TRUE);
    14371438    intvec * dummy = syBetti(res,length,&reg, *w);
    1438     deg = reg+2;
     1439    *deg = reg+2;
    14391440    delete dummy;
    14401441    for (j=0;j<length;j++)
Note: See TracChangeset for help on using the changeset viewer.