source: git/kernel/clapconv.h @ 098f98f

spielwiese
Last change on this file since 098f98f was 835d83, checked in by Hans Schönemann <hannes@…>, 14 years ago
move stuff from structs.h git-svn-id: file:///usr/local/Singular/svn/trunk@12398 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 "ring.h"
17#include <factory.h>
18
19poly convFactoryPSingP ( const CanonicalForm & f, const ring r=currRing );
20CanonicalForm convSingPFactoryP( poly p, const ring r=currRing );
21
22CanonicalForm convSingAPFactoryAP ( poly p , const Variable & a, const ring r );
23poly convFactoryAPSingAP ( const CanonicalForm & f, const ring r );
24poly convFactoryAPSingAP_R ( const CanonicalForm & f, int par_start, int var_start );
25
26CanonicalForm convSingGFFactoryGF ( poly p );
27poly convFactoryGFSingGF ( const CanonicalForm & f );
28
29CanonicalForm convSingAFactoryA ( napoly p , const Variable & a, const ring r );
30napoly convFactoryASingA ( const CanonicalForm & f, const ring r );
31
32CanonicalForm convSingTrPFactoryP ( poly p, const ring r=currRing );
33poly convFactoryPSingTrP ( const CanonicalForm & f, const ring r=currRing );
34
35CanonicalForm convSingNFactoryN( number n, const ring r );
36number convFactoryNSingN( const CanonicalForm & n);
37
38
39// CanonicalForm convSingIFactoryI( int i);a <- by constructor of CanonicalForm
40int convFactoryISingI( const CanonicalForm & f);
41#endif /* INCL_SINGCONV_H */
Note: See TracBrowser for help on using the repository browser.