Changeset 891122 in git
- Timestamp:
- Jul 16, 2013, 4:56:07 PM (10 years ago)
- Branches:
- (u'jengelh-datetime', 'ceac47cbc86fe4a15902392bdbb9bd2ae0ea02c6')(u'spielwiese', 'a800fe4b3e9d37a38c5a10cc0ae9dfa0c15a4ee6')
- Children:
- 22c7f081eb5086ea769d4b1bf61d4ca3f4a88b04
- Parents:
- d220af17ce2ecb53dc744ab69471b35e99971cc5
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
Singular/ipassign.cc
rd220af1 r891122 190 190 #ifndef NDEBUG 191 191 WarnS("Set minpoly over non-transcendental ground field to 0?!"); 192 Warn("in >>%s<<",my_yylinebuf); 192 193 #endif 193 194 return FALSE; -
Singular/ipprint.cc
rd220af1 r891122 241 241 case INTVEC_CMD: 242 242 bo=ipPrint_INTVEC(u); 243 243 break; 244 244 245 245 case INTMAT_CMD: 246 246 bo=ipPrint_INTMAT(u); 247 247 break; 248 248 249 249 case MATRIX_CMD: 250 250 bo=ipPrint_MA(u); 251 251 break; 252 252 253 253 case IDEAL_CMD: … … 270 270 case VECTOR_CMD: 271 271 bo=ipPrint_V(u); 272 272 break; 273 273 274 274 case RING_CMD: 275 275 case QRING_CMD: 276 276 bo=ipPrint_RING(u); 277 277 break; 278 278 279 279 default: -
libpolys/misc/int64vec.cc
rd220af1 r891122 100 100 char * int64vec::String(int dim) 101 101 { 102 return omStrDup(iv64String(0, 0, dim)); 103 } 104 105 void int64vec::show(int mat,int spaces) 106 { 102 return iv64String(0, 0, dim); 103 } 104 105 void int64vec::show(int notmat,int spaces) 106 { 107 char *s=iv64String(notmat,spaces); 107 108 if (spaces>0) 108 109 { 109 110 PrintNSpaces(spaces); 110 PrintS( iv64String(mat,spaces));111 PrintS(s); 111 112 } 112 113 else 113 PrintS(iv64String(mat,0)); 114 { 115 PrintS(s); 116 } 117 omFree(s); 114 118 } 115 119 -
libpolys/misc/intvec.cc
rd220af1 r891122 154 154 void intvec::show(int notmat,int spaces) const 155 155 { 156 char *s=ivString(notmat,spaces); 156 157 if (spaces>0) 157 158 { 158 159 PrintNSpaces(spaces); 159 PrintS( ivString(notmat,spaces));160 PrintS(s); 160 161 } 161 162 else 162 PrintS(ivString(notmat,0)); 163 { 164 PrintS(s); 165 } 166 omFree(s); 163 167 } 164 168
Note: See TracChangeset
for help on using the changeset viewer.