source: git/libpolys/polys/clapconv.h @ 85bcd6

spielwiese
Last change on this file since 85bcd6 was 6ce030f, checked in by Oleksandr Motsak <motsak@…>, 12 years ago
removal of the $Id$ svn tag from everywhere NOTE: the git SHA1 may be used instead (only on special places) NOTE: the libraries Singular/LIB/*.lib still contain the marker due to our current use of svn
  • 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#ifdef HAVE_FACTORY
14
15#include <polys/monomials/ring.h>
16#include <factory/factory.h>
17
18
19poly convFactoryPSingP ( const CanonicalForm & f, const ring r );
20CanonicalForm convSingPFactoryP( poly p, const ring r );
21int convFactoryISingI( const CanonicalForm & f);
22
23CanonicalForm convSingAPFactoryAP ( poly p , const Variable & a, const ring r );
24poly convFactoryAPSingAP ( const CanonicalForm & f, const ring r );
25poly convFactoryAPSingAP_R ( const CanonicalForm & f, int par_start, int var_start );
26
27//CanonicalForm convSingGFFactoryGF ( poly p, const ring r );
28//poly convFactoryGFSingGF ( const CanonicalForm & f, const ring r );
29
30CanonicalForm convSingAFactoryA ( poly p , const Variable & a, const ring r );
31poly convFactoryASingA ( const CanonicalForm & f, const ring r );
32
33CanonicalForm convSingTrPFactoryP ( poly p, const ring r );
34poly convFactoryPSingTrP ( const CanonicalForm & f, const ring r );
35
36#endif /* HAVE_FACTORY */
37
38#endif /* INCL_SINGCONV_H */
Note: See TracBrowser for help on using the repository browser.