Changeset 3c4a33 in git
- Timestamp:
- Sep 28, 2011, 8:56:23 PM (12 years ago)
- Branches:
- (u'spielwiese', '0d6b7fcd9813a1ca1ed4220cfa2b104b97a0a003')
- 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
- Location:
- libpolys/polys/ext_fields
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
libpolys/polys/ext_fields/algext.cc
r2cc7c7 r3c4a33 541 541 assume(src == dst->extRing->cf); 542 542 poly result = p_One(dst->extRing); 543 p_SetCoeff(result, n aCopy(a, src), dst->extRing);543 p_SetCoeff(result, n_Copy(a, src), dst->extRing); 544 544 return (number)result; 545 545 } … … 590 590 assume(src == dst->extRing->cf); 591 591 poly result = p_One(dst->extRing); 592 p_SetCoeff(result, n aCopy(a, src), dst->extRing);592 p_SetCoeff(result, n_Copy(a, src), dst->extRing); 593 593 return (number)result; 594 594 } -
libpolys/polys/ext_fields/transext.cc
r2cc7c7 r3c4a33 998 998 assume(src == dst->extRing->cf); 999 999 poly p = p_One(dst->extRing); 1000 p_SetCoeff(p, n tCopy(a, src), dst->extRing);1000 p_SetCoeff(p, n_Copy(a, src), dst->extRing); 1001 1001 fraction f = (fraction)omAlloc0Bin(fractionObjectBin); 1002 1002 NUM(f) = p; DEN(f) = NULL; COM(f) = 0;
Note: See TracChangeset
for help on using the changeset viewer.