1 | // emacs edit mode for this file is -*- C++ -*- |
---|
2 | /**************************************** |
---|
3 | * Computer Algebra System SINGULAR * |
---|
4 | ****************************************/ |
---|
5 | // $Id$ |
---|
6 | /* |
---|
7 | * ABSTRACT: convert data between Singular and factory |
---|
8 | */ |
---|
9 | |
---|
10 | |
---|
11 | #ifndef INCL_SINGCONV_H |
---|
12 | #define INCL_SINGCONV_H |
---|
13 | |
---|
14 | #include <polys/monomials/ring.h> |
---|
15 | #include <polys/ext_fields/longtrans.h> |
---|
16 | #ifdef HAVE_FACTORY |
---|
17 | # include <factory/factory.h> |
---|
18 | #endif /* HAVE_FACTORY */ |
---|
19 | |
---|
20 | poly convFactoryPSingP ( const CanonicalForm & f, const ring r ); |
---|
21 | CanonicalForm convSingPFactoryP( poly p, const ring r ); |
---|
22 | //CanonicalForm convSingIFactoryI( int i);// by constructor of CanonicalForm |
---|
23 | int convFactoryISingI( const CanonicalForm & f); |
---|
24 | |
---|
25 | //CanonicalForm convSingAPFactoryAP ( poly p , const Variable & a, const ring r ); |
---|
26 | //poly convFactoryAPSingAP ( const CanonicalForm & f, const ring r ); |
---|
27 | //poly convFactoryAPSingAP_R ( const CanonicalForm & f, int par_start, int var_start ); |
---|
28 | |
---|
29 | //CanonicalForm convSingGFFactoryGF ( poly p, const ring r ); |
---|
30 | //poly convFactoryGFSingGF ( const CanonicalForm & f, const ring r ); |
---|
31 | |
---|
32 | //CanonicalForm convSingAFactoryA ( number p , const Variable & a, const ring r ); |
---|
33 | //number convFactoryASingA ( const CanonicalForm & f, const ring r ); |
---|
34 | |
---|
35 | //CanonicalForm convSingTrPFactoryP ( poly p, const ring r ); |
---|
36 | //poly convFactoryPSingTrP ( const CanonicalForm & f, const ring r ); |
---|
37 | |
---|
38 | #endif /* INCL_SINGCONV_H */ |
---|