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
RevLine 
[0e1846]1// emacs edit mode for this file is -*- C++ -*-
[6ae4f5]2/****************************************
3*  Computer Algebra System SINGULAR     *
4****************************************/
[a0eb7a]5// $Id: clapconv.h,v 1.10 2000-12-07 12:04:56 Singular Exp $
[6ae4f5]6/*
7* ABSTRACT: convert data between Singular and factory
8*/
9
[0e1846]10
11#ifndef INCL_SINGCONV_H
12#define INCL_SINGCONV_H
13
14#include "structs.h"
15#include "longalg.h"
[3ebcbd]16#include <factory.h>
[0e1846]17
[a0eb7a]18napoly convClapPSingTr ( const CanonicalForm & f );
19CanonicalForm convSingTrClapP( napoly p );
[0e1846]20
21poly convClapPSingP ( const CanonicalForm & f );
22CanonicalForm convSingPClapP( poly p );
23
24CanonicalForm convSingAPClapAP ( poly p , const Variable & a );
25poly convClapAPSingAP ( const CanonicalForm & f );
26
[8838ab]27CanonicalForm convSingGFClapGF ( poly p );
[51c3da4]28poly convClapGFSingGF ( const CanonicalForm & f );
29
[a0eb7a]30CanonicalForm convSingAClapA ( napoly p , const Variable & a );
31napoly convClapASingA ( const CanonicalForm & f );
[0e1846]32
33CanonicalForm convSingTrPClapP ( poly p );
34poly convClapPSingTrP ( const CanonicalForm & f );
35
[b6b85df]36CanonicalForm convSingNClapN( number n );
37number convClapNSingN( const CanonicalForm & n);
38
39
[6ae4f5]40// CanonicalForm convSingIClapI( int i);a <- by constructor of CanonicalForm
41int convClapISingI( const CanonicalForm & f);
[0e1846]42#endif /* INCL_SINGCONV_H */
Note: See TracBrowser for help on using the repository browser.