flint-sys 0.9.0

Bindings to the FLINT C library
Documentation
/*
    Copyright (C) 2023 Albin Ahlbäck

    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/>.
*/

/* Include functions *********************************************************/

#include "t-atan_series.c"
#include "t-compose.c"
#include "t-compose_divconquer.c"
#include "t-compose_horner.c"
#include "t-compose_mod.c"
#include "t-compose_mod_precomp_preinv.c"
#include "t-compose_mod_preinv.c"
#include "t-compose_series.c"
#include "t-dispersion.c"
#include "t-div_basecase.c"
#include "t-div.c"
#include "t-div_divconquer.c"
#include "t-divexact.c"
#include "t-div_newton.c"
#include "t-div_newton_n_preinv.c"
#include "t-divrem_basecase.c"
#include "t-divrem.c"
#include "t-divrem_divconquer.c"
#include "t-divrem_newton.c"
#include "t-divrem_newton_n_preinv.c"
#include "t-div_series.c"
#include "t-evaluate.c"
#include "t-evaluate_horner.c"
#include "t-evaluate_modular.c"
#include "t-evaluate_other.c"
#include "t-evaluate_other_rectangular.c"
#include "t-evaluate_rectangular.c"
#include "t-evaluate_vec_fast.c"
#include "t-exp_series.c"
#include "t-factor_squarefree.c"
#include "t-gcd.c"
#include "t-gcd_euclidean.c"
#include "t-gcd_hgcd.c"
#include "t-gcd_subresultant.c"
#include "t-hgcd.c"
#include "t-integral.c"
#include "t-interpolate.c"
#include "t-interpolate_fast.c"
#include "t-interpolate_newton.c"
#include "t-inv_series.c"
#include "t-leading_taylor_shift.c"
#include "t-log_series.c"
#include "t-make_monic.c"
#include "t-mul_karatsuba.c"
#include "t-mul_toom33.c"
#include "t-mullow_bivariate_KS.c"
#include "t-mullow_complex_reorder.c"
#include "t-mullow_toom_serial.c"
#include "t-mulmid.c"
#include "t-mulmid_bivariate_KS.c"
#include "t-mulmid_classical.c"
#include "t-mulmid_complex_reorder.c"
#include "t-mulmod.c"
#include "t-mulmod_preinv.c"
#include "t-newton_basis.c"
#include "t-nth_derivative.c"
#include "t-pow_series_fmpq.c"
#include "t-pow_series_ui.c"
#include "t-pow_ui.c"
#include "t-product_roots.c"
#include "t-rem.c"
#include "t-refine_roots.c"
#include "t-resultant.c"
#include "t-resultant_euclidean.c"
#include "t-resultant_hgcd.c"
#include "t-resultant_sylvester.c"
#include "t-revert_series.c"
#include "t-roots.c"
#include "t-roots_other.c"
#include "t-rsqrt_series.c"
#include "t-set_str.c"
#include "t-shift_left_right.c"
#include "t-shift_equivalent.c"
#include "t-shiftless_decomposition.c"
#include "t-sqrt_series.c"
#include "t-squarefree_part.c"
#include "t-taylor_shift.c"
#include "t-taylor_shift_convolution.c"
#include "t-taylor_shift_divconquer.c"
#include "t-taylor_shift_horner.c"
#include "t-xgcd.c"
#include "t-xgcd_euclidean.c"
#include "t-xgcd_hgcd.c"

/* Array of test functions ***************************************************/

test_struct tests[] =
{
    TEST_FUNCTION(gr_poly_atan_series),
    TEST_FUNCTION(gr_poly_compose),
    TEST_FUNCTION(gr_poly_compose_divconquer),
    TEST_FUNCTION(gr_poly_compose_horner),
    TEST_FUNCTION(gr_poly_compose_mod),
    TEST_FUNCTION(gr_poly_compose_mod_precomp_preinv),
    TEST_FUNCTION(gr_poly_compose_mod_preinv),
    TEST_FUNCTION(gr_poly_compose_series),
    TEST_FUNCTION(gr_poly_dispersion),
    TEST_FUNCTION(gr_poly_div_basecase),
    TEST_FUNCTION(gr_poly_div),
    TEST_FUNCTION(gr_poly_div_divconquer),
    TEST_FUNCTION(gr_poly_divexact),
    TEST_FUNCTION(gr_poly_div_newton),
    TEST_FUNCTION(gr_poly_div_newton_n_preinv),
    TEST_FUNCTION(gr_poly_divrem_basecase),
    TEST_FUNCTION(gr_poly_divrem),
    TEST_FUNCTION(gr_poly_divrem_divconquer),
    TEST_FUNCTION(gr_poly_divrem_newton),
    TEST_FUNCTION(gr_poly_divrem_newton_n_preinv),
    TEST_FUNCTION(gr_poly_div_series),
    TEST_FUNCTION(gr_poly_evaluate),
    TEST_FUNCTION(gr_poly_evaluate_horner),
    TEST_FUNCTION(gr_poly_evaluate_modular),
    TEST_FUNCTION(gr_poly_evaluate_other),
    TEST_FUNCTION(gr_poly_evaluate_other_rectangular),
    TEST_FUNCTION(gr_poly_evaluate_rectangular),
    TEST_FUNCTION(gr_poly_evaluate_vec_fast),
    TEST_FUNCTION(gr_poly_exp_series),
    TEST_FUNCTION(gr_poly_factor_squarefree),
    TEST_FUNCTION(gr_poly_gcd),
    TEST_FUNCTION(gr_poly_gcd_euclidean),
    TEST_FUNCTION(gr_poly_gcd_hgcd),
    TEST_FUNCTION(gr_poly_gcd_subresultant),
    TEST_FUNCTION(gr_poly_hgcd),
    TEST_FUNCTION(gr_poly_integral),
    TEST_FUNCTION(gr_poly_interpolate),
    TEST_FUNCTION(gr_poly_interpolate_fast),
    TEST_FUNCTION(gr_poly_interpolate_newton),
    TEST_FUNCTION(gr_poly_inv_series),
    TEST_FUNCTION(gr_poly_leading_taylor_shift),
    TEST_FUNCTION(gr_poly_log_series),
    TEST_FUNCTION(gr_poly_make_monic),
    TEST_FUNCTION(gr_poly_mul_karatsuba),
    TEST_FUNCTION(gr_poly_mul_toom33),
    TEST_FUNCTION(gr_poly_mullow_bivariate_KS),
    TEST_FUNCTION(gr_poly_mullow_complex_reorder),
    TEST_FUNCTION(gr_poly_mullow_toom_serial),
    TEST_FUNCTION(gr_poly_mulmid),
    TEST_FUNCTION(gr_poly_mulmid_bivariate_KS),
    TEST_FUNCTION(gr_poly_mulmid_classical),
    TEST_FUNCTION(gr_poly_mulmid_complex_reorder),
    TEST_FUNCTION(gr_poly_mulmod),
    TEST_FUNCTION(gr_poly_mulmod_preinv),
    TEST_FUNCTION(gr_poly_newton_basis),
    TEST_FUNCTION(gr_poly_nth_derivative),
    TEST_FUNCTION(gr_poly_pow_series_fmpq),
    TEST_FUNCTION(gr_poly_pow_series_ui),
    TEST_FUNCTION(gr_poly_pow_ui),
    TEST_FUNCTION(gr_poly_product_roots),
    TEST_FUNCTION(gr_poly_refine_roots),
    TEST_FUNCTION(gr_poly_rem),
    TEST_FUNCTION(gr_poly_resultant),
    TEST_FUNCTION(gr_poly_resultant_euclidean),
    TEST_FUNCTION(gr_poly_resultant_hgcd),
    TEST_FUNCTION(gr_poly_resultant_sylvester),
    TEST_FUNCTION(gr_poly_revert_series),
    TEST_FUNCTION(gr_poly_roots),
    TEST_FUNCTION(gr_poly_roots_other),
    TEST_FUNCTION(gr_poly_rsqrt_series),
    TEST_FUNCTION(gr_poly_set_str),
    TEST_FUNCTION(gr_poly_shift_left_right),
    TEST_FUNCTION(gr_poly_shift_equivalent),
    TEST_FUNCTION(gr_poly_shiftless_decomposition),
    TEST_FUNCTION(gr_poly_sqrt_series),
    TEST_FUNCTION(gr_poly_squarefree_part),
    TEST_FUNCTION(gr_poly_taylor_shift),
    TEST_FUNCTION(gr_poly_taylor_shift_convolution),
    TEST_FUNCTION(gr_poly_taylor_shift_divconquer),
    TEST_FUNCTION(gr_poly_taylor_shift_horner),
    TEST_FUNCTION(gr_poly_xgcd),
    TEST_FUNCTION(gr_poly_xgcd_euclidean),
    TEST_FUNCTION(gr_poly_xgcd_hgcd)
};

/* main function *************************************************************/

TEST_MAIN(tests)