Changeset 11c58f in git


Ignore:
Timestamp:
Jul 15, 2013, 7:23:44 PM (11 years ago)
Author:
Hans Schoenemann <hannes@…>
Branches:
(u'spielwiese', 'fe61d9c35bf7c61f2b6cbf1b56e25e2f08d536cc')
Children:
b56f7cdac6964058f31c82c404fab7fa1db92d01
Parents:
53118a0053127a152c39d1a56f019a34f2f6ce87
Message:
fix: do not set minpoly to 0 (in poly.lib)
File:
1 edited

Legend:

Unmodified
Added
Removed
  • Singular/LIB/poly.lib

    r53118a r11c58f  
    736736    execute("ring R=("+charstr(br)+"),(@z,@x(1..n)),(dp(1),"+ordstr(br)+");");
    737737  }
    738   execute("minpoly=number("+mp+");");
     738  if (mp!="0")
     739  {
     740    execute("minpoly=number("+mp+");");
     741  }
    739742  ideal irrel=@x(1..n);
    740743  map f=br,irrel;
Note: See TracChangeset for help on using the changeset viewer.