/* Copyright (C) 2010 Sebastian Pancratz This file is part of FLINT. FLINT is free software: you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License (LGPL) as published by the Free Software Foundation; either version 2.1 of the License, or (at your option) any later version. See . */ #include #include #include #include #include "flint.h" #include "fmpz.h" #include "fmpz_poly.h" char * _fmpz_poly_get_str(const fmpz * poly, slong len) { slong i, bound; char *str, *strbase; if (len == 0) { str = (char *) flint_malloc(2 * sizeof(char)); str[0] = '0'; str[1] = '\0'; return str; } bound = (slong) (ceil(log10((double) (len + 1)))); for (i = 0; i < len; i++) bound += fmpz_sizeinbase(poly + i, 10) + 1; bound += len + 2; strbase = (char *) flint_malloc(bound * sizeof(char)); str = strbase; str += flint_sprintf(str, "%wd ", len); do { if (!COEFF_IS_MPZ(*poly)) str += flint_sprintf(str, " %wd", *poly); else str += gmp_sprintf(str, " %Zd", COEFF_TO_PTR(*poly)); } while (poly++, --len); return strbase; } char * fmpz_poly_get_str(const fmpz_poly_t poly) { return _fmpz_poly_get_str(poly->coeffs, poly->length); }