source: git/libpolys/coeffs/shortfl.h @ f5e732

spielwiese
Last change on this file since f5e732 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: 506 bytes
Line 
1#ifndef SHORTFL_H
2#define SHORTFL_H
3/****************************************
4*  Computer Algebra System SINGULAR     *
5****************************************/
6/*
7* ABSTRACT
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/// Initialize r
15BOOLEAN nrInitChar(coeffs r, void*);
16
17// will be reused by gnumpc.cc and longrat.cc
18/// Converts a n_R number into a float. Needed by Maps
19float   nrFloat(number n);
20
21#endif
22
Note: See TracBrowser for help on using the repository browser.