POLY: improve doxygen comments

This commit is contained in:
hasufell 2014-05-25 03:56:39 +02:00
parent b604ecd915
commit 3905b4aba9
No known key found for this signature in database
GPG Key ID: 220CD1C5BDEED020
1 changed files with 6 additions and 0 deletions

View File

@ -152,6 +152,9 @@ void poly_delete_all(fmpz_poly_t *poly, ...)
* so we don't have to deal with the intermediate
* nmod_poly_t type if we don't need it.
*
* This also normalises the coefficients to the interval
* 0 <= r < m.
*
* @param a the polynom to apply the modulus to
* @param mod the modulus
*/
@ -174,6 +177,9 @@ void fmpz_poly_mod_unsigned(fmpz_poly_t a,
* so we don't have to deal with the intermediate
* nmod_poly_t type if we don't need it.
*
* This also normalises the coefficients to the interval
* -m/2 <= r < m/2.
*
* @param a the polynom to apply the modulus to
* @param mod the modulus
*/