source: git/libpolys/polys/clapsing.h @ 895b31c

spielwiese
Last change on this file since 895b31c was 895b31c, checked in by Oleksandr Motsak <motsak@…>, 13 years ago
ADD: re-enabled _HNF/_LLL
  • 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
45#if 1
46matrix singntl_HNF(matrix A, const ring r);
47intvec* singntl_HNF(intvec* A, const ring r);
48matrix singntl_LLL(matrix A, const ring r);
49intvec* singntl_LLL(intvec* A, const ring r);
50#endif
51#endif
52
53BOOLEAN singclap_isSqrFree(poly f, const ring r);
54
55char* singclap_neworder ( ideal I, const ring r);
56
57poly singclap_det( const matrix m, const ring r );
58int singclap_det_i( intvec * m, const ring r );
59/*
60BOOLEAN jjRESULTANT(leftv res, leftv u, leftv v, leftv w);
61BOOLEAN jjCHARSERIES(leftv res, leftv u);
62#if 0
63BOOLEAN jjIS_SQR_FREE(leftv res, leftv u);
64#endif
65*/
66
67number   nChineseRemainder(number *x, number *q,int rl, const coeffs r);
68
69#endif /* INCL_FACTORYSING_H */
70
Note: See TracBrowser for help on using the repository browser.