source: git/Singular/clapconv.h @ 400884

spielwiese
Last change on this file since 400884 was 3ebcbd, checked in by Olaf Bachmann <obachman@…>, 27 years ago
Mon May 5 10:31:15 1997 Olaf Bachmann <obachman@ratchwum.mathematik.uni-kl.de (Olaf Bachmann)> * mod2.h.in: define buildin_gmp, if HAVE_GMP and macintosh git-svn-id: file:///usr/local/Singular/svn/trunk@241 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.4 1997-05-05 13:40:02 obachman 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 "mod2.h"
15#include "structs.h"
16#include "longalg.h"
17#include <factory.h>
18
19alg convClapPSingTr ( const CanonicalForm & f );
20CanonicalForm convSingTrClapP( alg p );
21
22poly convClapPSingP ( const CanonicalForm & f );
23CanonicalForm convSingPClapP( poly p );
24
25CanonicalForm convSingAPClapAP ( poly p , const Variable & a );
26poly convClapAPSingAP ( const CanonicalForm & f );
27
28CanonicalForm convSingAClapA ( alg p , const Variable & a );
29alg convClapASingA ( const CanonicalForm & f );
30
31CanonicalForm convSingTrPClapP ( poly p );
32poly convClapPSingTrP ( const CanonicalForm & f );
33
34// CanonicalForm convSingIClapI( int i);a <- by constructor of CanonicalForm
35int convClapISingI( const CanonicalForm & f);
36#endif /* INCL_SINGCONV_H */
Note: See TracBrowser for help on using the repository browser.