Changeset b83126e in git


Ignore:
Timestamp:
Apr 29, 1998, 6:28:19 PM (26 years ago)
Author:
Hans Schönemann <hannes@…>
Branches:
(u'spielwiese', 'fe61d9c35bf7c61f2b6cbf1b56e25e2f08d536cc')
Children:
4f2f1a225c2f5316f54b3e86b479647737ffee57
Parents:
d511af07c9330536c75e804d06eba8fd7f5a56b0
Message:
* hannes: added filed list_length to ssyStrategy


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

Legend:

Unmodified
Added
Removed
  • Singular/ChangeLog

    rd511af rb83126e  
     1Wed Apr 29 18:26:19 MET DST 1998 hannes
     2        * added filed list_length tossyStrategy
     3        ( for conversion list <-> resolution): syz.h, syz1.cc, iparith.cc
    141998-04-29  Olaf Bachmann  <obachman@mathematik.uni-kl.de>
    25
  • Singular/iparith.cc

    rd511af rb83126e  
    17121712  if (r==NULL) return TRUE;
    17131713  //res->data=(void *)liMakeResolv(r,l,wmaxl,u->Typ(),weights);
     1714  r->list_length=wmaxl;
    17141715  res->data=(void *)r;
    17151716  return FALSE;
  • Singular/syz.h

    rd511af rb83126e  
    44*  Computer Algebra System SINGULAR     *
    55****************************************/
    6 /* $Id: syz.h,v 1.8 1998-04-29 07:05:30 siebert Exp $ */
     6/* $Id: syz.h,v 1.9 1998-04-29 16:28:18 Singular Exp $ */
    77/*
    88* ABSTRACT: Resolutions
     
    2828class ssyStrategy{
    2929  public:
    30   int length;
    3130  int ** truecomponents;
    3231  int ** backcomponents;
     
    4039  resolvente fullres;
    4140  resolvente minres;
    42   int references;
    4341  int * binom;
    44   int highdeg_1;
    4542  intvec * resolution;
    4643  intvec * cw;
     44  int highdeg_1;
     45  int length;
     46  short list_length;
     47  short references;
    4748};
    4849
  • Singular/syz1.cc

    rd511af rb83126e  
    22*  Computer Algebra System SINGULAR     *
    33****************************************/
    4 /* $Id: syz1.cc,v 1.26 1998-04-29 07:20:43 siebert Exp $ */
     4/* $Id: syz1.cc,v 1.27 1998-04-29 16:28:19 Singular Exp $ */
    55/*
    66* ABSTRACT: resolutions
     
    22662266    }
    22672267  }
    2268   return liMakeResolv(trueres,syzstr->length,-1,typ0,w);
     2268  return liMakeResolv(trueres,syzstr->length,syzstr->list_length,typ0,w);
    22692269}
    22702270
     
    22812281      result->fullres[i] = idCopy(fr[i]);
    22822282  }
     2283  result->list_length=result->length;
    22832284  Free((ADDRESS)fr,(result->length)*sizeof(ideal));
    22842285  return result;
Note: See TracChangeset for help on using the changeset viewer.