Changeset 16262b7 in git


Ignore:
Timestamp:
May 4, 1998, 1:38:57 PM (25 years ago)
Author:
Olaf Bachmann <obachman@…>
Branches:
(u'jengelh-datetime', 'ceac47cbc86fe4a15902392bdbb9bd2ae0ea02c6')(u'spielwiese', 'a800fe4b3e9d37a38c5a10cc0ae9dfa0c15a4ee6')
Children:
bfa2f0a2efa10018731a15f33e610bc213c178f0
Parents:
b1e0d728de187e7f8d741366a8168300b783b9cd
Message:
*idCoeffOfKBase: Corrected dimensions of output matrix, s.t. rows =
size(arg), cols = size(kBase)


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

Legend:

Unmodified
Added
Removed
  • Singular/ideals.cc

    rb1e0d72 r16262b7  
    22*  Computer Algebra System SINGULAR     *
    33****************************************/
    4 /* $Id: ideals.cc,v 1.23 1998-04-29 07:05:25 siebert Exp $ */
     4/* $Id: ideals.cc,v 1.24 1998-05-04 11:38:57 obachman Exp $ */
    55/*
    66* ABSTRACT - all basic methods to manipulate ideals
     
    29332933  intvec * convert;
    29342934  int i=IDELEMS(kbase),j=IDELEMS(arg),k,pos;
    2935 
     2935#if 0
    29362936  while ((i>0) && (kbase->m[i-1]==NULL)) i--;
    29372937  if (idIs0(arg))
     
    29392939  while ((j>0) && (arg->m[j-1]==NULL)) j--;
    29402940  result = mpNew(i,j);
     2941#else
     2942  result = mpNew(i, j);
     2943  while ((j>0) && (arg->m[j-1]==NULL)) j--;
     2944#endif
     2945
    29412946  tempKbase = idCreateSpecialKbase(kbase,&convert);
    29422947  for (k=0;k<j;k++)
Note: See TracChangeset for help on using the changeset viewer.