source: git/Singular/clapsing.h @ 48aa42

spielwiese
Last change on this file since 48aa42 was a0eb7a, checked in by Hans Schönemann <hannes@…>, 23 years ago
*hannes: napoly git-svn-id: file:///usr/local/Singular/svn/trunk@4826 2c84dea3-7e68-4137-9b89-c4e89433aadc
  • Property mode set to 100644
File size: 1.5 KB
Line 
1// emacs edit mode for this file is -*- C++ -*-
2/****************************************
3*  Computer Algebra System SINGULAR     *
4****************************************/
5// $Id: clapsing.h,v 1.8 2000-12-07 12:05:29 Singular Exp $
6/*
7* ABSTRACT: interface between Singular and factory
8*/
9
10
11#ifndef INCL_FACTORYSING_H
12#define INCL_FACTORYSING_H
13
14#include "structs.h"
15#include "polys.h"
16#include "ideals.h"
17#include "intvec.h"
18#include "matpol.h"
19#include "lists.h"
20
21poly singclap_gcd ( poly f, poly g );
22napoly singclap_alglcm ( napoly f, napoly g );
23void singclap_algdividecontent ( napoly f, napoly g, napoly &ff, napoly &gg );
24
25poly singclap_resultant ( poly f, poly g , poly x);
26
27lists singclap_extgcd ( poly f, poly g );
28
29poly singclap_pdivide ( poly f, poly g );
30
31void singclap_divide_content ( poly f );
32
33ideal singclap_factorize ( poly f, intvec ** v , int with_exps);
34
35matrix singclap_irrCharSeries ( ideal I);
36
37BOOLEAN singclap_isSqrFree(poly f);
38
39char* singclap_neworder ( ideal I);
40
41poly singclap_det( const matrix m );
42int singclap_det_i( intvec * m );
43
44BOOLEAN jjGCD_P(leftv res, leftv u, leftv v);
45BOOLEAN jjFAC_P(leftv res, leftv u);
46BOOLEAN jjEXTGCD_P(leftv res, leftv u, leftv v);
47BOOLEAN jjRESULTANT(leftv res, leftv u, leftv v, leftv w);
48BOOLEAN jjSQR_FREE_DEC(leftv res, leftv u, leftv dummy);
49BOOLEAN jjCHARSERIES(leftv res, leftv u);
50lists singclap_chineseRemainder(lists x, lists q);
51#if 0
52BOOLEAN jjIS_SQR_FREE(leftv res, leftv u);
53#endif
54
55#endif /* INCL_FACTORYSING_H */
56
Note: See TracBrowser for help on using the repository browser.