source: git/Singular/clapconv.h @ d268a9

spielwiese
Last change on this file since d268a9 was d268a9, checked in by Hans Schönemann <hannes@…>, 23 years ago
*hannes: conv_ClapPSingP git-svn-id: file:///usr/local/Singular/svn/trunk@4855 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.11 2000-12-08 17:26:23 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 );
29
30CanonicalForm convSingGFClapGF ( poly p );
31poly convClapGFSingGF ( const CanonicalForm & f );
32
33CanonicalForm convSingAClapA ( napoly p , const Variable & a );
34napoly convClapASingA ( const CanonicalForm & f );
35
36CanonicalForm convSingTrPClapP ( poly p );
37poly convClapPSingTrP ( const CanonicalForm & f );
38
39CanonicalForm convSingNClapN( number n );
40number convClapNSingN( const CanonicalForm & n);
41
42
43// CanonicalForm convSingIClapI( int i);a <- by constructor of CanonicalForm
44int convClapISingI( const CanonicalForm & f);
45#endif /* INCL_SINGCONV_H */
Note: See TracBrowser for help on using the repository browser.