Changeset 9f1a52 in git for libpolys/coeffs/longrat.cc


Ignore:
Timestamp:
May 18, 2011, 12:45:15 AM (13 years ago)
Author:
Oleksandr Motsak <motsak@…>
Branches:
(u'spielwiese', 'fe61d9c35bf7c61f2b6cbf1b56e25e2f08d536cc')
Children:
99ae0c026dcf2240aeab92b95e166bfc5ed46566
Parents:
2c41bc0e28c6628127866480994b3041a3c1f0af
git-author:
Oleksandr Motsak <motsak@mathematik.uni-kl.de>2011-05-18 00:45:15+02:00
git-committer:
Mohamed Barakat <mohamed.barakat@rwth-aachen.de>2011-11-09 12:36:08+01:00
Message:
FIX: fixed the inplace addition in n_Q (longrat)
File:
1 edited

Legend:

Unmodified
Added
Removed
  • libpolys/coeffs/longrat.cc

    r2c41bc r9f1a52  
    21732173number nlShort3_noinline(number x);
    21742174
    2175 LINLINE number nlInpAdd (number a, number b, const coeffs r)
     2175LINLINE number nlInpAdd_(number a, number b, const coeffs r)
    21762176{
    21772177  if (SR_HDL(a) & SR_HDL(b) & SR_INT)
     
    23232323  }
    23242324}
     2325
     2326LINLINE void nlInpAdd(number &a, number b, const coeffs r)
     2327{
     2328  a = nlInpAdd_(a, b, r);
     2329}
     2330
    23252331
    23262332LINLINE number nlMult (number a, number b, const coeffs R)
Note: See TracChangeset for help on using the changeset viewer.