source: git/kernel/clapsing.h @ 788529d

spielwiese
Last change on this file since 788529d was 35aab3, checked in by Hans Schönemann <hannes@…>, 21 years ago
This commit was generated by cvs2svn to compensate for changes in r6879, which included commits to RCS files with non-trunk default branches. git-svn-id: file:///usr/local/Singular/svn/trunk@6880 2c84dea3-7e68-4137-9b89-c4e89433aadc
  • Property mode set to 100644
File size: 1.2 KB
Line 
1// emacs edit mode for this file is -*- C++ -*-
2/****************************************
3*  Computer Algebra System SINGULAR     *
4****************************************/
5// $Id: clapsing.h,v 1.1.1.1 2003-10-06 12:15:50 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
34matrix singclap_irrCharSeries ( ideal I);
35
36BOOLEAN singclap_isSqrFree(poly f);
37
38char* singclap_neworder ( ideal I);
39
40poly singclap_det( const matrix m );
41int singclap_det_i( intvec * m );
42
43BOOLEAN jjRESULTANT(leftv res, leftv u, leftv v, leftv w);
44BOOLEAN jjCHARSERIES(leftv res, leftv u);
45#if 0
46BOOLEAN jjIS_SQR_FREE(leftv res, leftv u);
47#endif
48
49#endif /* INCL_FACTORYSING_H */
50
Note: See TracBrowser for help on using the repository browser.