source: git/libpolys/polys/clapsing.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.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
15#ifdef HAVE_FACTORY
16
17#include <polys/monomials/p_polys.h>
18#include <polys/monomials/ring.h>
19#include <polys/simpleideals.h>
20#include <misc/intvec.h>
21#include <polys/matpol.h>
22//#include <polys/clapconv.h>
23//#include <kernel/longtrans.h>
24
25/* destroys f and g */
26poly singclap_gcd ( poly f, poly g, const ring r );
27
28/*
29// commented out!
30napoly singclap_alglcm ( napoly f, napoly g );
31void singclap_algdividecontent ( napoly f, napoly g, napoly &ff, napoly &gg );
32*/
33
34poly singclap_resultant ( poly f, poly g , poly x, const ring r);
35
36BOOLEAN singclap_extgcd ( poly f, poly g, poly &res, poly &pa, poly &pb , const ring r);
37
38poly singclap_pdivide ( poly f, poly g, const ring r );
39
40void singclap_divide_content ( poly f, const ring r);
41
42ideal singclap_factorize ( poly f, intvec ** v , int with_exps, const ring r);
43
44ideal singclap_sqrfree ( poly f, intvec ** v , int with_exps, const ring r );
45
46#ifdef HAVE_NTL
47#if 1
48matrix singntl_HNF(matrix A, const ring r);
49intvec* singntl_HNF(intvec* A, const ring r);
50matrix singntl_LLL(matrix A, const ring r);
51intvec* singntl_LLL(intvec* A, const ring r);
52#endif
53#endif
54
55BOOLEAN singclap_isSqrFree(poly f, const ring r);
56
57#ifdef HAVE_LIBFAC
58 matrix singclap_irrCharSeries ( ideal I, const ring r);
59 char* singclap_neworder ( ideal I, const ring r);
60#endif
61
62poly singclap_det( const matrix m, const ring r );
63int singclap_det_i( intvec * m, const ring r );
64
65number   nChineseRemainder(number *x, number *q,int rl, const coeffs r);
66
67
68#endif /* HAVE_FACTORY */
69
70
71#endif /* INCL_FACTORYSING_H */
72
Note: See TracBrowser for help on using the repository browser.