root / pobysoC-4.0 / src / pobyso.h @ 139
Historique | Voir | Annoter | Télécharger (10,83 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 | 137 | storres | * @note pobyso stands for POwered BY SOllya.
|
6 | 137 | storres | * @todo -- -- --
|
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 | 128 | storres | |
30 | 132 | storres | #define POBYSO_ABSOLUTE (1) |
31 | 132 | storres | #define POBYSO_RELATIVE (2) |
32 | 128 | storres | |
33 | 139 | storres | #define POBYSO_UNFAITHFULL (129) |
34 | 139 | storres | #define POBYSO_NAN (130) |
35 | 139 | storres | |
36 | 132 | storres | #define POBYSO_OFF (0) |
37 | 132 | storres | #define POBYSO_ON (1) |
38 | 128 | storres | |
39 | 26 | storres | /* Mimic the default behavior of interactive Sollya. */
|
40 | 26 | storres | #define POBYSO_DEFAULT_POINTS 501 |
41 | 26 | storres | #define POBYSO_INF_NORM_NUM_POINTS (POBYSO_DEFAULT_POINTS)
|
42 | 26 | storres | #define POBYSO_GUESS_DEGREE_BOUND 1024 |
43 | 26 | storres | |
44 | 128 | storres | |
45 | 128 | storres | /* Very thin wrappers around a lot of Sollya functions.
|
46 | 128 | storres | */
|
47 | 128 | storres | static inline pobyso_error_t pobyso_error(void) |
48 | 128 | storres | {return(sollya_lib_error());}
|
49 | 128 | storres | |
50 | 128 | storres | static inline int pobyso_is_error(sollya_obj_t errorCandidate) |
51 | 128 | storres | {return(sollya_lib_obj_is_error(errorCandidate));}
|
52 | 128 | storres | |
53 | 128 | storres | static inline int pobyso_is_function(sollya_obj_t functionCandidate) |
54 | 128 | storres | {return(sollya_lib_obj_is_function(functionCandidate));}
|
55 | 128 | storres | |
56 | 26 | storres | /**
|
57 | 136 | storres | * Print an object to stdout.
|
58 | 134 | storres | * A very thin wrapper around the lib_sollya_autoprint() function.
|
59 | 26 | storres | */
|
60 | 26 | storres | void
|
61 | 137 | storres | pobyso_autoprint(sollya_obj_t objSo); |
62 | 26 | storres | |
63 | 26 | storres | /**
|
64 | 26 | storres | * Print object(s) to stdout: the va_list companion function.
|
65 | 26 | storres | * A very thin wrapper around the lib_sollya_v_autoprint() function.
|
66 | 26 | storres | * The last argument in the va_list should be NULL.
|
67 | 26 | storres | */
|
68 | 26 | storres | |
69 | 26 | storres | void
|
70 | 137 | storres | pobyso_autoprint_v(va_list va); |
71 | 26 | storres | |
72 | 133 | storres | /**
|
73 | 134 | storres | * Get the current verbosity level.
|
74 | 134 | storres | * @return an integer at the current verbosity level.
|
75 | 134 | storres | */
|
76 | 134 | storres | int
|
77 | 134 | storres | pobyso_get_verbosity(); |
78 | 134 | storres | |
79 | 134 | storres | /**
|
80 | 139 | storres | * Evaluate an expression for a constant.
|
81 | 139 | storres | *
|
82 | 139 | storres | * The result of the evaluation must be "inited" by the caller.
|
83 | 139 | storres | * Its contents is modified only if the evaluation yields some usefull
|
84 | 139 | storres | * result.
|
85 | 139 | storres | *@param functionSo : the function to evaluate;
|
86 | 139 | storres | *@param argumentMp : the argument used for the evaluation;
|
87 | 139 | storres | *@param evalutionMp: the result of the evalution.
|
88 | 139 | storres | *@retun 0 if 0K, 1 in case of a "generic" error, POBYSO_UNFAITHFULL if the
|
89 | 139 | storres | * result is the mean of the two bound of the range encompassing it
|
90 | 139 | storres | * and POBYSO_NAN if the result of the evaluation is not a number.
|
91 | 139 | storres | */
|
92 | 139 | storres | int
|
93 | 139 | storres | pobyso_evaluate_constant(pobyso_func_exp_t functionSo, |
94 | 139 | storres | mpfr_t argumentMp, |
95 | 139 | storres | mpfr_t evaluationMp); |
96 | 139 | storres | /**
|
97 | 133 | storres | * Check if a sollya object is a constant expression.
|
98 | 133 | storres | * @return 1 if true and zero otherwise
|
99 | 133 | storres | */
|
100 | 133 | storres | int
|
101 | 133 | storres | pobyso_is_constant_expression(sollya_obj_t obj_to_text); |
102 | 132 | storres | |
103 | 26 | storres | /**
|
104 | 138 | storres | * Check if an expression is a monomial (the free variable to an integer
|
105 | 138 | storres | * positive or null power.
|
106 | 137 | storres | * @param exprSo: a Sollya functional expression object;
|
107 | 137 | storres | * @return 1 if exprSo is a monomial (as defined above), 0 otherwise.
|
108 | 137 | storres | */
|
109 | 137 | storres | int pobyso_is_monomial(pobyso_func_exp_t exprSo);
|
110 | 137 | storres | |
111 | 137 | storres | /**
|
112 | 138 | storres | * Check if an expression is a polynomial term (monome)
|
113 | 138 | storres | * (a constant * the free variable to an integer positive or null power or
|
114 | 138 | storres | * the free variable to an integer positive or null power * a constant).
|
115 | 138 | storres | * @param exprSo: a Sollya functional expression object;
|
116 | 138 | storres | * @return 1 if exprSo is a polynomial term (as defined above), 0 otherwise.
|
117 | 138 | storres | */
|
118 | 138 | storres | int pobyso_is_polynomial_term(pobyso_func_exp_t exprSo);
|
119 | 138 | storres | |
120 | 138 | storres | /**
|
121 | 137 | storres | * Check if an expression is an integer.
|
122 | 137 | storres | */
|
123 | 137 | storres | int
|
124 | 137 | storres | pobyso_is_int(pobyso_func_exp_t exprSo); |
125 | 137 | storres | |
126 | 137 | storres | /**
|
127 | 133 | storres | * Create a Sollya monomial from a Sollya constant,
|
128 | 134 | storres | * the coefficient, and an integer, the exponent.
|
129 | 134 | storres | * @param coefficient must be a non NULL constant expression;
|
130 | 134 | storres | * @param degree must be a non negative integer;
|
131 | 133 | storres | * @return a Sollya functional expression if successes, or a Sollya error
|
132 | 133 | storres | * if fails.
|
133 | 26 | storres | */
|
134 | 134 | storres | pobyso_func_exp_t |
135 | 133 | storres | pobyso_new_monomial(pobyso_func_exp_t coefficient, long degree);
|
136 | 128 | storres | |
137 | 128 | storres | /**
|
138 | 128 | storres | * A wrapper around the Sollya Remez function.
|
139 | 128 | storres | */
|
140 | 128 | storres | /**
|
141 | 128 | storres | * Parse a string to create a Sollya object.
|
142 | 128 | storres | * A very thin wrapper around the sollya_lib_parse_string() function.
|
143 | 128 | storres | * If the final ";" is forgotten in the expression, it is added by the
|
144 | 128 | storres | * function.
|
145 | 133 | storres | * @return a Sollya functional expression if successes, or a Sollya error
|
146 | 133 | storres | * if fails.
|
147 | 128 | storres | */
|
148 | 134 | storres | pobyso_func_exp_t |
149 | 26 | storres | pobyso_parse_string(const char* expression); |
150 | 26 | storres | |
151 | 26 | storres | /**
|
152 | 128 | storres | * A wrapper around the Sollya Remez function with the canonical monomials
|
153 | 128 | storres | * base.
|
154 | 128 | storres | */
|
155 | 128 | storres | |
156 | 130 | storres | pobyso_func_exp_t |
157 | 130 | storres | pobyso_remez_canonical_monomials_base(pobyso_func_exp_t function, |
158 | 128 | storres | long int degree, |
159 | 128 | storres | pobyso_range_t interval, |
160 | 130 | storres | pobyso_func_exp_t weight, |
161 | 128 | storres | double quality,
|
162 | 128 | storres | pobyso_range_t bounds); |
163 | 128 | storres | |
164 | 128 | storres | /**
|
165 | 128 | storres | * A wrapper around the Sollya Remez function with the a sparse monomials
|
166 | 128 | storres | * base.
|
167 | 128 | storres | */
|
168 | 128 | storres | |
169 | 130 | storres | pobyso_func_exp_t |
170 | 130 | storres | pobyso_remez_sparse_monomials_base(pobyso_func_exp_t); |
171 | 128 | storres | |
172 | 128 | storres | /**
|
173 | 128 | storres | * A wrapper around the Sollya Remez function with the canonical monomials
|
174 | 128 | storres | * base.
|
175 | 128 | storres | */
|
176 | 128 | storres | |
177 | 130 | storres | pobyso_func_exp_t |
178 | 130 | storres | pobyso_remez_arbitrary_base(pobyso_func_exp_t); |
179 | 128 | storres | |
180 | 132 | storres | /**
|
181 | 132 | storres | * Set the canonical mode.
|
182 | 132 | storres | */
|
183 | 128 | storres | |
184 | 132 | storres | int
|
185 | 132 | storres | pobyso_set_canonical_on(void);
|
186 | 128 | storres | |
187 | 128 | storres | /**
|
188 | 26 | storres | * Set the verbosity mode off (level 0).
|
189 | 132 | storres | * The current level of verbosity is returned.
|
190 | 26 | storres | */
|
191 | 134 | storres | int
|
192 | 128 | storres | pobyso_set_verbosity_off(void);
|
193 | 26 | storres | |
194 | 26 | storres | /**
|
195 | 26 | storres | * Set the verbosity level to newVerbosityLevel.
|
196 | 132 | storres | * @param newVerbosityLevel must be a Sollya object corresponding to an
|
197 | 26 | storres | * integer constant.
|
198 | 26 | storres | */
|
199 | 134 | storres | int
|
200 | 134 | storres | pobyso_set_verbosity_to(int newVerbosityLevel);
|
201 | 26 | storres | |
202 | 132 | storres | /**
|
203 | 134 | storres | * Wrapper around the sollya_lib_subpoly Sollya function.
|
204 | 134 | storres | */
|
205 | 132 | storres | |
206 | 134 | storres | pobyso_func_exp_t |
207 | 136 | storres | pobyso_subpoly(pobyso_func_exp_t polynomial, long expsNum, long* expsList); |
208 | 134 | storres | |
209 | 26 | storres | #if 0
|
210 | 26 | storres | /**
|
211 | 26 | storres | * Create the canonical (non sparse) base of monomials for a given degree.
|
212 | 26 | storres | */
|
213 | 26 | storres | chain*
|
214 | 26 | storres | pobyso_create_canonical_monomials_base(const unsigned int degree);
|
215 | 26 | storres | |
216 | 26 | storres | /**
|
217 | 26 | storres | * Create a chain from an array of int.
|
218 | 26 | storres | */
|
219 | 26 | storres | sollya_int_list
|
220 | 26 | storres | pobyso_create_int_list_from_int_Array(int* intArray,
|
221 | 26 | storres | const unsigned int arrayLength);
|
222 | 26 | storres | |
223 | 26 | storres | /**
|
224 | 26 | storres | * Create a chain from an array of int.
|
225 | 26 | storres | */
|
226 | 26 | storres | sollya_int_list_t
|
227 | 26 | storres | pobyso_create_int_list_from_unsigned_int_array(unsigned int* intArray,
|
228 | 26 | storres | const unsigned int arrayLength);
|
229 | 26 | storres | /**
|
230 | 26 | storres | * Differentiation of a function.
|
231 | 26 | storres | * A slim wrapper around the Sollya differentiate function.
|
232 | 26 | storres | * @param functionNode - the Sollya node to differentiate;
|
233 | 26 | storres | * @return a node representing the function differentiated or NULL, if
|
234 | 26 | storres | * something goes wrong.
|
235 | 26 | storres | */
|
236 | 26 | storres | |
237 | 26 | storres | sollya_obj_t
|
238 | 26 | storres | pobyso_diff(sollya_obj_t function);
|
239 | 26 | storres | |
240 | 26 | storres | /**
|
241 | 26 | storres | * A match to the Sollya dirtyinfnorm.
|
242 | 26 | storres | * A slim wrapper around the Sollya function.
|
243 | 26 | storres | * @param infnorm - out parameter to return the result, must be "inited"
|
244 | 26 | storres | * and "cleared" by the caller;
|
245 | 26 | storres | * @param functionNode - the Sollya node to compute the infinite norm of;
|
246 | 26 | storres | * @param lowerBound - the lower bound of the interval;
|
247 | 26 | storres | * @param upperBound - the upper bound of the interval;
|
248 | 26 | storres | * @param precision - the internal precision Sollya must use.
|
249 | 26 | storres | * @return 0 if everything is OK, != 0 if something goes wrong.
|
250 | 26 | storres | */
|
251 | 26 | storres | int
|
252 | 26 | storres | pobyso_dirty_infnorm(mpfr_t infNorm,
|
253 | 26 | storres | node *functionNode,
|
254 | 26 | storres | mpfr_t lowerBound,
|
255 | 26 | storres | mpfr_t upperBound,
|
256 | 26 | storres | mp_prec_t precision);
|
257 | 26 | storres | |
258 | 26 | storres | |
259 | 26 | storres | /**
|
260 | 26 | storres | * Faithful evaluation of an expression.
|
261 | 26 | storres | *
|
262 | 26 | storres | * @param faitufulEvaluation - holds the result, must be "inited" by the
|
263 | 26 | storres | * caller;
|
264 | 26 | storres | */
|
265 | 26 | storres | int
|
266 | 26 | storres | pobyso_evaluate_faithful(mpfr_t faithfulEvaluation,
|
267 | 26 | storres | node *nodeToEvaluate,
|
268 | 26 | storres | mpfr_t argument,
|
269 | 26 | storres | mpfr_prec_t precision);
|
270 | 26 | storres | |
271 | 26 | storres | /**
|
272 | 26 | storres | * Find the zeros of a function on a given interval.
|
273 | 26 | storres | */
|
274 | 26 | storres | chain*
|
275 | 26 | storres | pobyso_find_zeros(node *function,
|
276 | 26 | storres | mpfr_t *lowerBound,
|
277 | 26 | storres | mpfr_t *upperBound);
|
278 | 26 | storres | /**
|
279 | 26 | storres | * Free a chain of node.
|
280 | 26 | storres | * All elements of the chain have to be nodes.
|
281 | 26 | storres | */
|
282 | 26 | storres | void
|
283 | 26 | storres | pobyso_free_chain_of_nodes(chain *theChain);
|
284 | 26 | storres | |
285 | 26 | storres | /**
|
286 | 26 | storres | * Free a range.
|
287 | 26 | storres | * It involves clearing the mpfr_t elements and deallocating the
|
288 | 26 | storres | * pointers.
|
289 | 26 | storres | */
|
290 | 26 | storres | void
|
291 | 26 | storres | pobyso_free_range(rangetype range);
|
292 | 26 | storres | |
293 | 26 | storres | /**
|
294 | 26 | storres | * Computes a good polynomial approximation with fixed-point or floating-point
|
295 | 26 | storres | * coefficients.
|
296 | 26 | storres | */
|
297 | 26 | storres | node*
|
298 | 26 | storres | pobyso_fp_minimax_canonical_monomials_base(node *function,
|
299 | 26 | storres | int degree,
|
300 | 26 | storres | chain *formats,
|
301 | 26 | storres | chain *points,
|
302 | 26 | storres | mpfr_t lowerBound,
|
303 | 26 | storres | mpfr_t upperBound,
|
304 | 26 | storres | int fpFixedArg,
|
305 | 26 | storres | int absRel,
|
306 | 26 | storres | node *constPart,
|
307 | 26 | storres | node *minimax);
|
308 | 26 | storres | /**
|
309 | 26 | storres | * Parses a string to build the node representing the function.
|
310 | 26 | storres | * In fact, does nothing for the moment: the string must be a correct function
|
311 | 26 | storres | * definition. No error correction takes place here.
|
312 | 26 | storres | */
|
313 | 26 | storres | node*
|
314 | 26 | storres | pobyso_parse_function(char *functionString,
|
315 | 26 | storres | char *freeVariableNameString);
|
316 | 26 | storres | |
317 | 26 | storres | /** Compute a polynomial approximation in the canonical monomials basis for
|
318 | 26 | storres | * a function, for a given precision. The returned polynomial has the minimal
|
319 | 26 | storres | * degree to achieve the required precision.
|
320 | 26 | storres | */
|
321 | 26 | storres | node*
|
322 | 26 | storres | pobyso_remez_approx_canonical_monomials_base_for_error(node *functionNode,
|
323 | 26 | storres | unsigned int mode,
|
324 | 26 | storres | mpfr_t lowerBound,
|
325 | 26 | storres | mpfr_t upperBound,
|
326 | 26 | storres | mpfr_t eps);
|
327 | 26 | storres | |
328 | 26 | storres | /**
|
329 | 26 | storres | * Computes a the remez approximation of a function.
|
330 | 26 | storres | * @param function - the node holding the function to approximate;
|
331 | 26 | storres | * @param weight - the node holding the weight function, can be NULL. In
|
332 | 26 | storres | * this case a default weight of "1" will be provided and
|
333 | 26 | storres | * the approximation is related is with respect to the
|
334 | 26 | storres | * absolute error.
|
335 | 26 | storres | * @param degree - the degree of the approximation polynomial;
|
336 | 26 | storres | * @param lowerBound - the lower bound of the approximation interval;
|
337 | 26 | storres | * @param upperBound - the upper bound of the approximation interval;
|
338 | 26 | storres | * @param quality - quality = (eps - eps*) / eps*; the search stop when the required
|
339 | 26 | storres | * quality is achieved.
|
340 | 26 | storres | *
|
341 | 26 | storres | * @return a node holding the approximation polynomial in Horner form.
|
342 | 26 | storres | */
|
343 | 26 | storres | node*
|
344 | 26 | storres | pobyso_remez_canonical_monomials_base(node *function,
|
345 | 26 | storres | node *weight,
|
346 | 26 | storres | unsigned int degree,
|
347 | 26 | storres | mpfr_t lowerBound,
|
348 | 26 | storres | mpfr_t upperBound,
|
349 | 26 | storres | mpfr_t quality);
|
350 | 26 | storres | #endif
|
351 | 26 | storres | #define POBYSO_h
|
352 | 26 | storres | |
353 | 26 | storres | #endif
|