Changeset 97a7da2 in git
- Timestamp:
- Jan 24, 2015, 1:20:18 PM (9 years ago)
- Branches:
- (u'spielwiese', '8e0ad00ce244dfd0756200662572aef8402f13d5')
- Children:
- f999689a0462639ba7b739684fd5d5bf45a2cab3
- Parents:
- b67caf495ff6a195c2ad18c287338f99c3d4f78a
- Location:
- Singular/LIB
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
Singular/LIB/bimodules.lib
rb67caf4 r97a7da2 722 722 ideal J; 723 723 // determine whether I is a left Groebner basis 724 if (attrib(I,"isSB") == 1)724 if (attrib(I,"isSB")) 725 725 { 726 726 J = I; -
Singular/LIB/dmodvar.lib
rb67caf4 r97a7da2 698 698 int n = nvars(basering); 699 699 int c; 700 if (attrib(I,"isSB") == 1)700 if (attrib(I,"isSB")) 701 701 { 702 702 c = n - dim(I); -
Singular/LIB/homolog.lib
rb67caf4 r97a7da2 534 534 { // compute resolution via sres command 535 535 if( attrib(M,"isSB")==0 ) { 536 if (size(M)==0) { attrib(M,"isSB")=1; } 537 else { M=std(M); } 536 M=std(M); 538 537 } 539 538 list resl = sres(M,max+1); -
Singular/LIB/ring.lib
rb67caf4 r97a7da2 1070 1070 EXAMPLE: isSubModule; shows an example 1071 1071 { 1072 if (attrib(J,"isSB") ==1)1072 if (attrib(J,"isSB")) 1073 1073 { return(size(reduce(I,J,1))==0); } 1074 1074 else
Note: See TracChangeset
for help on using the changeset viewer.