flint3-sys 3.5.1

Rust bindings to the FLINT C library
Documentation
/*
    Copyright (C) 2012 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 3 of the License, or
    (at your option) any later version.  See <https://www.gnu.org/licenses/>.
*/

/*
    Demo FLINT program to demonstrate some use of the 
    function fmpz_mod_poly_radix() for radix conversion 
    over $\mathbf{Z}/n \mathbf{Z}$.
*/

#include <stdlib.h>
#include <stdio.h>
#include <time.h>
#include <gmp.h>
#include <flint/flint.h>
#include <flint/fmpz.h>
#include <flint/fmpz_mod.h>
#include <flint/fmpz_mod_poly.h>

int main(void)
{
    const slong n = 12376;
    const slong N = n / 26;

    clock_t c0, c1;
    double c;

    slong i;
    fmpz_t a, m;
    fmpz_mod_ctx_t ctx;
    fmpz_mod_poly_t A, B, r, t;
    fmpz_mod_poly_radix_t S;
    fmpz_mod_poly_struct **b;

    FLINT_TEST_INIT(state);    

    fmpz_init(a);
    fmpz_init(m);

    fmpz_set_ui(m, 17);
    fmpz_pow_ui(m, m, 26);

    fmpz_mod_ctx_init(ctx, m);
    fmpz_mod_poly_init(A, ctx);
    fmpz_mod_poly_init(B, ctx);
    fmpz_mod_poly_init(r, ctx);
    fmpz_mod_poly_init(t, ctx);

    fmpz_mod_poly_set_coeff_ui(A, 3, 5, ctx);
    fmpz_mod_poly_set_coeff_ui(A, 4, 4, ctx);

    fmpz_mod_poly_set_coeff_ui(B, 0, 1, ctx);
    fmpz_mod_poly_set_coeff_ui(B, 2, 1, ctx);
    fmpz_mod_poly_set_coeff_ui(B, 3, 5, ctx);
    fmpz_mod_poly_set_coeff_ui(B, 4, 1, ctx);
    fmpz_mod_poly_set_coeff_ui(B, 5, 5, ctx);
    fmpz_mod_poly_set_coeff_ui(B, 8, 8, ctx);
    fmpz_mod_poly_set_coeff_ui(B, 9, 8, ctx);
    fmpz_mod_poly_set_coeff_ui(B, 10, 5, ctx);
    fmpz_mod_poly_set_coeff_ui(B, 12, 6, ctx);
    fmpz_mod_poly_set_coeff_ui(B, 13, 1, ctx);

    fmpz_mod_poly_pow(r, A, 3, ctx);
    fmpz_set_ui(a, 4);
    fmpz_mod_poly_scalar_mul_fmpz(r, r, a, ctx);

    fmpz_mod_poly_pow(t, B, 2, ctx);
    fmpz_set_ui(a, 27);
    fmpz_mod_poly_scalar_mul_fmpz(t, t, a, ctx);

    fmpz_mod_poly_add(r, r, t, ctx);

    b = flint_malloc((N + 1) * sizeof(fmpz_mod_poly_struct *));
    for (i = 0; i <= N; i++)
    {
        b[i] = flint_malloc(sizeof(fmpz_mod_poly_struct));
        fmpz_mod_poly_init(b[i], ctx);
    }

    fmpz_mod_poly_randtest(t, state, n + 1, ctx);

    flint_printf("Radix conversion\n");
    flint_printf("----------------\n");
    flint_printf("  Degree of the radix:     %wd\n", fmpz_mod_poly_degree(r, ctx));
    flint_printf("  Bit size of the modulus: %wd\n", (slong) fmpz_bits(m));
    flint_printf("  Degree of the input:     %wd\n", fmpz_mod_poly_degree(t, ctx));

    c0 = clock();
    fmpz_mod_poly_radix_init(S, r, n + 1, ctx);
    c1 = clock();
    c  = (double) (c1 - c0) / CLOCKS_PER_SEC;

    flint_printf("  Precomputation:          %fs\n", c);

    c0 = clock();
    fmpz_mod_poly_radix(b, t, S, ctx);
    c1 = clock();
    c  = (double) (c1 - c0) / CLOCKS_PER_SEC;

    flint_printf("  Conversion:              %fs\n", c);

    fmpz_clear(a);
    fmpz_clear(m);
    fmpz_mod_poly_clear(A, ctx);
    fmpz_mod_poly_clear(B, ctx);
    fmpz_mod_poly_clear(r, ctx);
    fmpz_mod_poly_clear(t, ctx);
    fmpz_mod_poly_radix_clear(S);

    for (i = 0; i <= N; i++)
    {
        fmpz_mod_poly_clear(b[i], ctx);
        flint_free(b[i]);
    }
    flint_free(b);
    fmpz_mod_ctx_clear(ctx);

    FLINT_TEST_CLEAR(state);

    return 0;
}