flint-sys 0.9.0

Bindings to the FLINT C library
Documentation
/*
    Copyright (C) 2020 Fredrik Johansson

    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 "ca_mat.h"

static truth_t
ca_mat_inv_adjugate(ca_mat_t X, const ca_mat_t A, ca_ctx_t ctx)
{
    truth_t success;
    ca_t det;

    ca_init(det, ctx);
    ca_mat_adjugate(X, det, A, ctx);

    success = ca_check_is_zero(det, ctx);
    if (success == T_FALSE)
    {
        ca_mat_div_ca(X, X, det, ctx);
        success = T_TRUE;
    }
    else if (success == T_TRUE)
        success = T_FALSE;

    ca_clear(det, ctx);
    return success;
}

truth_t
ca_mat_inv(ca_mat_t X, const ca_mat_t A, ca_ctx_t ctx)
{
    ca_field_ptr K;

    slong n;
    truth_t success;
    ca_mat_t T;

    n = ca_mat_nrows(A);

    if (n == 0)
        return T_TRUE;

    if (n <= 4)
        return ca_mat_inv_adjugate(X, A, ctx);

    K = _ca_mat_same_field(A, ctx);

    if (K != NULL && (CA_FIELD_IS_QQ(K) || CA_FIELD_IS_NF(K)))
    {
        ca_mat_init(T, n, n, ctx);
        ca_mat_one(T, ctx);
        success = ca_mat_nonsingular_solve_lu(X, A, T, ctx);
        ca_mat_clear(T, ctx);
        return success;
    }
    else
    {
        return ca_mat_inv_adjugate(X, A, ctx);
    }
}