source: git/factory/NTLconvert.h @ cd86ac

spielwiese
Last change on this file since cd86ac was d30633d, checked in by Hans Schönemann <hannes@…>, 22 years ago
*hannes: fixes and ... git-svn-id: file:///usr/local/Singular/svn/trunk@6224 2c84dea3-7e68-4137-9b89-c4e89433aadc
  • Property mode set to 100644
File size: 1.6 KB
Line 
1/* $Id: NTLconvert.h,v 1.2 2002-07-30 15:20:02 Singular Exp $ */
2#ifndef INCL_NTLCONVERT_H
3#define INCL_NTLCONVERT_H
4
5#include <config.h>
6
7#include "cf_gmp.h"
8
9#include "assert.h"
10
11#include "cf_defs.h"
12#include "canonicalform.h"
13#include "cf_iter.h"
14#include "fac_berlekamp.h"
15#include "fac_cantzass.h"
16#include "fac_univar.h"
17#include "fac_multivar.h"
18#include "fac_sqrfree.h"
19#include "cf_algorithm.h"
20
21#ifdef HAVE_NTL
22
23#include <NTL/ZZXFactoring.h>
24#include <NTL/ZZ_pXFactoring.h>
25#include <NTL/GF2XFactoring.h>
26#include "int_int.h"
27#include <limits.h>
28#include <NTL/ZZ_pEXFactoring.h>
29#include <NTL/GF2EXFactoring.h>
30
31ZZ_pX convertFacCF2NTLZZpX(CanonicalForm f);
32GF2X convertFacCF2NTLGF2X(CanonicalForm f);
33CanonicalForm convertNTLZZpX2CF(ZZ_pX poly,Variable x);
34CanonicalForm convertNTLGF2X2CF(GF2X poly,Variable x);
35CFFList convertNTLvec_pair_ZZpX_long2FacCFFList(vec_pair_ZZ_pX_long e,ZZ_p multi,Variable x);
36
37CFFList convertNTLvec_pair_GF2X_long2FacCFFList(vec_pair_GF2X_long e,GF2 multi,Variable x);
38CanonicalForm convertZZ2CF(ZZ coefficient);
39ZZX convertFacCF2NTLZZX(CanonicalForm f);
40CFFList convertNTLvec_pair_ZZX_long2FacCFFList(vec_pair_ZZX_long e,ZZ multi,Variable x);
41CanonicalForm convertNTLZZpE2CF(ZZ_pE coefficient,Variable x);
42CFFList convertNTLvec_pair_ZZpEX_long2FacCFFList(vec_pair_ZZ_pEX_long e,ZZ_pE multi,Variable x,Variable alpha);
43CanonicalForm convertNTLGF2E2CF(GF2E coefficient,Variable x);
44CFFList convertNTLvec_pair_GF2EX_long2FacCFFList(vec_pair_GF2EX_long e,GF2E multi,Variable x,Variable alpha);
45GF2EX convertFacCF2NTLGF2EX(CanonicalForm f,ZZ_pX mipo);
46ZZ_pEX convertFacCF2NTLZZ_pEX(CanonicalForm f,ZZ_pX mipo);
47
48#endif
49#endif
Note: See TracBrowser for help on using the repository browser.