source: git/libpolys/polys/flintconv.h @ 9e2e97

spielwiese
Last change on this file since 9e2e97 was 9e2e97, checked in by Hans Schoenemann <hannes@…>, 2 years ago
system("rref",M): move to flintconv.cc, add Q as cf
  • Property mode set to 100644
File size: 2.7 KB
Line 
1// emacs edit mode for this file is -*- C++ -*-
2#ifndef LIBPOLYS_POLYS_FLINTCONV_H
3#define LIBPOLYS_POLYS_FLINTCONV_H
4/****************************************
5*  Computer Algebra System SINGULAR     *
6****************************************/
7/*
8* ABSTRACT: convert data between Singular and Flint
9*/
10/** @file flintconv.h
11 *
12 * This file is work in progress and currently not part of the official Singular
13 *
14 * @note the code is garded by the version test __FLINT_RELEASE >= 20503 (>=2.5.3)
15 * In its current form it will never become an official part.
16 * (conversion routines may be moved to other files/directories, etc.)
17 *
18 * ABSTRACT: Conversion to/from FLINT, and access to some FLINT-routines
19 *
20 * REQUIREMENTS:
21 * - agreement about the interface to LLL
22 * - FLINT providing LLL
23 * (none of the above is currently true, but all of them is required)
24 *
25 **/
26
27#ifdef HAVE_FLINT
28#include <flint/flint.h>
29
30#include "polys/matpol.h"
31#include "coeffs/bigintmat.h"
32#include <flint/fmpz.h>
33#include <flint/fmpq.h>
34#include <flint/fmpq_mat.h>
35#include <flint/fmpz_poly.h>
36#include <flint/fmpq_poly.h>
37#include <flint/fmpz_poly_mat.h>
38#if __FLINT_RELEASE >= 20500
39#include <flint/fmpz_lll.h>
40#include <flint/fq.h>
41#include <flint/fq_poly.h>
42#include <flint/fq_nmod.h>
43#include <flint/fq_nmod_poly.h>
44#include <flint/fq_nmod_mat.h>
45#endif
46
47int convFlintISingI (fmpz_t f);
48void convSingIFlintI(fmpz_t f, int p);
49void convFlintNSingN (mpz_t z, fmpz_t f);
50void convSingNFlintN(fmpz_t f, mpz_t z);
51void convSingNFlintN(fmpz_t f, number n);
52void convSingNFlintN_QQ(fmpq_t f, number n);
53void convSingNFlintN(fmpq_t f, number n, const coeffs cf);
54void convSingNFlintNN(fmpq_t re, fmpq_t im, number n, const coeffs cf);
55number convFlintNSingN (fmpz_t f);
56number convFlintNSingN (fmpq_t f, const coeffs cf);
57number convFlintNSingN (fmpz_t f, const coeffs cf);
58number convFlintNSingN_QQ(fmpq_t f, const coeffs cf);
59void convSingPFlintP(fmpq_poly_t res, poly p, const ring r);
60void convSingImPFlintP(fmpq_poly_t res, poly p, const ring r);
61poly convFlintPSingP(fmpq_poly_t f, const ring r);
62
63bigintmat*  singflint_LLL(bigintmat* A, bigintmat* T);
64intvec* singflint_LLL(intvec* A, intvec* T);
65void convSingMFlintNmod_mat(matrix m, nmod_mat_t M, const ring r);
66matrix convFlintNmod_matSingM(nmod_mat_t m, const ring r);
67
68matrix singflint_rref(matrix  m, const ring R);
69#if __FLINT_RELEASE >= 20500
70void convSingPFlintnmod_poly_t(nmod_poly_t result, const poly p, const ring r);
71void convSingMFlintFq_nmod_mat(matrix m, fq_nmod_mat_t M, const fq_nmod_ctx_t fq_con, const ring r);
72poly convFlintFq_nmodSingP(const fq_nmod_t Fp, const fq_nmod_ctx_t ctx, const ring r);
73matrix convFlintFq_nmod_matSingM(fq_nmod_mat_t m, const fq_nmod_ctx_t fq_con, const ring r);
74#endif
75#endif
76#endif
77// LIBPOLYS_POLYS_FLINTCONV_H
Note: See TracBrowser for help on using the repository browser.