source: git/kernel/clapconv.h @ 3a0e1a

spielwiese
Last change on this file since 3a0e1a was 46f6af6, checked in by Hans Schönemann <hannes@…>, 16 years ago
*hannes: buckte for conversions git-svn-id: file:///usr/local/Singular/svn/trunk@10491 2c84dea3-7e68-4137-9b89-c4e89433aadc
  • Property mode set to 100644
File size: 1.5 KB
Line 
1// emacs edit mode for this file is -*- C++ -*-
2/****************************************
3*  Computer Algebra System SINGULAR     *
4****************************************/
5// $Id: clapconv.h,v 1.3 2008-01-07 13:36:16 Singular Exp $
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
18napoly convFactoryPSingTr ( const CanonicalForm & f );
19CanonicalForm convSingTrFactoryP( napoly p );
20
21#define  convSingPFactoryP(p) conv_SingPFactoryP(p,currRing)
22
23poly conv_FactoryPSingP ( const CanonicalForm & f, ring r );
24CanonicalForm conv_SingPFactoryP( poly p, ring r );
25
26#define  convFactoryPSingP(p) conv_FactoryPSingP(p,currRing)
27
28CanonicalForm convSingAPFactoryAP ( poly p , const Variable & a );
29poly convFactoryAPSingAP ( const CanonicalForm & f );
30poly convFactoryAPSingAP_R ( const CanonicalForm & f, int par_start, int var_start );
31
32CanonicalForm convSingGFFactoryGF ( poly p );
33poly convFactoryGFSingGF ( const CanonicalForm & f );
34
35CanonicalForm convSingAFactoryA ( napoly p , const Variable & a );
36napoly convFactoryASingA ( const CanonicalForm & f );
37
38CanonicalForm convSingTrPFactoryP ( poly p );
39poly convFactoryPSingTrP ( const CanonicalForm & f );
40
41CanonicalForm convSingNFactoryN( number n );
42number convFactoryNSingN( const CanonicalForm & n);
43
44
45// CanonicalForm convSingIFactoryI( int i);a <- by constructor of CanonicalForm
46int convFactoryISingI( const CanonicalForm & f);
47#endif /* INCL_SINGCONV_H */
Note: See TracBrowser for help on using the repository browser.