source: git/kernel/clapconv.h @ a934fc8

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