source: git/kernel/clapconv.h @ 301c033

fieker-DuValspielwiese
Last change on this file since 301c033 was 599326, checked in by Kai Krüger <krueger@…>, 14 years ago
Anne, Kai, Frank: - changes to #include "..." statements to allow cleaner build structure - affected directories: omalloc, kernel, Singular - not yet done: IntergerProgramming git-svn-id: file:///usr/local/Singular/svn/trunk@13032 2c84dea3-7e68-4137-9b89-c4e89433aadc
  • Property mode set to 100644
File size: 1.4 KB
Line 
1// emacs edit mode for this file is -*- C++ -*-
2/****************************************
3*  Computer Algebra System SINGULAR     *
4****************************************/
5// $Id$
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 <kernel/structs.h>
15#include <kernel/longalg.h>
16#include <kernel/ring.h>
17#include <factory.h>
18
19poly convFactoryPSingP ( const CanonicalForm & f, const ring r=currRing );
20CanonicalForm convSingPFactoryP( poly p, const ring r=currRing );
21
22CanonicalForm convSingAPFactoryAP ( poly p , const Variable & a, const ring r );
23poly convFactoryAPSingAP ( const CanonicalForm & f, const ring r );
24poly convFactoryAPSingAP_R ( const CanonicalForm & f, int par_start, int var_start );
25
26CanonicalForm convSingGFFactoryGF ( poly p );
27poly convFactoryGFSingGF ( const CanonicalForm & f );
28
29CanonicalForm convSingAFactoryA ( napoly p , const Variable & a, const ring r );
30napoly convFactoryASingA ( const CanonicalForm & f, const ring r );
31
32CanonicalForm convSingTrPFactoryP ( poly p, const ring r=currRing );
33poly convFactoryPSingTrP ( const CanonicalForm & f, const ring r=currRing );
34
35CanonicalForm convSingNFactoryN( number n, const ring r );
36number convFactoryNSingN( const CanonicalForm & n);
37
38
39// CanonicalForm convSingIFactoryI( int i);a <- by constructor of CanonicalForm
40int convFactoryISingI( const CanonicalForm & f);
41#endif /* INCL_SINGCONV_H */
Note: See TracBrowser for help on using the repository browser.