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

spielwiese
Last change on this file since 405407 was dc4782, checked in by Hans Schoenemann <hannes@…>, 10 years ago
chg: factory/libfac is not optional, removing HAVE_FACTORY/HAVE_LIBFAC
  • Property mode set to 100644
File size: 1.2 KB
Line 
1// emacs edit mode for this file is -*- C++ -*-
2/****************************************
3*  Computer Algebra System SINGULAR     *
4****************************************/
5/*
6* ABSTRACT: convert data between Singular and factory
7*/
8
9
10#ifndef INCL_SINGCONV_H
11#define INCL_SINGCONV_H
12
13#include <polys/monomials/ring.h>
14#include <factory/factory.h>
15
16
17poly convFactoryPSingP ( const CanonicalForm & f, const ring r );
18CanonicalForm convSingPFactoryP( poly p, const ring r );
19int convFactoryISingI( const CanonicalForm & f);
20
21CanonicalForm convSingAPFactoryAP ( poly p , const Variable & a, const ring r );
22poly convFactoryAPSingAP ( const CanonicalForm & f, const ring r );
23poly convFactoryAPSingAP_R ( const CanonicalForm & f, int par_start, int var_start );
24
25//CanonicalForm convSingGFFactoryGF ( poly p, const ring r );
26//poly convFactoryGFSingGF ( const CanonicalForm & f, const ring r );
27
28CanonicalForm convSingAFactoryA ( poly p , const Variable & a, const ring r );
29poly convFactoryASingA ( const CanonicalForm & f, const ring r );
30
31CanonicalForm convSingTrPFactoryP ( poly p, const ring r );
32poly convFactoryPSingTrP ( const CanonicalForm & f, const ring r );
33
34#endif /* INCL_SINGCONV_H */
Note: See TracBrowser for help on using the repository browser.