spielwiese
Last change
on this file since 85bcd6 was
6ce030f,
checked in by Oleksandr Motsak <motsak@…>, 11 years ago
|
removal of the $Id$ svn tag from everywhere
NOTE: the git SHA1 may be used instead (only on special places)
NOTE: the libraries Singular/LIB/*.lib still contain the marker due to our current use of svn
|
-
Property mode set to
100644
|
File size:
614 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 | |
---|
11 | struct n_Procs_s; |
---|
12 | typedef struct n_Procs_s *coeffs; |
---|
13 | |
---|
14 | //// Initialize r (n_GF) |
---|
15 | BOOLEAN nfInitChar(coeffs r, void*); |
---|
16 | |
---|
17 | /// Show the mininimal polynom.... |
---|
18 | /// NOTE: this is used by char * sleftv::String(void *d, BOOLEAN typed, int dim) (from Singular/subexpr.cc) |
---|
19 | /// TODO: rewrite this UGLYNESS!!! |
---|
20 | void nfShowMipo(const coeffs r); |
---|
21 | |
---|
22 | #endif |
---|
Note: See
TracBrowser
for help on using the repository browser.