source: git/factory/singext.h @ 6594d4

fieker-DuValspielwiese
Last change on this file since 6594d4 was e2d48e, checked in by Jens Schmidt <schmidt@…>, 26 years ago
* singext.h: doc fix git-svn-id: file:///usr/local/Singular/svn/trunk@2098 2c84dea3-7e68-4137-9b89-c4e89433aadc
  • Property mode set to 100644
File size: 801 bytes
Line 
1/* emacs edit mode for this file is -*- C++ -*- */
2/* $Id: singext.h,v 1.5 1998-06-08 15:40:54 schmidt Exp $ */
3
4#ifndef INCL_SINGEXT_H
5#define INCL_SINGEXT_H
6
7#include <config.h>
8
9#include "cf_gmp.h"
10
11#include "canonicalform.h"
12
13// we need this to copy singulars GF(q) table to ours
14extern int nfCharQ;
15extern int nfM1;
16extern int nfMinPoly[];
17extern short nfPlus1Table[];
18
19// used to open the GF(q) tables from Singular
20extern FILE * feFopen ( char * path, char * mode, char *where = 0, int useWerror = 0 );
21
22/*BEGINPUBLIC*/
23
24MP_INT gmp_numerator ( const CanonicalForm & f );
25
26MP_INT gmp_denominator ( const CanonicalForm & f );
27
28CanonicalForm make_cf ( const MP_INT & n );
29
30CanonicalForm make_cf ( const MP_INT & n, const MP_INT & d, bool normalize );
31
32/*ENDPUBLIC*/
33
34#endif /* ! INCL_SINGEXT_H */
Note: See TracBrowser for help on using the repository browser.