source: git/Singular/clapsing.h @ 63be42

spielwiese
Last change on this file since 63be42 was 1a5daea, checked in by Hans Schönemann <hannes@…>, 27 years ago
* hannes: bug fixes to naNormalize/pContent/pCleardenom (clapconv.cc clapsing.cc clapsing.h longalg.cc longrat.cc polys1.cc) git-svn-id: file:///usr/local/Singular/svn/trunk@733 2c84dea3-7e68-4137-9b89-c4e89433aadc
  • Property mode set to 100644
File size: 1.4 KB
Line 
1// emacs edit mode for this file is -*- C++ -*-
2/****************************************
3*  Computer Algebra System SINGULAR     *
4****************************************/
5// $Id: clapsing.h,v 1.4 1997-09-18 14:08:19 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 "mod2.h"
15#include "structs.h"
16#include "polys.h"
17#include "ideals.h"
18#include "intvec.h"
19#include "matpol.h"
20#include "lists.h"
21
22poly singclap_gcd ( poly f, poly g );
23alg singclap_alglcm ( alg f, alg g );
24void singclap_algdividecontent ( alg f, alg g, alg &ff, alg &gg );
25
26poly singclap_resultant ( poly f, poly g , poly x);
27
28lists singclap_extgcd ( poly f, poly g );
29
30poly singclap_pdivide ( poly f, poly g );
31
32void singclap_divide_content ( poly f );
33
34ideal singclap_factorize ( poly f, intvec ** v , int with_exps);
35
36matrix singclap_irrCharSeries ( ideal I);
37
38BOOLEAN singclap_isSqrFree(poly f);
39
40char* singclap_neworder ( ideal I);
41
42poly singclap_det( const matrix m );
43int singclap_det_i( intvec * m );
44
45BOOLEAN jjGCD_P(leftv res, leftv u, leftv v);
46BOOLEAN jjFAC_P(leftv res, leftv u);
47BOOLEAN jjEXTGCD_P(leftv res, leftv u, leftv v);
48BOOLEAN jjRESULTANT(leftv res, leftv u, leftv v, leftv w);
49BOOLEAN jjSQR_FREE_DEC(leftv res, leftv u, leftv dummy);
50BOOLEAN jjCHARSERIES(leftv res, leftv u);
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.