Changeset fc2746 in git for libpolys/polys/nc


Ignore:
Timestamp:
Mar 5, 2012, 5:24:33 PM (12 years ago)
Author:
Oleksandr Motsak <motsak@…>
Branches:
(u'spielwiese', 'fe61d9c35bf7c61f2b6cbf1b56e25e2f08d536cc')
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
Message:
fix the usage of iiWriteMatrix

NOTE: trailing (int)0 have been treated wrongly as (ring)NULL...
Location:
libpolys/polys/nc
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • libpolys/polys/nc/old.gring.cc

    r9e26458 rfc2746  
    27862786  {
    27872787    PrintS("nc_CallPlural(), Input data, CCC: \n");
    2788     iiWriteMatrix(CCC, "C", 2, 4, curr);
     2788    iiWriteMatrix(CCC, "C", 2, curr, 4);
    27892789  }
    27902790  if( DDD != NULL )
    27912791  {
    27922792    PrintS("nc_CallPlural(), Input data, DDD: \n");
    2793     iiWriteMatrix(DDD, "D", 2, 4, curr);
     2793    iiWriteMatrix(DDD, "D", 2, curr, 4);
    27942794  }
    27952795#endif
     
    30103010#if OUTPUT
    30113011  PrintS("nc_CallPlural(), Computed data, C: \n");
    3012   iiWriteMatrix(C, "C", 2, 4, r);
     3012  iiWriteMatrix(C, "C", 2, r, 4);
    30133013
    30143014  PrintS("nc_CallPlural(), Computed data, D: \n");
    3015   iiWriteMatrix(D, "D", 2, 4, r);
     3015  iiWriteMatrix(D, "D", 2, r, 4);
    30163016
    30173017  Print("\nTemporary: type = %d, IsSkewConstant = %d\n", nctype, IsSkewConstant);
  • libpolys/polys/nc/sca.cc

    r9e26458 rfc2746  
    11401140#if ((defined(PDEBUG) && OUTPUT) || MYTEST)
    11411141  PrintS("Quotient: \n");
    1142   iiWriteMatrix((matrix)idQuotient,"__",1);
     1142  iiWriteMatrix((matrix)idQuotient,"__",1, rG, 0);
    11431143  PrintS("tempSCAQuotient: \n");
    1144   iiWriteMatrix((matrix)tempQ,"__",1);
     1144  iiWriteMatrix((matrix)tempQ,"__",1, rG, 0);
    11451145#endif
    11461146
     
    11631163  PrintS("SCAQuotient: \n");
    11641164  if(tempQ != NULL)
    1165     iiWriteMatrix((matrix)tempQ,"__",1);
     1165    iiWriteMatrix((matrix)tempQ,"__",1, rGR, 0);
    11661166  else
    11671167    PrintS("(NULL)\n");
Note: See TracChangeset for help on using the changeset viewer.