Changeset db3570 in git for Singular/LIB


Ignore:
Timestamp:
Oct 8, 2010, 1:58:58 PM (14 years ago)
Author:
Santiago Laplagne <laplagne@…>
Branches:
(u'spielwiese', 'fe61d9c35bf7c61f2b6cbf1b56e25e2f08d536cc')
Children:
16fba9ba0eeffb62ae953b25e4e83ce25dff0305
Parents:
f8b2a310b09d55aa1dd2adc60a173dc2996435c4
Message:
Fixed bug in positive characteristic.

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

Legend:

Unmodified
Added
Removed
  • Singular/LIB/integralbasis.lib

    rf8b2a3 rdb3570  
    177177//--------------------- moving to a ring with dp ordering ---------------------
    178178  if(ordstr(origR) != "dp(2),C"){
    179     ring R = 0, (var(1), var(2)), dp;
     179    // We change to dp ordering.
     180    list rl = ringlist(origR);
     181    list origOrd = rl[3];
     182    list newOrd = list("dp", intvec(1:nvars(origR))), list("C", 0);
     183    rl[3] = newOrd;
     184    def R = ring(rl);
     185    setring R;
    180186    poly f = fetch(origR, f);
    181187    ideal inputJ = fetch(origR, inputJ);
Note: See TracChangeset for help on using the changeset viewer.