root / pobysoC-4.0 / src / pobyso.h @ 133
Historique | Voir | Annoter | Télécharger (9,26 ko)
1 | 26 | storres | /** @file pobyso.h
|
---|---|---|---|
2 | 26 | storres | * Integration of Sollya to C programs
|
3 | 26 | storres | * @author S.T.
|
4 | 26 | storres | * @date 2011-10-11
|
5 | 26 | storres | * Note: pobyso stands for POwered BY SOllya.
|
6 | 26 | storres | * -- -- --
|
7 | 26 | storres | */
|
8 | 26 | storres | /******************************************************************************/
|
9 | 26 | storres | |
10 | 26 | storres | /*
|
11 | 26 | storres | * Add below all the headers needed to get this header work.
|
12 | 26 | storres | */
|
13 | 26 | storres | /* <stdio.h> is needed *before* <mpfr.h> for all MPFR input/output functions
|
14 | 26 | storres | * prototypes be defined. */
|
15 | 127 | storres | #include <string.h> |
16 | 26 | storres | #include <stdio.h> |
17 | 26 | storres | #include <sollya.h> |
18 | 26 | storres | #include <mpfr.h> |
19 | 26 | storres | |
20 | 26 | storres | #ifndef POBYSO_h
|
21 | 26 | storres | |
22 | 128 | storres | /* Typedefs to make code more readable. */
|
23 | 132 | storres | |
24 | 128 | storres | typedef sollya_obj_t pobyso_error_t;
|
25 | 130 | storres | typedef sollya_obj_t pobyso_func_exp_t;
|
26 | 132 | storres | typedef sollya_obj_t pobyso_on_off_t;
|
27 | 128 | storres | typedef sollya_obj_t pobyso_precision_t;
|
28 | 128 | storres | typedef sollya_obj_t pobyso_range_t;
|
29 | 132 | storres | typedef sollya_obj_t pobyso_sollya_verbosity_t;
|
30 | 128 | storres | |
31 | 132 | storres | #define POBYSO_ABSOLUTE (1) |
32 | 132 | storres | #define POBYSO_RELATIVE (2) |
33 | 128 | storres | |
34 | 132 | storres | #define POBYSO_OFF (0) |
35 | 132 | storres | #define POBYSO_ON (1) |
36 | 128 | storres | |
37 | 26 | storres | /* Mimic the default behavior of interactive Sollya. */
|
38 | 26 | storres | #define POBYSO_DEFAULT_POINTS 501 |
39 | 26 | storres | #define POBYSO_INF_NORM_NUM_POINTS (POBYSO_DEFAULT_POINTS)
|
40 | 26 | storres | #define POBYSO_GUESS_DEGREE_BOUND 1024 |
41 | 26 | storres | |
42 | 128 | storres | |
43 | 128 | storres | /* Very thin wrappers around a lot of Sollya functions.
|
44 | 128 | storres | */
|
45 | 128 | storres | static inline pobyso_error_t pobyso_error(void) |
46 | 128 | storres | {return(sollya_lib_error());}
|
47 | 128 | storres | |
48 | 128 | storres | static inline int pobyso_is_error(sollya_obj_t errorCandidate) |
49 | 128 | storres | {return(sollya_lib_obj_is_error(errorCandidate));}
|
50 | 128 | storres | |
51 | 128 | storres | static inline int pobyso_is_function(sollya_obj_t functionCandidate) |
52 | 128 | storres | {return(sollya_lib_obj_is_function(functionCandidate));}
|
53 | 128 | storres | |
54 | 26 | storres | /**
|
55 | 26 | storres | * Print object(s) to stdout.
|
56 | 26 | storres | * A very thin wrapper around the lib_sollya_v_autoprint() function.
|
57 | 26 | storres | * Should be called with NULL as the final argument.
|
58 | 26 | storres | */
|
59 | 26 | storres | void
|
60 | 26 | storres | pobyso_autoprint(sollya_obj_t soObj, ...); |
61 | 26 | storres | |
62 | 26 | storres | /**
|
63 | 26 | storres | * Print object(s) to stdout: the va_list companion function.
|
64 | 26 | storres | * A very thin wrapper around the lib_sollya_v_autoprint() function.
|
65 | 26 | storres | * The last argument in the va_list should be NULL.
|
66 | 26 | storres | */
|
67 | 26 | storres | |
68 | 26 | storres | void
|
69 | 26 | storres | pobyso_autoprint_v(sollya_obj_t soObj, va_list va); |
70 | 26 | storres | |
71 | 133 | storres | /**
|
72 | 133 | storres | * Check if a sollya object is a constant expression.
|
73 | 133 | storres | * @return 1 if true and zero otherwise
|
74 | 133 | storres | */
|
75 | 133 | storres | int
|
76 | 133 | storres | pobyso_is_constant_expression(sollya_obj_t obj_to_text); |
77 | 132 | storres | |
78 | 26 | storres | /**
|
79 | 133 | storres | * Create a Sollya monomial from a Sollya constant,
|
80 | 133 | storres | * the coefficient, and an integer, the exponent
|
81 | 133 | storres | * @return a Sollya functional expression if successes, or a Sollya error
|
82 | 133 | storres | * if fails.
|
83 | 26 | storres | */
|
84 | 133 | storres | sollya_obj_t |
85 | 133 | storres | pobyso_new_monomial(pobyso_func_exp_t coefficient, long degree);
|
86 | 128 | storres | |
87 | 128 | storres | /**
|
88 | 128 | storres | * A wrapper around the Sollya Remez function.
|
89 | 128 | storres | */
|
90 | 128 | storres | /**
|
91 | 128 | storres | * Parse a string to create a Sollya object.
|
92 | 128 | storres | * A very thin wrapper around the sollya_lib_parse_string() function.
|
93 | 128 | storres | * If the final ";" is forgotten in the expression, it is added by the
|
94 | 128 | storres | * function.
|
95 | 133 | storres | * @return a Sollya functional expression if successes, or a Sollya error
|
96 | 133 | storres | * if fails.
|
97 | 128 | storres | */
|
98 | 128 | storres | pobyso_error_t |
99 | 26 | storres | pobyso_parse_string(const char* expression); |
100 | 26 | storres | |
101 | 26 | storres | /**
|
102 | 128 | storres | * A wrapper around the Sollya Remez function with the canonical monomials
|
103 | 128 | storres | * base.
|
104 | 128 | storres | */
|
105 | 128 | storres | |
106 | 130 | storres | pobyso_func_exp_t |
107 | 130 | storres | pobyso_remez_canonical_monomials_base(pobyso_func_exp_t function, |
108 | 128 | storres | long int degree, |
109 | 128 | storres | pobyso_range_t interval, |
110 | 130 | storres | pobyso_func_exp_t weight, |
111 | 128 | storres | double quality,
|
112 | 128 | storres | pobyso_range_t bounds); |
113 | 128 | storres | |
114 | 128 | storres | /**
|
115 | 128 | storres | * A wrapper around the Sollya Remez function with the a sparse monomials
|
116 | 128 | storres | * base.
|
117 | 128 | storres | */
|
118 | 128 | storres | |
119 | 130 | storres | pobyso_func_exp_t |
120 | 130 | storres | pobyso_remez_sparse_monomials_base(pobyso_func_exp_t); |
121 | 128 | storres | |
122 | 128 | storres | /**
|
123 | 128 | storres | * A wrapper around the Sollya Remez function with the canonical monomials
|
124 | 128 | storres | * base.
|
125 | 128 | storres | */
|
126 | 128 | storres | |
127 | 130 | storres | pobyso_func_exp_t |
128 | 130 | storres | pobyso_remez_arbitrary_base(pobyso_func_exp_t); |
129 | 128 | storres | |
130 | 132 | storres | /**
|
131 | 132 | storres | * Set the canonical mode.
|
132 | 132 | storres | */
|
133 | 128 | storres | |
134 | 132 | storres | int
|
135 | 132 | storres | pobyso_set_canonical_on(void);
|
136 | 128 | storres | |
137 | 128 | storres | /**
|
138 | 26 | storres | * Set the verbosity mode off (level 0).
|
139 | 132 | storres | * The current level of verbosity is returned.
|
140 | 26 | storres | */
|
141 | 132 | storres | pobyso_sollya_verbosity_t |
142 | 128 | storres | pobyso_set_verbosity_off(void);
|
143 | 26 | storres | |
144 | 26 | storres | /**
|
145 | 26 | storres | * Set the verbosity level to newVerbosityLevel.
|
146 | 132 | storres | * @param newVerbosityLevel must be a Sollya object corresponding to an
|
147 | 26 | storres | * integer constant.
|
148 | 26 | storres | */
|
149 | 132 | storres | pobyso_sollya_verbosity_t |
150 | 132 | storres | pobyso_set_verbosity_to(pobyso_sollya_verbosity_t newVerbosityLevel); |
151 | 26 | storres | |
152 | 132 | storres | /**
|
153 | 132 | storres | * Set the verbosity level to intVerbosityLevel.
|
154 | 132 | storres | * @param newVerbosityLevel is an positive or null int.
|
155 | 132 | storres | */
|
156 | 132 | storres | pobyso_sollya_verbosity_t |
157 | 132 | storres | pobyso_set_verbosity_to_int(int intVerbosityLevel);
|
158 | 132 | storres | |
159 | 26 | storres | #if 0
|
160 | 26 | storres | /**
|
161 | 26 | storres | * Create the canonical (non sparse) base of monomials for a given degree.
|
162 | 26 | storres | */
|
163 | 26 | storres | chain*
|
164 | 26 | storres | pobyso_create_canonical_monomials_base(const unsigned int degree);
|
165 | 26 | storres | |
166 | 26 | storres | /**
|
167 | 26 | storres | * Create a chain from an array of int.
|
168 | 26 | storres | */
|
169 | 26 | storres | sollya_int_list
|
170 | 26 | storres | pobyso_create_int_list_from_int_Array(int* intArray,
|
171 | 26 | storres | const unsigned int arrayLength);
|
172 | 26 | storres | |
173 | 26 | storres | /**
|
174 | 26 | storres | * Create a chain from an array of int.
|
175 | 26 | storres | */
|
176 | 26 | storres | sollya_int_list_t
|
177 | 26 | storres | pobyso_create_int_list_from_unsigned_int_array(unsigned int* intArray,
|
178 | 26 | storres | const unsigned int arrayLength);
|
179 | 26 | storres | /**
|
180 | 26 | storres | * Differentiation of a function.
|
181 | 26 | storres | * A slim wrapper around the Sollya differentiate function.
|
182 | 26 | storres | * @param functionNode - the Sollya node to differentiate;
|
183 | 26 | storres | * @return a node representing the function differentiated or NULL, if
|
184 | 26 | storres | * something goes wrong.
|
185 | 26 | storres | */
|
186 | 26 | storres | |
187 | 26 | storres | sollya_obj_t
|
188 | 26 | storres | pobyso_diff(sollya_obj_t function);
|
189 | 26 | storres | |
190 | 26 | storres | /**
|
191 | 26 | storres | * A match to the Sollya dirtyinfnorm.
|
192 | 26 | storres | * A slim wrapper around the Sollya function.
|
193 | 26 | storres | * @param infnorm - out parameter to return the result, must be "inited"
|
194 | 26 | storres | * and "cleared" by the caller;
|
195 | 26 | storres | * @param functionNode - the Sollya node to compute the infinite norm of;
|
196 | 26 | storres | * @param lowerBound - the lower bound of the interval;
|
197 | 26 | storres | * @param upperBound - the upper bound of the interval;
|
198 | 26 | storres | * @param precision - the internal precision Sollya must use.
|
199 | 26 | storres | * @return 0 if everything is OK, != 0 if something goes wrong.
|
200 | 26 | storres | */
|
201 | 26 | storres | int
|
202 | 26 | storres | pobyso_dirty_infnorm(mpfr_t infNorm,
|
203 | 26 | storres | node *functionNode,
|
204 | 26 | storres | mpfr_t lowerBound,
|
205 | 26 | storres | mpfr_t upperBound,
|
206 | 26 | storres | mp_prec_t precision);
|
207 | 26 | storres | |
208 | 26 | storres | |
209 | 26 | storres | /**
|
210 | 26 | storres | * Faithful evaluation of an expression.
|
211 | 26 | storres | *
|
212 | 26 | storres | * @param faitufulEvaluation - holds the result, must be "inited" by the
|
213 | 26 | storres | * caller;
|
214 | 26 | storres | */
|
215 | 26 | storres | int
|
216 | 26 | storres | pobyso_evaluate_faithful(mpfr_t faithfulEvaluation,
|
217 | 26 | storres | node *nodeToEvaluate,
|
218 | 26 | storres | mpfr_t argument,
|
219 | 26 | storres | mpfr_prec_t precision);
|
220 | 26 | storres | |
221 | 26 | storres | /**
|
222 | 26 | storres | * Find the zeros of a function on a given interval.
|
223 | 26 | storres | */
|
224 | 26 | storres | chain*
|
225 | 26 | storres | pobyso_find_zeros(node *function,
|
226 | 26 | storres | mpfr_t *lowerBound,
|
227 | 26 | storres | mpfr_t *upperBound);
|
228 | 26 | storres | /**
|
229 | 26 | storres | * Free a chain of node.
|
230 | 26 | storres | * All elements of the chain have to be nodes.
|
231 | 26 | storres | */
|
232 | 26 | storres | void
|
233 | 26 | storres | pobyso_free_chain_of_nodes(chain *theChain);
|
234 | 26 | storres | |
235 | 26 | storres | /**
|
236 | 26 | storres | * Free a range.
|
237 | 26 | storres | * It involves clearing the mpfr_t elements and deallocating the
|
238 | 26 | storres | * pointers.
|
239 | 26 | storres | */
|
240 | 26 | storres | void
|
241 | 26 | storres | pobyso_free_range(rangetype range);
|
242 | 26 | storres | |
243 | 26 | storres | /**
|
244 | 26 | storres | * Computes a good polynomial approximation with fixed-point or floating-point
|
245 | 26 | storres | * coefficients.
|
246 | 26 | storres | */
|
247 | 26 | storres | node*
|
248 | 26 | storres | pobyso_fp_minimax_canonical_monomials_base(node *function,
|
249 | 26 | storres | int degree,
|
250 | 26 | storres | chain *formats,
|
251 | 26 | storres | chain *points,
|
252 | 26 | storres | mpfr_t lowerBound,
|
253 | 26 | storres | mpfr_t upperBound,
|
254 | 26 | storres | int fpFixedArg,
|
255 | 26 | storres | int absRel,
|
256 | 26 | storres | node *constPart,
|
257 | 26 | storres | node *minimax);
|
258 | 26 | storres | /**
|
259 | 26 | storres | * Parses a string to build the node representing the function.
|
260 | 26 | storres | * In fact, does nothing for the moment: the string must be a correct function
|
261 | 26 | storres | * definition. No error correction takes place here.
|
262 | 26 | storres | */
|
263 | 26 | storres | node*
|
264 | 26 | storres | pobyso_parse_function(char *functionString,
|
265 | 26 | storres | char *freeVariableNameString);
|
266 | 26 | storres | |
267 | 26 | storres | /** Compute a polynomial approximation in the canonical monomials basis for
|
268 | 26 | storres | * a function, for a given precision. The returned polynomial has the minimal
|
269 | 26 | storres | * degree to achieve the required precision.
|
270 | 26 | storres | */
|
271 | 26 | storres | node*
|
272 | 26 | storres | pobyso_remez_approx_canonical_monomials_base_for_error(node *functionNode,
|
273 | 26 | storres | unsigned int mode,
|
274 | 26 | storres | mpfr_t lowerBound,
|
275 | 26 | storres | mpfr_t upperBound,
|
276 | 26 | storres | mpfr_t eps);
|
277 | 26 | storres | |
278 | 26 | storres | /**
|
279 | 26 | storres | * Computes a the remez approximation of a function.
|
280 | 26 | storres | * @param function - the node holding the function to approximate;
|
281 | 26 | storres | * @param weight - the node holding the weight function, can be NULL. In
|
282 | 26 | storres | * this case a default weight of "1" will be provided and
|
283 | 26 | storres | * the approximation is related is with respect to the
|
284 | 26 | storres | * absolute error.
|
285 | 26 | storres | * @param degree - the degree of the approximation polynomial;
|
286 | 26 | storres | * @param lowerBound - the lower bound of the approximation interval;
|
287 | 26 | storres | * @param upperBound - the upper bound of the approximation interval;
|
288 | 26 | storres | * @param quality - quality = (eps - eps*) / eps*; the search stop when the required
|
289 | 26 | storres | * quality is achieved.
|
290 | 26 | storres | *
|
291 | 26 | storres | * @return a node holding the approximation polynomial in Horner form.
|
292 | 26 | storres | */
|
293 | 26 | storres | node*
|
294 | 26 | storres | pobyso_remez_canonical_monomials_base(node *function,
|
295 | 26 | storres | node *weight,
|
296 | 26 | storres | unsigned int degree,
|
297 | 26 | storres | mpfr_t lowerBound,
|
298 | 26 | storres | mpfr_t upperBound,
|
299 | 26 | storres | mpfr_t quality);
|
300 | 26 | storres | #endif
|
301 | 26 | storres | #define POBYSO_h
|
302 | 26 | storres | |
303 | 26 | storres | #endif
|