source: git/libpolys/coeffs/shortfl.h @ 18a3df

spielwiese
Last change on this file since 18a3df was db143c, checked in by Hans Schoenemann <hannes@…>, 5 years ago
integrate xalloc into omalloc (./configure --disable-omalloc)
  • Property mode set to 100644
File size: 632 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#include "omalloc/omalloc.h"
11
12#if SIZEOF_DOUBLE == SIZEOF_LONG
13#define SI_FLOAT double
14#else
15#define SI_FLOAT float
16#endif
17
18
19struct n_Procs_s; typedef struct  n_Procs_s  *coeffs;
20struct snumber; typedef struct snumber *   number;
21
22/// Initialize r
23BOOLEAN nrInitChar(coeffs r, void*);
24
25// will be reused by gnumpc.cc and longrat.cc
26/// Converts a n_R number into a float. Needed by Maps
27SI_FLOAT  nrFloat(number n);
28
29#endif
30
Note: See TracBrowser for help on using the repository browser.