source: git/kernel/clapsing.h @ 3580b7

spielwiese
Last change on this file since 3580b7 was 341696, checked in by Hans Schönemann <hannes@…>, 14 years ago
Adding Id property to all files git-svn-id: file:///usr/local/Singular/svn/trunk@12231 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$
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
20poly singclap_gcd ( poly f, poly g );
21poly singclap_gcd_r ( poly f, poly g, const ring r );
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
27BOOLEAN singclap_extgcd ( poly f, poly g, poly &res, poly &pa, poly &pb );
28BOOLEAN singclap_extgcd_r ( poly f, poly g, poly &res, poly &pa, poly &pb, const ring r );
29
30poly singclap_pdivide ( poly f, poly g );
31poly singclap_pdivide_r ( poly f, poly g, const ring r );
32
33void singclap_divide_content ( poly f );
34
35ideal singclap_factorize ( poly f, intvec ** v , int with_exps);
36
37ideal singclap_sqrfree ( poly f );
38
39matrix singclap_irrCharSeries ( ideal I);
40
41BOOLEAN singclap_isSqrFree(poly f);
42
43char* singclap_neworder ( ideal I);
44
45poly singclap_det( const matrix m );
46int singclap_det_i( intvec * m );
47
48BOOLEAN jjRESULTANT(leftv res, leftv u, leftv v, leftv w);
49BOOLEAN jjCHARSERIES(leftv res, leftv u);
50#if 0
51BOOLEAN jjIS_SQR_FREE(leftv res, leftv u);
52#endif
53
54#endif /* INCL_FACTORYSING_H */
55
Note: See TracBrowser for help on using the repository browser.