spielwiese
Last change
on this file since ac31058 was
b6b85df,
checked in by Hans Schönemann <hannes@…>, 23 years ago
|
*hannes: chines remainder
git-svn-id: file:///usr/local/Singular/svn/trunk@4686 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.9 2000-11-03 13:02:59 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 | |
---|
18 | alg convClapPSingTr ( const CanonicalForm & f ); |
---|
19 | CanonicalForm convSingTrClapP( alg p ); |
---|
20 | |
---|
21 | poly convClapPSingP ( const CanonicalForm & f ); |
---|
22 | CanonicalForm convSingPClapP( poly p ); |
---|
23 | |
---|
24 | CanonicalForm convSingAPClapAP ( poly p , const Variable & a ); |
---|
25 | poly convClapAPSingAP ( const CanonicalForm & f ); |
---|
26 | |
---|
27 | CanonicalForm convSingGFClapGF ( poly p ); |
---|
28 | poly convClapGFSingGF ( const CanonicalForm & f ); |
---|
29 | |
---|
30 | CanonicalForm convSingAClapA ( alg p , const Variable & a ); |
---|
31 | alg convClapASingA ( const CanonicalForm & f ); |
---|
32 | |
---|
33 | CanonicalForm convSingTrPClapP ( poly p ); |
---|
34 | poly convClapPSingTrP ( const CanonicalForm & f ); |
---|
35 | |
---|
36 | CanonicalForm convSingNClapN( number n ); |
---|
37 | number convClapNSingN( const CanonicalForm & n); |
---|
38 | |
---|
39 | |
---|
40 | // CanonicalForm convSingIClapI( int i);a <- by constructor of CanonicalForm |
---|
41 | int convClapISingI( const CanonicalForm & f); |
---|
42 | #endif /* INCL_SINGCONV_H */ |
---|
Note: See
TracBrowser
for help on using the repository browser.