source: git/libpolys/polys/clapconv.h @ fea2af

spielwiese
Last change on this file since fea2af was fea2af, checked in by Oleksandr Motsak <motsak@…>, 12 years ago
SW cannot be built without factory FIX: fixed libpolys and Singular/eigenval_ip.cc (quick and dirty) TODO: make check in libpolys/tests -> all dynamic tests are missing SearchPATH :( TODO: undefined reference to strat_fac_debug & strat_nr? TODO: kernel? Singular?
  • 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$
6/*
7* ABSTRACT: convert data between Singular and factory
8*/
9
10
11#ifndef INCL_SINGCONV_H
12#define INCL_SINGCONV_H
13
14#ifdef HAVE_FACTORY
15
16#include <polys/monomials/ring.h>
17#include <factory/factory.h>
18
19
20poly convFactoryPSingP ( const CanonicalForm & f, const ring r );
21CanonicalForm convSingPFactoryP( poly p, const ring r );
22int convFactoryISingI( const CanonicalForm & f);
23
24CanonicalForm convSingAPFactoryAP ( poly p , const Variable & a, const ring r );
25poly convFactoryAPSingAP ( const CanonicalForm & f, const ring r );
26poly convFactoryAPSingAP_R ( const CanonicalForm & f, int par_start, int var_start );
27
28//CanonicalForm convSingGFFactoryGF ( poly p, const ring r );
29//poly convFactoryGFSingGF ( const CanonicalForm & f, const ring r );
30
31CanonicalForm convSingAFactoryA ( poly p , const Variable & a, const ring r );
32poly convFactoryASingA ( const CanonicalForm & f, const ring r );
33
34CanonicalForm convSingTrPFactoryP ( poly p, const ring r );
35poly convFactoryPSingTrP ( const CanonicalForm & f, const ring r );
36
37#endif /* HAVE_FACTORY */
38
39#endif /* INCL_SINGCONV_H */
Note: See TracBrowser for help on using the repository browser.