Changeset 713126 in git
- Timestamp:
- Dec 6, 2006, 7:18:48 PM (17 years ago)
- Branches:
- (u'spielwiese', '91fdef05f09f54b8d58d92a472e9c4a43aa4656f')
- Children:
- cbe67eba6b38f4b622182cf5b827addbb5de83d6
- Parents:
- f4fea8560f31694a2e5242a206281daa4f5adb99
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
Singular/LIB/triang.lib
rf4fea85 r713126 1 1 //last change: 13.02.2001 (Eric Westenberger) 2 2 ////////////////////////////////////////////////////////////////////////////// 3 version="$Id: triang.lib,v 1.1 0 2006-07-18 15:22:16Singular Exp $";3 version="$Id: triang.lib,v 1.11 2006-12-06 18:18:48 Singular Exp $"; 4 4 category="Symbolic-numerical solving"; 5 5 info=" … … 39 39 if (attrib(G,"isSB") <> 1) 40 40 { 41 print(" ? Error: The input is no groebner basis."); 42 return(); 41 ERROR(" ? Error: The input is no groebner basis."); 43 42 } 44 43 else … … 46 45 if (dim(G) <> 0) 47 46 { 48 print(" ? Error: ideal is not zero-dimensional."); 49 return(); 47 ERROR(" ? Error: ideal is not zero-dimensional."); 50 48 } 51 49 } … … 214 212 if (attrib(G,"isSB") <> 1) 215 213 { 216 print(" ? Error: The input is no groebner basis."); 217 return(); 214 ERROR(" ? Error: The input is no groebner basis."); 218 215 } 219 216 else … … 221 218 if (dim(G) <> 0) 222 219 { 223 print(" ? Error: ideal is not zero-dimensional."); 224 return(); 220 ERROR(" ? Error: ideal is not zero-dimensional."); 225 221 } 226 222 } … … 643 639 if (attrib(G,"isSB") <> 1) 644 640 { 645 print(" ? Error: The input is no groebner basis."); 646 return(); 641 ERROR(" ? Error: The input is no groebner basis."); 647 642 } 648 643 … … 825 820 if (attrib(G,"isSB") <> 1) 826 821 { 827 print(" ? Error: The input is no groebner basis."); 828 return(); 829 } 830 822 ERROR(" ? Error: The input is no groebner basis."); 823 } 824 if(npars(basering)<>0) 825 { 826 ERROR("basering has parameters"); 827 } 831 828 // Faktorisierungsschalter setzen. 832 829 int fak; … … 840 837 intvec ovec = option(get); 841 838 option(redSB); 839 option(redTail); 842 840 option(returnSB); 843 841
Note: See TracChangeset
for help on using the changeset viewer.