source: git/kernel/clapconv.h @ ab33f6e

spielwiese
Last change on this file since ab33f6e was ab33f6e, checked in by Hans Schönemann <hannes@…>, 15 years ago
*hannes: indep. of currRing git-svn-id: file:///usr/local/Singular/svn/trunk@12055 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.4 2009-08-13 12:48:39 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
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 );
25poly convFactoryAPSingAP ( const CanonicalForm & f );
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 );
32napoly convFactoryASingA ( const CanonicalForm & f );
33
34CanonicalForm convSingTrPFactoryP ( poly p );
35poly convFactoryPSingTrP ( const CanonicalForm & f );
36
37CanonicalForm convSingNFactoryN( number n );
38number convFactoryNSingN( const CanonicalForm & n);
39
40
41// CanonicalForm convSingIFactoryI( int i);a <- by constructor of CanonicalForm
42int convFactoryISingI( const CanonicalForm & f);
43#endif /* INCL_SINGCONV_H */
Note: See TracBrowser for help on using the repository browser.