source: git/Singular/clapconv.h @ 9c756f

spielwiese
Last change on this file since 9c756f was 51c3da4, checked in by Hans Schönemann <hannes@…>, 26 years ago
* hannes: added tests for coeff-filed GF(q), stubs for GF(q) conversion (clapconv.cc clapsing.cc clapconv.h) git-svn-id: file:///usr/local/Singular/svn/trunk@1130 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.5 1998-02-09 11:29:05 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 "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 convSingGFClapGF ( poly p , const Variable & a );
29poly convClapGFSingGF ( const CanonicalForm & f );
30
31CanonicalForm convSingAClapA ( alg p , const Variable & a );
32alg convClapASingA ( const CanonicalForm & f );
33
34CanonicalForm convSingTrPClapP ( poly p );
35poly convClapPSingTrP ( const CanonicalForm & f );
36
37// CanonicalForm convSingIClapI( int i);a <- by constructor of CanonicalForm
38int convClapISingI( const CanonicalForm & f);
39#endif /* INCL_SINGCONV_H */
Note: See TracBrowser for help on using the repository browser.