Changeset e8f898 in git
- Timestamp:
- Feb 25, 2014, 1:56:06 PM (10 years ago)
- Branches:
- (u'spielwiese', '8e0ad00ce244dfd0756200662572aef8402f13d5')
- Children:
- 137883ef0bd378a1afb5d49f2c94c48dc06e8c9c
- Parents:
- be7a5d1166e45033b6b760b23ded5cc68cb2fe00
- git-author:
- Hans Schoenemann <hannes@mathematik.uni-kl.de>2014-02-25 13:56:06+01:00
- git-committer:
- Hans Schoenemann <hannes@mathematik.uni-kl.de>2014-02-25 13:57:00+01:00
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
Singular/LIB/normal.lib
rbe7a5d1 re8f898 2807 2807 } 2808 2808 list HNEXP=hnexpansion(f); 2809 if (typeof(HNEXP[1])=="ring") { 2809 if (typeof(HNEXP[1])=="ring") 2810 { 2810 2811 def altring = basering; 2811 2812 def HNEring = HNEXP[1]; setring HNEring; … … 6617 6618 a = is_injective(Qnormap,QAS); //a. Test for injectivity of Qnormap 6618 6619 dbprint ( prl, "injective: "+string(a) ); 6619 if ( n==1 ) { 6620 def result = intvec(a); 6620 if ( n==1 ) 6621 { 6622 intvec result = intvec(a); 6621 6623 setring BAS; 6622 return (result); 6624 return (result); 6623 6625 } 6624 6626 a; … … 6628 6630 b = mapIsFinite(normap,BAS,lnorid[2]); //b. Test for finiteness of normap 6629 6631 dbprint ( prl, "finite: "+string(b) ); 6630 if ( n==2 ) { 6631 def result = intvec(a,b); 6632 if ( n==2 ) 6633 { 6634 intvec result = intvec(a,b); 6632 6635 setring BAS; 6633 return (result); 6636 return (result); 6634 6637 } 6635 6638 b; … … 6649 6652 int d1 = (d==0); //d1=1 if delta=0 6650 6653 dbprint ( prl, "delta: "+string(d) ); 6651 defresult = intvec(a,b,d1);6654 intvec result = intvec(a,b,d1); 6652 6655 setring BAS; 6653 6656 return(result);
Note: See TracChangeset
for help on using the changeset viewer.