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

spielwiese
Last change on this file since 9144617 was 9144617, checked in by Oleksandr Motsak <motsak@…>, 13 years ago
ADD: trying to avoid factory as much as possible (build without...?)
  • 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.