source: git/Singular/clapsing.h @ 400884

spielwiese
Last change on this file since 400884 was 6ae4f5, checked in by Hans Schönemann <hannes@…>, 27 years ago
* hannes: - corrected scanner.l: parsing of strings in blocks: if (1) { write("","}"); } - corrected ipassign.cc: assignment of "dummy" types: DEF, NONE - corrected sleftv::Print(_), initialisation of _ - added conversion int->def - added CopyD(DEF) - in insert(..): object should not be of type NONE (lists.cc:lInsert0) - added int*intvec, int*intmat to iparith.cc git-svn-id: file:///usr/local/Singular/svn/trunk@145 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 1997-04-09 12:19:41 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 );
23
24poly singclap_resultant ( poly f, poly g , poly x);
25
26lists singclap_extgcd ( poly f, poly g );
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 jjGCD_P(leftv res, leftv u, leftv v);
44BOOLEAN jjFAC_P(leftv res, leftv u);
45BOOLEAN jjEXTGCD_P(leftv res, leftv u, leftv v);
46BOOLEAN jjRESULTANT(leftv res, leftv u, leftv v, leftv w);
47BOOLEAN jjSQR_FREE_DEC(leftv res, leftv u, leftv dummy);
48BOOLEAN jjCHARSERIES(leftv res, leftv u);
49#if 0
50BOOLEAN jjIS_SQR_FREE(leftv res, leftv u);
51#endif
52
53#endif /* INCL_FACTORYSING_H */
54
Note: See TracBrowser for help on using the repository browser.