source: git/kernel/clapsing.h @ 1c473f

spielwiese
Last change on this file since 1c473f was 0dd641, checked in by Hans Schönemann <hannes@…>, 16 years ago
*hannes: sqrfree git-svn-id: file:///usr/local/Singular/svn/trunk@10522 2c84dea3-7e68-4137-9b89-c4e89433aadc
  • Property mode set to 100644
File size: 1.3 KB
Line 
1// emacs edit mode for this file is -*- C++ -*-
2/****************************************
3*  Computer Algebra System SINGULAR     *
4****************************************/
5// $Id: clapsing.h,v 1.2 2008-01-23 15:42:10 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
20poly singclap_gcd ( poly f, poly g );
21napoly singclap_alglcm ( napoly f, napoly g );
22void singclap_algdividecontent ( napoly f, napoly g, napoly &ff, napoly &gg );
23
24poly singclap_resultant ( poly f, poly g , poly x);
25
26BOOLEAN singclap_extgcd ( poly f, poly g, poly &res, poly &pa, poly &pb );
27
28poly singclap_pdivide ( poly f, poly g );
29
30void singclap_divide_content ( poly f );
31
32ideal singclap_factorize ( poly f, intvec ** v , int with_exps);
33
34ideal singclap_sqrfree ( poly f );
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 jjRESULTANT(leftv res, leftv u, leftv v, leftv w);
46BOOLEAN jjCHARSERIES(leftv res, leftv u);
47#if 0
48BOOLEAN jjIS_SQR_FREE(leftv res, leftv u);
49#endif
50
51#endif /* INCL_FACTORYSING_H */
52
Note: See TracBrowser for help on using the repository browser.