Changeset ecc5d0 in git
- Timestamp:
- Feb 25, 2014, 12:09:27 PM (10 years ago)
- Branches:
- (u'spielwiese', '8e0ad00ce244dfd0756200662572aef8402f13d5')
- Children:
- d3158db7c3fe477e710ec83e75fa69fe5a50cc5f
- Parents:
- eeb5b0cee52862b60f2f9f5250185bd15e1f6103
- git-author:
- Andreas Steenpass <steenpass@mathematik.uni-kl.de>2014-02-25 12:09:27+01:00
- git-committer:
- Andreas Steenpass <steenpass@mathematik.uni-kl.de>2014-02-25 12:14:49+01:00
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
Singular/LIB/realclassify.lib
reeb5b0c recc5d0 728 728 /* auxiliary variables */ 729 729 int i; 730 def br = basering; 730 731 731 732 /* error check */ 732 if(char(b asering) != 0)733 if(char(br) != 0) 733 734 { 734 735 ERROR("The characteristic must be zero."); 735 736 } 736 int n = nvars(b asering);737 int n = nvars(br); 737 738 for(i = 1; i <= n; i++) 738 739 { … … 781 782 /* highest corner */ 782 783 int hc; 784 if(ordstr(br) != "ds") 785 { 786 list lbr = ringlist(br); 787 lbr[3] = list(list("ds", 1:nvars(br)), list("C", 0)); 788 def br_ds = ring(lbr); 789 setring(br_ds); 790 poly f = fetch(br, f); 791 } 783 792 for(i = 0; i < 3; i++) 784 793 { 785 f = jet(f, k);786 794 hc = deg(highcorner(std(maxideal(i)*jacob(f)))); 787 795 hc = hc+2-i; … … 789 797 { 790 798 k = hc; 791 } 799 f = jet(f, k); 800 } 801 } 802 if(ordstr(br) != "ds") 803 { 804 setring(br); 792 805 } 793 806
Note: See TracChangeset
for help on using the changeset viewer.