Ignore:
Timestamp:
Sep 28, 2011, 8:56:23 PM (13 years ago)
Author:
Burcin Erocal <burcin@…>
Branches:
(u'spielwiese', 'fe61d9c35bf7c61f2b6cbf1b56e25e2f08d536cc')
Children:
db243612db5ff6db406492877c34784bf4c4a122
Parents:
2cc7c745cc18a1cf67d3c16448dfce2206cc6e32
git-author:
Burcin Erocal <burcin@erocal.org>2011-09-28 20:56:23+02:00
git-committer:
Mohamed Barakat <mohamed.barakat@rwth-aachen.de>2011-11-09 16:13:44+01:00
Message:
Fix more instances of n*Copy() calls instead of n_Copy().
File:
1 edited

Legend:

Unmodified
Added
Removed
  • libpolys/polys/ext_fields/algext.cc

    r2cc7c7 r3c4a33  
    541541  assume(src == dst->extRing->cf);
    542542  poly result = p_One(dst->extRing);
    543   p_SetCoeff(result, naCopy(a, src), dst->extRing);
     543  p_SetCoeff(result, n_Copy(a, src), dst->extRing);
    544544  return (number)result;
    545545}
     
    590590  assume(src == dst->extRing->cf);
    591591  poly result = p_One(dst->extRing);
    592   p_SetCoeff(result, naCopy(a, src), dst->extRing);
     592  p_SetCoeff(result, n_Copy(a, src), dst->extRing);
    593593  return (number)result;
    594594}
Note: See TracChangeset for help on using the changeset viewer.