flint3-sys 3.6.0

Rust bindings to the FLINT C library
Documentation
/*
    Copyright (C) 2026 Lars Göttgens

    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 "gr_vec.h"
#include "gr_mat.h"
#include "perm.h"

int
gr_mat_permute_rows(gr_mat_t mat, slong * perm_store, const slong * perm_act, gr_ctx_t ctx)
{
    int status = GR_SUCCESS;
    slong i;
    slong sz = ctx->sizeof_elem;
    gr_mat_t mat_tmp;

    /* rows[i] <- rows[perm_act[i]]  */
    mat_tmp->entries = GR_TMP_ALLOC(mat->r * mat->c * sz);
    mat_tmp->r = mat->r;
    mat_tmp->c = mat->c;
    mat_tmp->stride = mat->stride;

    for (i = 0; i < mat->r; i++)
        _gr_vec_set_shallow(GR_MAT_ENTRY(mat_tmp, i, 0, sz), GR_MAT_ENTRY(mat, perm_act[i], 0, sz), mat->c, ctx);

    for (i = 0; i < mat->r; i++)
        _gr_vec_set_shallow(GR_MAT_ENTRY(mat, i, 0, sz), GR_MAT_ENTRY(mat_tmp, i, 0, sz), mat->c, ctx);

    GR_TMP_FREE(mat_tmp->entries, mat->r * mat->c * sz);

    /* perm_store[i] <- perm_store[perm_act[i]] */
    if (perm_store)
        _perm_compose(perm_store, perm_store, perm_act, mat->r);
    
    return status;
}

int
gr_mat_permute_rows_inv(gr_mat_t mat, slong * perm_store, const slong * perm_act, gr_ctx_t ctx)
{
    int status = GR_SUCCESS;
    slong i;
    slong sz = ctx->sizeof_elem;
    gr_mat_t mat_tmp;

    /* rows[perm_act[i]] <- rows[i]  */
    mat_tmp->entries = GR_TMP_ALLOC(mat->r * mat->c * sz);
    mat_tmp->r = mat->r;
    mat_tmp->c = mat->c;
    mat_tmp->stride = mat->stride;

    for (i = 0; i < mat->r; i++)
        _gr_vec_set_shallow(GR_MAT_ENTRY(mat_tmp, perm_act[i], 0, sz), GR_MAT_ENTRY(mat, i, 0, sz), mat->c, ctx);

    for (i = 0; i < mat->r; i++)
        _gr_vec_set_shallow(GR_MAT_ENTRY(mat, i, 0, sz), GR_MAT_ENTRY(mat_tmp, i, 0, sz), mat->c, ctx);

    GR_TMP_FREE(mat_tmp->entries, mat->r * mat->c * sz);

    /* perm_store[perm_act[i]] <- perm_store[i] */
    if (perm_store)
        _perm_compose_inv2(perm_store, perm_store, perm_act, mat->r);
    
    return status;
}