source: git/kernel/clapconv.h @ c57134

spielwiese
Last change on this file since c57134 was 9b2e40, checked in by Hans Schönemann <hannes@…>, 19 years ago
*hannes: bifac stuff git-svn-id: file:///usr/local/Singular/svn/trunk@8353 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.2 2005-06-13 16:23:30 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 convClapPSingTr ( const CanonicalForm & f );
19CanonicalForm convSingTrClapP( napoly p );
20
21poly convClapPSingP ( const CanonicalForm & f );
22#define  convSingPClapP(p) conv_SingPClapP(p,currRing)
23
24poly conv_ClapPSingP ( const CanonicalForm & f, ring r );
25CanonicalForm conv_SingPClapP( poly p, ring r );
26
27CanonicalForm convSingAPClapAP ( poly p , const Variable & a );
28poly convClapAPSingAP ( const CanonicalForm & f );
29poly convClapAPSingAP_R ( const CanonicalForm & f, int par_start, int var_start );
30
31CanonicalForm convSingGFClapGF ( poly p );
32poly convClapGFSingGF ( const CanonicalForm & f );
33
34CanonicalForm convSingAClapA ( napoly p , const Variable & a );
35napoly convClapASingA ( const CanonicalForm & f );
36
37CanonicalForm convSingTrPClapP ( poly p );
38poly convClapPSingTrP ( const CanonicalForm & f );
39
40CanonicalForm convSingNClapN( number n );
41number convClapNSingN( const CanonicalForm & n);
42
43
44// CanonicalForm convSingIClapI( int i);a <- by constructor of CanonicalForm
45int convClapISingI( const CanonicalForm & f);
46#endif /* INCL_SINGCONV_H */
Note: See TracBrowser for help on using the repository browser.