Changeset 0a3a629 in git for libpolys/polys/nc


Ignore:
Timestamp:
Apr 13, 2011, 7:17:16 PM (13 years ago)
Author:
Oleksandr Motsak <motsak@…>
Branches:
(u'spielwiese', 'fe61d9c35bf7c61f2b6cbf1b56e25e2f08d536cc')
Children:
5d9aa6ba0e85f25a68a2cdc034476c3694495b62
Parents:
ee33a7ced725d6bd7bcfb344c937981897a8a06a
git-author:
Oleksandr Motsak <motsak@mathematik.uni-kl.de>2011-04-13 19:17:16+02:00
git-committer:
Mohamed Barakat <mohamed.barakat@rwth-aachen.de>2011-11-09 12:12:32+01:00
Message:
FIX: fixed the matrix-related inteface: e.g. mpCopy(matrix) -> mp_Copy(matrix, const ring)
File:
1 edited

Legend:

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

    ree33a7 r0a3a629  
    30513051    }
    30523052  }
    3053   if (( CCC != NULL) && (CC == NULL)) CC = CCC; // mpCopy(CCC); // bug!?
     3053  if (( CCC != NULL) && (CC == NULL)) CC = CCC; // mp_Copy(CCC, ?); // bug!?
    30543054  if (( CCN != NULL) && (CN == NULL)) CN = CCN;
    30553055
     
    30713071  }
    30723072
    3073   if (( DDD != NULL) && (DD == NULL)) DD = DDD; // mpCopy(DDD); // ???
     3073  if (( DDD != NULL) && (DD == NULL)) DD = DDD; // mp_Copy(DDD, ?); // ???
    30743074  if (( DDN != NULL) && (DN == NULL)) DN = DDN;
    30753075
     
    31423142    if( bCopyInput )
    31433143    {
    3144       C = mpCopy(CC, curr, r); // Copy C into r!!!???
     3144      C = mp_Copy(CC, curr, r); // Copy C into r!!!???
    31453145#ifndef NDEBUG
    31463146      id_Test((ideal)C, r);
     
    32013201    if( bCopyInput )
    32023202    {
    3203       D = mpCopy(DD, curr, r); // Copy DD into r!!!
     3203      D = mp_Copy(DD, curr, r); // Copy DD into r!!!
    32043204#ifndef NDEBUG
    32053205      id_Test((ideal)D, r);
     
    32283228  if ( gnc_CheckOrdCondition(D, r) )
    32293229  {
    3230     if( bCnew ) mpDelete( &C, r );
    3231     if( bDnew ) mpDelete( &D, r );
     3230    if( bCnew ) mp_Delete( &C, r );
     3231    if( bDnew ) mp_Delete( &D, r );
    32323232
    32333233    Werror("Matrix of polynomials violates the ordering condition");
Note: See TracChangeset for help on using the changeset viewer.