Changeset fc2746 in git
- Timestamp:
- Mar 5, 2012, 5:24:33 PM (11 years ago)
- Branches:
- (u'jengelh-datetime', 'ceac47cbc86fe4a15902392bdbb9bd2ae0ea02c6')(u'spielwiese', 'a800fe4b3e9d37a38c5a10cc0ae9dfa0c15a4ee6')
- Children:
- de0a2a63707154c996bdb17673b41439c4a047f6
- Parents:
- 9e26458fea6f12f6acae94134fb3c4bc0178ecd7
- git-author:
- Oleksandr Motsak <motsak@mathematik.uni-kl.de>2012-03-05 17:24:33+01:00
- git-committer:
- Oleksandr Motsak <motsak@mathematik.uni-kl.de>2012-03-05 17:42:52+01:00
- Files:
-
- 7 edited
Legend:
- Unmodified
- Added
- Removed
-
kernel/kstdfac.cc
r9e26458 rfc2746 409 409 { 410 410 PrintS("new D:\n"); 411 iiWriteMatrix((matrix)n->D,"D",1, 0);411 iiWriteMatrix((matrix)n->D,"D",1,currRing,0); 412 412 PrintLn(); 413 413 } … … 501 501 Print("empty set s(%d) because:L[%d]\n",n->nr,Lj->nr); 502 502 PrintS("L:\n"); 503 iiWriteMatrix((matrix)Lj->d,"L",1, 0);503 iiWriteMatrix((matrix)Lj->d,"L",1,currRing,0); 504 504 } 505 505 #endif … … 727 727 { 728 728 PrintS("new D:\n"); 729 iiWriteMatrix((matrix)n->D,"D",1, 0);729 iiWriteMatrix((matrix)n->D,"D",1,currRing,0); 730 730 PrintLn(); 731 731 } … … 823 823 Print("empty set s(%d) because:L[%d]\n",n->nr,Lj->nr); 824 824 PrintS("L:\n"); 825 iiWriteMatrix((matrix)Lj->d,"L",1, 0);825 iiWriteMatrix((matrix)Lj->d,"L",1,currRing,0); 826 826 } 827 827 #endif … … 957 957 //{ 958 958 // PrintS("===================================================\n"); 959 // iiWriteMatrix((matrix)r,"S",1, 0);959 // iiWriteMatrix((matrix)r,"S",1,currRing,0); 960 960 // PrintS("\n===================================================\n"); 961 961 //} -
libpolys/coeffs/coeffWrite
r9e26458 rfc2746 66 66 if (r->minideal!=NULL) 67 67 { 68 if (r==currRing) iiWriteMatrix((matrix)r->minideal,"// minpolys",1, 0);68 if (r==currRing) iiWriteMatrix((matrix)r->minideal,"// minpolys",1,r,0); 69 69 else PrintS("// minpolys=..."); 70 70 PrintLn(); -
libpolys/polys/clapsing.cc
r9e26458 rfc2746 1273 1273 Warn("char_series returns %d x %d matrix from %d input polys (%d)", 1274 1274 m,n,IDELEMS(I)+1,LL.length()); 1275 iiWriteMatrix((matrix)I,"I",2, 0);1275 iiWriteMatrix((matrix)I,"I",2,r,0); 1276 1276 m=si_max(m,1); 1277 1277 n=si_max(n,1); -
libpolys/polys/matpol.h
r9e26458 rfc2746 87 87 BOOLEAN mp_IsDiagUnit(matrix U, const ring r); 88 88 89 void iiWriteMatrix(matrix im, const char *n, int dim, const ring r, int spaces=0); 89 /// set spaces to zero by default 90 void iiWriteMatrix(matrix im, const char *n, int dim, const ring r, int spaces); 91 90 92 char * iiStringMatrix(matrix im, int dim, const ring r, char ch=','); 91 93 -
libpolys/polys/monomials/ring.cc
r9e26458 rfc2746 283 283 //if (r->minideal!=NULL) 284 284 //{ 285 // iiWriteMatrix((matrix)r->minideal,"// minpolys",1, 0);285 // iiWriteMatrix((matrix)r->minideal,"// minpolys",1,r,0); 286 286 // PrintLn(); 287 287 //} … … 391 391 PrintS(" ..."); 392 392 393 #if 0/*Singularg should not differ from Singular except in error case*/393 #if MYTEST /*Singularg should not differ from Singular except in error case*/ 394 394 Print("\n// noncommutative type:%d", (int)ncRingType(r)); 395 395 Print("\n// is skew constant:%d",r->GetNC()->IsSkewConstant); … … 405 405 // { 406 406 // PrintLn(); 407 // iiWriteMatrix((matrix)Q,"scaQ",1);407 iiWriteMatrix((matrix)Q,"scaQ",1,r,0); 408 408 // } 409 409 // else 410 PrintS(" ...");410 // PrintS(" ..."); 411 411 } 412 412 else … … 422 422 { 423 423 PrintLn(); 424 iiWriteMatrix((matrix)r->qideal,"_",1,r );424 iiWriteMatrix((matrix)r->qideal,"_",1,r,0); 425 425 } else PrintS(" ..."); 426 426 } -
libpolys/polys/nc/old.gring.cc
r9e26458 rfc2746 2786 2786 { 2787 2787 PrintS("nc_CallPlural(), Input data, CCC: \n"); 2788 iiWriteMatrix(CCC, "C", 2, 4, curr);2788 iiWriteMatrix(CCC, "C", 2, curr, 4); 2789 2789 } 2790 2790 if( DDD != NULL ) 2791 2791 { 2792 2792 PrintS("nc_CallPlural(), Input data, DDD: \n"); 2793 iiWriteMatrix(DDD, "D", 2, 4, curr);2793 iiWriteMatrix(DDD, "D", 2, curr, 4); 2794 2794 } 2795 2795 #endif … … 3010 3010 #if OUTPUT 3011 3011 PrintS("nc_CallPlural(), Computed data, C: \n"); 3012 iiWriteMatrix(C, "C", 2, 4, r);3012 iiWriteMatrix(C, "C", 2, r, 4); 3013 3013 3014 3014 PrintS("nc_CallPlural(), Computed data, D: \n"); 3015 iiWriteMatrix(D, "D", 2, 4, r);3015 iiWriteMatrix(D, "D", 2, r, 4); 3016 3016 3017 3017 Print("\nTemporary: type = %d, IsSkewConstant = %d\n", nctype, IsSkewConstant); -
libpolys/polys/nc/sca.cc
r9e26458 rfc2746 1140 1140 #if ((defined(PDEBUG) && OUTPUT) || MYTEST) 1141 1141 PrintS("Quotient: \n"); 1142 iiWriteMatrix((matrix)idQuotient,"__",1 );1142 iiWriteMatrix((matrix)idQuotient,"__",1, rG, 0); 1143 1143 PrintS("tempSCAQuotient: \n"); 1144 iiWriteMatrix((matrix)tempQ,"__",1 );1144 iiWriteMatrix((matrix)tempQ,"__",1, rG, 0); 1145 1145 #endif 1146 1146 … … 1163 1163 PrintS("SCAQuotient: \n"); 1164 1164 if(tempQ != NULL) 1165 iiWriteMatrix((matrix)tempQ,"__",1 );1165 iiWriteMatrix((matrix)tempQ,"__",1, rGR, 0); 1166 1166 else 1167 1167 PrintS("(NULL)\n");
Note: See TracChangeset
for help on using the changeset viewer.