source: git/libpolys/polys/clapconv.h @ abb4787

spielwiese
Last change on this file since abb4787 was abb4787, checked in by Hans Schoenemann <hannes@…>, 12 years ago
conversion factory <->singular for poly fix coeff tests for factory
  • Property mode set to 100644
File size: 1.4 KB
Line 
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
20poly convFactoryPSingP ( const CanonicalForm & f, const ring r );
21CanonicalForm convSingPFactoryP( poly p, const ring r );
22//CanonicalForm convSingIFactoryI( int i);// by constructor of CanonicalForm
23int 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 */
Note: See TracBrowser for help on using the repository browser.