Changeset 0461f0 in git for libpolys/coeffs/coeffs.h
- Timestamp:
- Jul 21, 2011, 10:00:44 PM (12 years ago)
- Branches:
- (u'spielwiese', '91fdef05f09f54b8d58d92a472e9c4a43aa4656f')
- Children:
- bc1fdba5e0c00a808f45922f0d0fe8c4ec086e88
- Parents:
- a778e6518804aecf7bb83784c8936b0868f52943
- git-author:
- Oleksandr Motsak <motsak@mathematik.uni-kl.de>2011-07-21 22:00:44+02:00
- git-committer:
- Mohamed Barakat <mohamed.barakat@rwth-aachen.de>2011-11-09 12:53:31+01:00
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
libpolys/coeffs/coeffs.h
ra778e6 r0461f0 122 122 123 123 /// changes argument inline: a:= -a 124 /// return -a! (no copy is returned) 125 /// the result should be assigned to the original argument: e.g. a = n_Neg(a,r) 124 126 number (*cfNeg)(number a, const coeffs r); 125 127 /// return 1/a … … 367 369 368 370 /// in-place negation of n 371 /// MUST BE USED: n = n_Neg(n) (no copy is returned) 369 372 static inline number n_Neg(number n, const coeffs r) 370 373 { assume(r != NULL); assume(r->cfNeg!=NULL); return r->cfNeg(n,r); }
Note: See TracChangeset
for help on using the changeset viewer.