Changeset 048ea3 in git


Ignore:
Timestamp:
Jan 3, 2015, 1:32:45 AM (9 years ago)
Author:
Oleksandr Motsak <motsak@…>
Branches:
(u'spielwiese', 'd0474371d8c5d8068ab70bfb42719c97936b18a6')
Children:
5c0f71e4b9ac7843667808bff1c5a036d92bc640
Parents:
f533f6f7667328bccb271b19b2f603aaebe41596
git-author:
Oleksandr Motsak <motsak@mathematik.uni-kl.de>2015-01-03 01:32:45+01:00
git-committer:
Oleksandr Motsak <motsak@mathematik.uni-kl.de>2015-01-03 01:40:18+01:00
Message:
Make sure that input is tailreduced and interreduced (for s_res)
File:
1 edited

Legend:

Unmodified
Added
Removed
  • Singular/LIB/schreyer.lib

    rf533f6 r048ea3  
    600600  }
    601601
    602   int @IS_A_SB = attrib(M, "isSB"); // ??? only if all weights were zero?!
    603 
    604   if( !@IS_A_SB )
    605   {
    606     def opts = option(get);
    607     option(redSB); option(redTail);
    608     M = std(M);
    609     option(set, opts);
    610     kill opts;
    611   }
    612 
    613   M = simplify(M, 1 + 2 + 4 + 32);
     602  def opts = option(get);
     603  option(redSB); option(redTail);
     604    M = simplify(interred(groebner(M)), 1 + 2 + 4 + 32); // NOTE: we require interreduced GB for input
     605  option(set, opts); kill opts;
     606 
     607//  int @IS_A_SB = attrib(M, "isSB");  if( !@IS_A_SB )  {  } else  {  }
     608// attrib(M, "isSB", 1);
    614609
    615610  if( @IGNORETAILS )
Note: See TracChangeset for help on using the changeset viewer.