source: git/libpolys/polys/clapsing.h @ 76fead

spielwiese
Last change on this file since 76fead was fd01a8, checked in by Frank Seelisch <seelisch@…>, 13 years ago
testing multivariate gcd from factory: problem in p_polys.cc ('longalg missing')
  • Property mode set to 100644
File size: 1.8 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 <polys/monomials/p_polys.h>
15#include <polys/monomials/ring.h>
16#include <polys/simpleideals.h>
17#include <misc/intvec.h>
18#include <polys/matpol.h>
19#include <polys/clapconv.h>
20//#include <kernel/longtrans.h>
21
22/* destroys f and g */
23poly singclap_gcd ( poly f, poly g, const ring r );
24
25/*
26napoly singclap_alglcm ( napoly f, napoly g );
27void singclap_algdividecontent ( napoly f, napoly g, napoly &ff, napoly &gg );
28*/
29
30poly singclap_resultant ( poly f, poly g , poly x, const ring r);
31
32BOOLEAN singclap_extgcd ( poly f, poly g, poly &res, poly &pa, poly &pb , const ring r);
33
34poly singclap_pdivide ( poly f, poly g, const ring r );
35
36void singclap_divide_content ( poly f, const ring r);
37
38ideal singclap_factorize ( poly f, intvec ** v , int with_exps, const ring r);
39
40ideal singclap_sqrfree ( poly f, const ring r );
41
42matrix singclap_irrCharSeries ( ideal I, const ring r);
43
44#ifdef HAVE_NTL
45matrix singntl_HNF(matrix A, const ring r);
46intvec* singntl_HNF(intvec* A, const ring r);
47matrix singntl_LLL(matrix A, const ring r);
48intvec* singntl_LLL(intvec* A, const ring r);
49#endif
50
51BOOLEAN singclap_isSqrFree(poly f, const ring r);
52
53char* singclap_neworder ( ideal I, const ring r);
54
55poly singclap_det( const matrix m, const ring r );
56int singclap_det_i( intvec * m, const ring r );
57/*
58BOOLEAN jjRESULTANT(leftv res, leftv u, leftv v, leftv w);
59BOOLEAN jjCHARSERIES(leftv res, leftv u);
60#if 0
61BOOLEAN jjIS_SQR_FREE(leftv res, leftv u);
62#endif
63*/
64
65number   nChineseRemainder(number *x, number *q,int rl, const coeffs r);
66
67#endif /* INCL_FACTORYSING_H */
68
Note: See TracBrowser for help on using the repository browser.