source: git/Singular/clapsing.h @ 0e1846

spielwiese
Last change on this file since 0e1846 was 0e1846, checked in by Olaf Bachmann <obachman@…>, 27 years ago
This commit was generated by cvs2svn to compensate for changes in r59, which included commits to RCS files with non-trunk default branches. git-svn-id: file:///usr/local/Singular/svn/trunk@60 2c84dea3-7e68-4137-9b89-c4e89433aadc
  • Property mode set to 100644
File size: 1.1 KB
Line 
1// emacs edit mode for this file is -*- C++ -*-
2// $Id: clapsing.h,v 1.1.1.1 1997-03-19 13:18:53 obachman Exp $
3
4#ifndef INCL_FACTORYSING_H
5#define INCL_FACTORYSING_H
6
7#include "mod2.h"
8#include "structs.h"
9#include "polys.h"
10#include "ideals.h"
11#include "intvec.h"
12#include "matpol.h"
13#include "lists.h"
14
15poly singclap_gcd ( poly f, poly g );
16
17poly singclap_resultant ( poly f, poly g , poly x);
18
19lists singclap_extgcd ( poly f, poly g );
20
21poly singclap_pdivide ( poly f, poly g );
22
23void singclap_divide_content ( poly f );
24
25ideal singclap_factorize ( poly f, intvec ** v , int with_exps);
26
27matrix singclap_irrCharSeries ( ideal I);
28
29BOOLEAN singclap_isSqrFree(poly f);
30
31char* singclap_neworder ( ideal I);
32
33poly singclap_det( const matrix m );
34
35BOOLEAN jjGCD_P(leftv res, leftv u, leftv v);
36BOOLEAN jjFAC_P(leftv res, leftv u);
37BOOLEAN jjEXTGCD_P(leftv res, leftv u, leftv v);
38BOOLEAN jjRESULTANT(leftv res, leftv u, leftv v, leftv w);
39BOOLEAN jjSQR_FREE_DEC(leftv res, leftv u, leftv dummy);
40BOOLEAN jjCHARSERIES(leftv res, leftv u);
41#if 0
42BOOLEAN jjIS_SQR_FREE(leftv res, leftv u);
43#endif
44
45#endif /* INCL_FACTORYSING_H */
46
Note: See TracBrowser for help on using the repository browser.