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
|
Rev | Line | |
---|
[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] | 18 | napoly convClapPSingTr ( const CanonicalForm & f ); |
---|
| 19 | CanonicalForm convSingTrClapP( napoly p ); |
---|
[0e1846] | 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 | |
---|
[8838ab] | 27 | CanonicalForm convSingGFClapGF ( poly p ); |
---|
[51c3da4] | 28 | poly convClapGFSingGF ( const CanonicalForm & f ); |
---|
| 29 | |
---|
[a0eb7a] | 30 | CanonicalForm convSingAClapA ( napoly p , const Variable & a ); |
---|
| 31 | napoly convClapASingA ( const CanonicalForm & f ); |
---|
[0e1846] | 32 | |
---|
| 33 | CanonicalForm convSingTrPClapP ( poly p ); |
---|
| 34 | poly convClapPSingTrP ( const CanonicalForm & f ); |
---|
| 35 | |
---|
[b6b85df] | 36 | CanonicalForm convSingNClapN( number n ); |
---|
| 37 | number convClapNSingN( const CanonicalForm & n); |
---|
| 38 | |
---|
| 39 | |
---|
[6ae4f5] | 40 | // CanonicalForm convSingIClapI( int i);a <- by constructor of CanonicalForm |
---|
| 41 | int convClapISingI( const CanonicalForm & f); |
---|
[0e1846] | 42 | #endif /* INCL_SINGCONV_H */ |
---|
Note: See
TracBrowser
for help on using the repository browser.