source: git/Singular/clapconv.h @ a0eb7a

spielwiese
Last change on this file since a0eb7a was a0eb7a, checked in by Hans Schönemann <hannes@…>, 23 years ago
*hannes: napoly git-svn-id: file:///usr/local/Singular/svn/trunk@4826 2c84dea3-7e68-4137-9b89-c4e89433aadc
  • Property mode set to 100644
File size: 1.2 KB
Line 
1// emacs edit mode for this file is -*- C++ -*-
2/****************************************
3*  Computer Algebra System SINGULAR     *
4****************************************/
5// $Id: clapconv.h,v 1.10 2000-12-07 12:04:56 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 );
22CanonicalForm convSingPClapP( poly p );
23
24CanonicalForm convSingAPClapAP ( poly p , const Variable & a );
25poly convClapAPSingAP ( const CanonicalForm & f );
26
27CanonicalForm convSingGFClapGF ( poly p );
28poly convClapGFSingGF ( const CanonicalForm & f );
29
30CanonicalForm convSingAClapA ( napoly p , const Variable & a );
31napoly convClapASingA ( const CanonicalForm & f );
32
33CanonicalForm convSingTrPClapP ( poly p );
34poly convClapPSingTrP ( const CanonicalForm & f );
35
36CanonicalForm convSingNClapN( number n );
37number convClapNSingN( const CanonicalForm & n);
38
39
40// CanonicalForm convSingIClapI( int i);a <- by constructor of CanonicalForm
41int convClapISingI( const CanonicalForm & f);
42#endif /* INCL_SINGCONV_H */
Note: See TracBrowser for help on using the repository browser.