source: git/libpolys/coeffs/ffields.h @ 7fee876

spielwiese
Last change on this file since 7fee876 was 7fee876, checked in by Oleksandr Motsak <motsak@…>, 12 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
RevLine 
[35aab3]1#ifndef FFIELDS_H
2#define FFIELDS_H
3/****************************************
4*  Computer Algebra System SINGULAR     *
5****************************************/
[341696]6/* $Id$ */
[35aab3]7/*
8* ABSTRACT: finite fields with a none-prime number of elements (via tables)
9*/
[7fee876]10#include <misc/auxiliary.h>
[35aab3]11
[7fee876]12struct n_Procs_s;
13typedef struct  n_Procs_s  *coeffs;
[35aab3]14
[7fee876]15//// Initialize r (n_GF)
16BOOLEAN nfInitChar(coeffs r, void*);
[5e3046]17
[7fee876]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!!!
[8c9912]21void    nfShowMipo(const coeffs r);
[7fee876]22
[35aab3]23#endif
Note: See TracBrowser for help on using the repository browser.