spielwiese
Last change
on this file since 4e654a2 was
7fee876,
checked in by Oleksandr Motsak <motsak@…>, 11 years ago
|
moved prarameter-handling to coeffs from rings.* and related fixes
chg: removed complex_parameter, m_nfParameter
add: n_NumberOfParameters, n_ParameterNames, n_Param(coeffs)
fix: par(1) (n_Param) for n_GF & n_long_C
fix/chg: n_long_C is an Extension as well (rIsExtension)
fix: n_long_C ngcCoeffWrite: additional space needed for compatibility with legacy Singular
fix: complexToStr over non-C coeffs!
fix: rRenameVars renames _new_ VARIABLES instead of _old_ parameters!
fix: coeff construction was broken in walk.cc
add/fix: nfKillChar, ngcKillChar
chg: cleanup of headers & tests
chg: parameter output during "make check"
|
-
Property mode set to
100644
|
File size:
625 bytes
|
Line | |
---|
1 | #ifndef FFIELDS_H |
---|
2 | #define FFIELDS_H |
---|
3 | /**************************************** |
---|
4 | * Computer Algebra System SINGULAR * |
---|
5 | ****************************************/ |
---|
6 | /* $Id$ */ |
---|
7 | /* |
---|
8 | * ABSTRACT: finite fields with a none-prime number of elements (via tables) |
---|
9 | */ |
---|
10 | #include <misc/auxiliary.h> |
---|
11 | |
---|
12 | struct n_Procs_s; |
---|
13 | typedef struct n_Procs_s *coeffs; |
---|
14 | |
---|
15 | //// Initialize r (n_GF) |
---|
16 | BOOLEAN nfInitChar(coeffs r, void*); |
---|
17 | |
---|
18 | /// Show the mininimal polynom.... |
---|
19 | /// NOTE: this is used by char * sleftv::String(void *d, BOOLEAN typed, int dim) (from Singular/subexpr.cc) |
---|
20 | /// TODO: rewrite this UGLYNESS!!! |
---|
21 | void nfShowMipo(const coeffs r); |
---|
22 | |
---|
23 | #endif |
---|
Note: See
TracBrowser
for help on using the repository browser.