source: git/libpolys/coeffs/gnumpfl.h @ 2206753

spielwiese
Last change on this file since 2206753 was 2206753, checked in by Oleksandr Motsak <motsak@…>, 9 years ago
Hiding all the implementation details (or adding the counting) mostly by moving internal declarations from private headers into corresponding source files rm: Remove internal includes (hiding privates) + cleanup chg: cleanup internal headers fix the usage of internal implementation functions of coeffs from outside of libpolys/coeffs (or libpolys/polys/ext_fiels) fix header includes for coeffs/AE*.{h,cc} add: FIXME&TODO mark reused privates also starting to fix bigint handling
  • Property mode set to 100644
File size: 526 bytes
Line 
1#ifndef GMPFLOAT_H
2#define GMPFLOAT_H
3/****************************************
4*  Computer Algebra System SINGULAR     *
5****************************************/
6/*
7* ABSTRACT: computations with GMP floating-point numbers
8*/
9
10#include <misc/auxiliary.h>
11
12struct n_Procs_s; typedef struct  n_Procs_s  *coeffs;
13struct snumber; typedef struct snumber *   number;
14
15/// Initialize r
16BOOLEAN ngfInitChar(coeffs r, void *);
17
18// will be reused by gnumpc.cc
19const char *   ngfRead (const char *s, number *a, const coeffs r);
20
21#endif
Note: See TracBrowser for help on using the repository browser.