1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
|
#ifndef DOUBLE_H
#define DOUBLE_H
#include <stdbool.h>
double int_to_valuetype(int);
double int_to_exptype(double);
double infinity_to_exptype();
bool exptype_is_infinite(double);
bool is_greater_certainly(double,double);
bool is_greater_possibly(double,double);
double maximum(double,double);
double sum(double,double);
double difference(double,double);
double product(double,double);
double ratio(double,double);
double absolute(double);
double power(double,double);
double valuetype_to_double(double);
int exptype_to_string(char*,double);
int exptype_to_latex(char*,double);
int valuetype_to_string(char*,double);
int valuetype_to_latex(char*,double);
int root_to_string(char*,double,double);
int root_to_latex(char*,double,double);
#endif
|