source: git/libpolys/polys/clapsing.h @ abb4787

spielwiese
Last change on this file since abb4787 was abb4787, checked in by Hans Schoenemann <hannes@…>, 13 years ago
conversion factory <->singular for poly fix coeff tests for factory
  • Property mode set to 100644
File size: 1.7 KB
Line 
1// emacs edit mode for this file is -*- C++ -*-
2/****************************************
3*  Computer Algebra System SINGULAR     *
4****************************************/
5// $Id$
6/*
7* ABSTRACT: interface between Singular and factory
8*/
9
10
11#ifndef INCL_FACTORYSING_H
12#define INCL_FACTORYSING_H
13
14// #include <kernel/structs.h>
15#include <polys/monomials/p_polys.h>
16#include <polys/monomials/ring.h>
17#include <polys/simpleideals.h>
18#include <misc/intvec.h>
19#include <polys/matpol.h>
20#include <polys/clapconv.h>
21//#include <kernel/longtrans.h>
22
23poly singclap_gcd ( poly f, poly g, const ring r );
24/*
25napoly singclap_alglcm ( napoly f, napoly g );
26void singclap_algdividecontent ( napoly f, napoly g, napoly &ff, napoly &gg );
27*/
28
29poly singclap_resultant ( poly f, poly g , poly x, const ring r);
30
31BOOLEAN singclap_extgcd ( poly f, poly g, poly &res, poly &pa, poly &pb , const ring r);
32
33poly singclap_pdivide ( poly f, poly g, const ring r );
34
35void singclap_divide_content ( poly f, const ring r);
36
37ideal singclap_factorize ( poly f, intvec ** v , int with_exps, const ring r);
38
39ideal singclap_sqrfree ( poly f, const ring r );
40
41matrix singclap_irrCharSeries ( ideal I, const ring r);
42
43#ifdef HAVE_NTL
44matrix singntl_HNF(matrix A, const ring r);
45intvec* singntl_HNF(intvec* A, const ring r);
46matrix singntl_LLL(matrix A, const ring r);
47intvec* singntl_LLL(intvec* A, const ring r);
48#endif
49
50BOOLEAN singclap_isSqrFree(poly f, const ring r);
51
52char* singclap_neworder ( ideal I, const ring r);
53
54poly singclap_det( const matrix m, const ring r );
55int singclap_det_i( intvec * m, const ring r );
56/*
57BOOLEAN jjRESULTANT(leftv res, leftv u, leftv v, leftv w);
58BOOLEAN jjCHARSERIES(leftv res, leftv u);
59#if 0
60BOOLEAN jjIS_SQR_FREE(leftv res, leftv u);
61#endif
62*/
63
64#endif /* INCL_FACTORYSING_H */
65
Note: See TracBrowser for help on using the repository browser.