source: git/libpolys/coeffs/ffields.h @ c087b3

fieker-DuValspielwiese
Last change on this file since c087b3 was 75f460, checked in by Hans Schoenemann <hannes@…>, 9 years ago
format
  • Property mode set to 100644
File size: 604 bytes
Line 
1#ifndef FFIELDS_H
2#define FFIELDS_H
3/****************************************
4*  Computer Algebra System SINGULAR     *
5****************************************/
6/*
7* ABSTRACT: finite fields with a none-prime number of elements (via tables)
8*/
9#include <misc/auxiliary.h>
10
11struct n_Procs_s; typedef struct  n_Procs_s  *coeffs;
12
13//// Initialize r (n_GF)
14BOOLEAN nfInitChar(coeffs r, void*);
15
16/// Show the mininimal polynom....
17/// NOTE: this is used by char *  sleftv::String(void *d, BOOLEAN typed, int dim) (from Singular/subexpr.cc)
18/// for printing minpoly
19void    nfShowMipo(const coeffs r);
20
21#endif
Note: See TracBrowser for help on using the repository browser.