source: git/kernel/clapconv.h @ 3580b7

spielwiese
Last change on this file since 3580b7 was 341696, checked in by Hans Schönemann <hannes@…>, 14 years ago
Adding Id property to all files git-svn-id: file:///usr/local/Singular/svn/trunk@12231 2c84dea3-7e68-4137-9b89-c4e89433aadc
  • 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 "structs.h"
15#include "longalg.h"
16#include <factory.h>
17
18poly convFactoryPSingP ( const CanonicalForm & f, const ring r=currRing );
19CanonicalForm convSingPFactoryP( poly p, const ring r=currRing );
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
25CanonicalForm convSingGFFactoryGF ( poly p );
26poly convFactoryGFSingGF ( const CanonicalForm & f );
27
28CanonicalForm convSingAFactoryA ( napoly p , const Variable & a, const ring r );
29napoly convFactoryASingA ( const CanonicalForm & f, const ring r );
30
31CanonicalForm convSingTrPFactoryP ( poly p, const ring r=currRing );
32poly convFactoryPSingTrP ( const CanonicalForm & f, const ring r=currRing );
33
34CanonicalForm convSingNFactoryN( number n, const ring r );
35number convFactoryNSingN( const CanonicalForm & n);
36
37
38// CanonicalForm convSingIFactoryI( int i);a <- by constructor of CanonicalForm
39int convFactoryISingI( const CanonicalForm & f);
40#endif /* INCL_SINGCONV_H */
Note: See TracBrowser for help on using the repository browser.