source: git/libpolys/coeffs/rmodulo2m.h @ 0ea8d8

spielwiese
Last change on this file since 0ea8d8 was 0ea8d8, checked in by Jakob Kroeker <kroeker@…>, 8 years ago
add declarations in headers
  • Property mode set to 100644
File size: 550 bytes
Line 
1#ifndef RMODULO2M_H
2#define RMODULO2M_H
3/****************************************
4*  Computer Algebra System SINGULAR     *
5****************************************/
6/*
7* ABSTRACT: numbers modulo 2^m such that 2^m - 1
8*           fits in an unsigned long
9*/
10
11#include <misc/auxiliary.h>
12
13struct n_Procs_s; typedef struct  n_Procs_s  *coeffs;
14struct snumber; typedef struct snumber *   number;
15
16#ifdef HAVE_RINGS
17
18BOOLEAN nr2mInitChar    (coeffs r, void*);
19number  nr2mMapZp       (number from, const coeffs /*src*/, const coeffs dst);
20
21#endif
22#endif
Note: See TracBrowser for help on using the repository browser.