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

spielwiese
Last change on this file since c087b3 was c087b3, checked in by Hans Schoenemann <hannes@…>, 8 years ago
dd comments to (usuallay) unused procedures in .h files
  • Property mode set to 100644
File size: 676 bytes
Line 
1#ifndef RMODULON_H
2#define RMODULON_H
3/****************************************
4*  Computer Algebra System SINGULAR     *
5****************************************/
6/*
7* ABSTRACT: numbers modulo n
8*/
9#include <misc/auxiliary.h>
10
11struct n_Procs_s; typedef struct  n_Procs_s  *coeffs;
12struct snumber; typedef struct snumber *   number;
13
14#include <coeffs/rintegers.h>
15
16#ifdef HAVE_RINGS
17
18typedef struct { mpz_ptr base;  unsigned long exp; } ZnmInfo;
19
20BOOLEAN nrnInitChar    (coeffs r, void*);
21number nrnMapGMP(number from, const coeffs /*src*/, const coeffs dst);/*for SAGE*/
22nMapFunc nrnSetMap(const coeffs src, const coeffs dst);/* for SAGE, better: n_setMap*/
23
24
25#endif
26
27#endif
Note: See TracBrowser for help on using the repository browser.