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-add.c"
#include "t-assign.c"
#include "t-ctx_init_ui.c"
#include "t-div.c"
#include "t-frobenius.c"
#include "t-get_set_fmpz.c"
#include "t-get_set_fq_nmod.c"
#include "t-get_set_nmod_poly.c"
#include "t-inv.c"
#include "t-is_invertible.c"
#include "t-is_invertible_f.c"
#include "t-is_primitive.c"
#include "t-is_square.c"
#include "t-mul.c"
#include "t-mul_fmpz.c"
#include "t-multiplicative_order.c"
#include "t-mul_ui.c"
#include "t-neg.c"
#include "t-norm.c"
#include "t-pow.c"
#include "t-pth_root.c"
#include "t-sqr.c"
#include "t-sqrt.c"
#include "t-sub.c"
#include "t-trace.c"

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

test_struct tests[] =
{
    TEST_FUNCTION(fq_zech_add),
    TEST_FUNCTION(fq_zech_assign),
    TEST_FUNCTION(fq_zech_ctx_init_ui),
    TEST_FUNCTION(fq_zech_div),
    TEST_FUNCTION(fq_zech_frobenius),
    TEST_FUNCTION(fq_zech_get_set_fmpz),
    TEST_FUNCTION(fq_zech_get_set_fq_nmod),
    TEST_FUNCTION(fq_zech_get_set_nmod_poly),
    TEST_FUNCTION(fq_zech_inv),
    TEST_FUNCTION(fq_zech_is_invertible),
    TEST_FUNCTION(fq_zech_is_invertible_f),
    TEST_FUNCTION(fq_zech_is_primitive),
    TEST_FUNCTION(fq_zech_is_square),
    TEST_FUNCTION(fq_zech_mul),
    TEST_FUNCTION(fq_zech_mul_fmpz),
    TEST_FUNCTION(fq_zech_multiplicative_order),
    TEST_FUNCTION(fq_zech_mul_ui),
    TEST_FUNCTION(fq_zech_neg),
    TEST_FUNCTION(fq_zech_norm),
    TEST_FUNCTION(fq_zech_pow),
    TEST_FUNCTION(fq_zech_pth_root),
    TEST_FUNCTION(fq_zech_sqr),
    TEST_FUNCTION(fq_zech_sqrt),
    TEST_FUNCTION(fq_zech_sub),
    TEST_FUNCTION(fq_zech_trace)
};

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

TEST_MAIN(tests)