source: git/kernel/clapconv.h @ 6620d75

spielwiese
Last change on this file since 6620d75 was 6620d75, checked in by Hans Schönemann <hannes@…>, 15 years ago
*hannes: more ring indep. stuff git-svn-id: file:///usr/local/Singular/svn/trunk@12056 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: clapconv.h,v 1.5 2009-08-13 15:17:02 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
18poly convFactoryPSingP ( const CanonicalForm & f, const ring r=currRing );
19CanonicalForm convSingPFactoryP( poly p, const int off=0, const ring r=currRing );
20
21CanonicalForm convSingAPFactoryAP ( poly p , const Variable & a );
22poly convFactoryAPSingAP ( const CanonicalForm & f );
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 );
29napoly convFactoryASingA ( const CanonicalForm & f );
30
31CanonicalForm convSingTrPFactoryP ( poly p, const ring r=currRing );
32poly convFactoryPSingTrP ( const CanonicalForm & f, const ring r=currRing );
33
34CanonicalForm convSingNFactoryN( number n );
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.