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

spielwiese
Last change on this file since fc4977 was 7b2b05, checked in by Hans Schoenemann <hannes@…>, 13 years ago
removed longalg.*, longtrans.* (we use now algext.*, transext.*)
  • 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#ifdef HAVE_FACTORY
15
16#include <polys/monomials/ring.h>
17//#include <polys/ext_fields/longtrans.h>
18#include <factory/factory.h>
19
20
21poly convFactoryPSingP ( const CanonicalForm & f, const ring r );
22CanonicalForm convSingPFactoryP( poly p, const ring r );
23//CanonicalForm convSingIFactoryI( int i);// by constructor of CanonicalForm
24int convFactoryISingI( const CanonicalForm & f);
25
26//CanonicalForm convSingAPFactoryAP ( poly p , const Variable & a, const ring r );
27//poly convFactoryAPSingAP ( const CanonicalForm & f, const ring r );
28//poly convFactoryAPSingAP_R ( const CanonicalForm & f, int par_start, int var_start );
29
30//CanonicalForm convSingGFFactoryGF ( poly p, const ring r );
31//poly convFactoryGFSingGF ( const CanonicalForm & f, const ring r );
32
33//CanonicalForm convSingAFactoryA ( number p , const Variable & a, const ring r );
34//number convFactoryASingA ( const CanonicalForm & f, const ring r );
35
36//CanonicalForm convSingTrPFactoryP ( poly p, const ring r );
37//poly convFactoryPSingTrP ( const CanonicalForm & f, const ring r );
38
39// HAVE_FACTORY
40#endif
41
42#endif /* INCL_SINGCONV_H */
Note: See TracBrowser for help on using the repository browser.