Changeset 29b5e9d in git
- Timestamp:
- Jan 22, 2015, 10:11:30 AM (9 years ago)
- Branches:
- (u'spielwiese', '8e0ad00ce244dfd0756200662572aef8402f13d5')
- Children:
- 4b278ca27388e13838313dcd3b914338f9e5dbf3d181eea62bf528f5777c224499fbf26cccac5ff7
- Parents:
- 048f2223e4bc5492067385a8169f1c5ba10f6b86
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
Singular/LIB/primdec.lib
r048f22 r29b5e9d 2554 2554 } 2555 2555 2556 if(((homo==1)||(a ==1))&&(find(ordstr(basering),"l")==0)2556 if(((homo==1)||(a))&&(find(ordstr(basering),"l")==0) 2557 2557 &&(find(ordstr(basering),"s")==0)) 2558 2558 { … … 2561 2561 ideal i=imap(P,i); 2562 2562 ideal j=i; 2563 if(a ==1)2563 if(a) 2564 2564 { 2565 2565 attrib(j,"isSB",1); … … 2659 2659 int homo=homog(i); 2660 2660 2661 if(((homo==1)||(a ==1))&&(find(ordstr(basering),"l")==0)2661 if(((homo==1)||(a))&&(find(ordstr(basering),"l")==0) 2662 2662 &&(find(ordstr(basering),"s")==0)) 2663 2663 { … … 2666 2666 ideal i=imap(P,i); 2667 2667 ideal j=i; 2668 if(a ==1)2668 if(a) 2669 2669 { 2670 2670 attrib(j,"isSB",1); … … 3038 3038 ideal peek=i; 3039 3039 ideal ser,tras; 3040 int isS= (attrib(i,"isSB")==1);3040 int isS=attrib(i,"isSB"); 3041 3041 3042 3042 if(size(#)>0) … … 7541 7541 list result; 7542 7542 intvec @hilb; 7543 int isS= (attrib(i,"isSB")==1);7543 int isS=attrib(i,"isSB"); 7544 7544 7545 7545 // Debug … … 7591 7591 if(homo==1) 7592 7592 { 7593 if(attrib(i,"isSB")!=1) 7593 if(attrib(i,"isSB")) 7594 { 7595 ltras=i,i; 7596 } 7597 else 7594 7598 { 7595 7599 //ltras=mstd(i); 7596 7600 tras=groebner(i); 7597 7601 ltras=tras,tras; 7598 attrib(ltras[1],"isSB",1); 7599 } 7600 else 7601 { 7602 ltras=i,i; 7603 attrib(ltras[1],"isSB",1); 7604 } 7602 } 7603 attrib(ltras[1],"isSB",1); 7605 7604 tras = ltras[1]; 7606 7605 attrib(tras,"isSB",1);
Note: See TracChangeset
for help on using the changeset viewer.