source: git/Singular/clapconv.h @ 8838ab

spielwiese
Last change on this file since 8838ab was 8838ab, checked in by Hans Schönemann <hannes@…>, 25 years ago
*hannes: GF-conversion git-svn-id: file:///usr/local/Singular/svn/trunk@3131 2c84dea3-7e68-4137-9b89-c4e89433aadc
  • Property mode set to 100644
File size: 1.1 KB
Line 
1// emacs edit mode for this file is -*- C++ -*-
2/****************************************
3*  Computer Algebra System SINGULAR     *
4****************************************/
5// $Id: clapconv.h,v 1.7 1999-06-15 08:33:13 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
18alg convClapPSingTr ( const CanonicalForm & f );
19CanonicalForm convSingTrClapP( alg 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 ( alg p , const Variable & a );
31alg convClapASingA ( const CanonicalForm & f );
32
33CanonicalForm convSingTrPClapP ( poly p );
34poly convClapPSingTrP ( const CanonicalForm & f );
35
36// CanonicalForm convSingIClapI( int i);a <- by constructor of CanonicalForm
37int convClapISingI( const CanonicalForm & f);
38#endif /* INCL_SINGCONV_H */
Note: See TracBrowser for help on using the repository browser.