Changeset 10478c in git


Ignore:
Timestamp:
Nov 28, 2014, 7:27:32 PM (9 years ago)
Author:
Oleksandr Motsak <motsak@…>
Branches:
(u'spielwiese', 'e7cc1ebecb61be8b9ca6c18016352af89940b21a')
Children:
73ba505b3214e1ee60c9a3ad8af9475b7e753666
Parents:
80478a3a86d08f6bb8b5675c8c993cd57e0b9c47
git-author:
Oleksandr Motsak <motsak@mathematik.uni-kl.de>2014-11-28 19:27:32+01:00
git-committer:
Oleksandr Motsak <motsak@mathematik.uni-kl.de>2014-11-30 03:28:21+01:00
Message:
Mark possible bugs: use of npSetMap in coeffs/OPAE*.cc for cfSetMap!
Location:
libpolys/coeffs
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • libpolys/coeffs/OPAE.cc

    r80478a3 r10478c  
    337337    r->cfLcm  = nAELcm; // ZU BEARBEITEN
    338338    r->cfDelete= nAEDelete;
    339     r->cfSetMap = npSetMap;
     339
     340    extern nMapFunc npSetMap(const coeffs src, const coeffs dst); // FIXME: BUG?
     341    r->cfSetMap = npSetMap; // WHY??? // TODO: this seems to be a bug!
     342   
    340343    r->cfInpMult=nAEInpMult; //????
    341344    r->cfCoeffWrite=nAECoeffWrite; //????
  • libpolys/coeffs/OPAEQ.cc

    r80478a3 r10478c  
    329329    r->cfLcm  = nAEQLcm; // ZU BEARBEITEN
    330330    r->cfDelete= nAEQDelete;
    331     r->cfSetMap = npSetMap;
     331   
     332    extern nMapFunc npSetMap(const coeffs src, const coeffs dst); // FIXME: BUG?
     333    r->cfSetMap = npSetMap; // WHY??? // TODO: this seems to be a bug!
     334   
    332335    r->cfInpMult=nAEQInpMult; //????
    333336    r->cfCoeffWrite=nAEQCoeffWrite; //????
  • libpolys/coeffs/OPAEp.cc

    r80478a3 r10478c  
    353353    r->cfLcm  = nAEpLcm; // ZU BEARBEITEN
    354354    r->cfDelete= nAEpDelete;
    355     r->cfSetMap = npSetMap;
     355
     356    extern nMapFunc npSetMap(const coeffs src, const coeffs dst); // FIXME: BUG?
     357    r->cfSetMap = npSetMap; // WHY??? // TODO: this seems to be a bug!
     358
    356359    r->cfInpMult=nAEpInpMult; //????
    357360    r->cfCoeffWrite=nAEpCoeffWrite; //????
Note: See TracChangeset for help on using the changeset viewer.