Changeset 46910f0 in git


Ignore:
Timestamp:
Jun 5, 2014, 5:02:23 PM (10 years ago)
Author:
Jakob Kröker <kroeker@…>
Branches:
(u'spielwiese', 'fe61d9c35bf7c61f2b6cbf1b56e25e2f08d536cc')
Children:
c402e5e80fbab06a8f91acd8a1f1bda7e51bfc86
Parents:
d7295ff2c24f0d2b03594917a387c981bd47eedd
Message:
bugfix for isSubset, see track ticket 551
Files:
3 added
2 edited

Legend:

Unmodified
Added
Removed
  • Singular/LIB/ehv.lib

    rd7295f r46910f0  
    107107"USAGE:   isSubset(I,J); I, J ideals
    108108RETURN:  integer, 1 if I is a subset of J and 0 otherwise
    109 NOTE:    if J is not a standard basis the result may be wrong
    110109"
    111110{
    112   int s = size(I);
     111  if ( attrib(J,"isSB") == 0) { J = groebner(J); }
     112  int s = ncols(I);
    113113  for(int i=1; i<=s; i++)
    114114    {
  • Tst/Short.lst

    rd7295f r46910f0  
    127127Short/bug_tr489.tst
    128128Short/bug_tr549.tst
     129Short/bug_tr551.tst
    129130Short/bug_x_i_j.tst
    130131Short/charseries.tst
Note: See TracChangeset for help on using the changeset viewer.