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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
|
2011-05-25 Allan CORNET
* Visual Studio 2010 C++ Pro/Express support
* x64 target added in VS solution
2007-09-07 Bruno JOFRET <bruno.jofret@inria.fr>
* src/auxiliaryFunctions/includes/rand.h :
Modification of funtions prototypes.
Array generation must be in a given array.
2007-08-30 Bruno JOFRET <bruno.jofret@inria.fr>
* src/auxiliaryFunctions/pythag :
Add Pythag mangement for complex type.
2007-07-11 Bruno JOFRET <bruno.jofret@inria.fr>
* src/*/Makefile.* :
Update Autotools version.
* src/configure :
Update Autotools version.
2007-07-11 Bruno JOFRET <bruno.jofret@inria.fr>
* src/type/doubleComplex.c :
Begin complex operations. Must be improved/tested.
2007-06-XX Bruno JOFRET <bruno.jofret@inria.fr>
* src/elementaryFunctions/acos :
Finalise Prototyping, add dummy code with FIXME.
* src/elementaryFunctions/acosh :
Finalise Prototyping, add dummy code with FIXME.
* src/elementaryFunctions/asin :
Finalise Prototyping, add dummy code with FIXME.
* src/elementaryFunctions/asinh :
Finalise Prototyping, add dummy code with FIXME.
* src/elementaryFunctions/atan :
Finalise Prototyping, add dummy code with FIXME.
* src/elementaryFunctions/atanh :
Finalise Prototyping, add dummy code with FIXME.
* src/elementaryFunctions/cos :
Finalise Prototyping, add dummy code with FIXME.
* src/elementaryFunctions/cosh :
Finalise Prototyping, add dummy code with FIXME.
* src/elementaryFunctions/exp :
Finalise Prototyping, add dummy code with FIXME.
* src/elementaryFunctions/exp10 :
Finalise Prototyping, add dummy code with FIXME.
* src/elementaryFunctions/log :
Finalise Prototyping, add dummy code with FIXME.
* src/elementaryFunctions/log10 :
Finalise Prototyping, add dummy code with FIXME.
* src/elementaryFunctions/sin :
Finalise Prototyping, add dummy code with FIXME.
* src/elementaryFunctions/sinh :
Finalise Prototyping, add dummy code with FIXME.
* src/elementaryFunctions/sqrt :
Finalise Prototyping, add dummy code with FIXME.
* src/elementaryFunctions/tan :
Finalise Prototyping, add dummy code with FIXME.
* src/elementaryFunctions/tanh :
Finalise Prototyping, add dummy code with FIXME.
2007-05-07 Bruno JOFRET <bruno.jofret@inria.fr>
* src/AuxiliaryFunctions/isnan :
New Nan detection function. Must be improved !
2007-04-27 Bruno JOFRET <bruno.jofret@inria.fr>
* src/AuxiliaryFunctions/isempty :
[RELEASE] Ending IsEmpty implementation AND tests.
2007-04-26 Bruno JOFRET <bruno.jofret@inria.fr>
* src/AuxiliaryFunctions/find :
[RELEASE] Ending Find implementation AND tests.
2007-04-25 Bruno JOFRET <bruno.jofret@inria.fr>
* src/AuxiliaryFunctions/abs :
[RELEASE] Ending Absolute Value implementation AND tests.
2007-04-24 Bruno JOFRET <bruno.jofret@inria.fr>
* src/AuxiliaryFunctions/find :
New find implementation.
2007-04-23 Bruno JOFRET <bruno.jofret@inria.fr>
* src/AuxiliaryFunctions/abs :
New Absolute Value implementation.
* src/AuxiliaryFunctions/pythag :
New Pythagore function : sqrt(a^2 + b^2)
2007-04-20 Bruno JOFRET <bruno.jofret@inria.fr>
* src/ElementaryFunctions/sinh :
[RELEASE] Ending Hyperbolic Sine implementation AND tests.
2007-04-19 Bruno JOFRET <bruno.jofret@inria.fr>
* src/ElementaryFunctions/cosh :
[RELEASE] Ending Hyperbolic Cosine implementation AND tests.
2007-04-18 Bruno JOFRET <bruno.jofret@inria.fr>
* src/ElementaryFunctions/sin :
[RELEASE] Ending Sine implementation AND tests.
2007-04-17 Bruno JOFRET <bruno.jofret@inria.fr>
* src/ElementaryFunctions/cos :
[RELEASE] Ending Cosine implementation AND tests.
2007-04-16 Bruno JOFRET <bruno.jofret@inria.fr>
* src/test :
Removing tests to add it under Autotools management.
2007-03-25 Bruno JOFRET <bruno.jofret@inria.fr>
* src/elementaryFunctions/*/Makefile.am :
Migration to Autotools.
* src/elementaryFunctions/*/Makefile.in :
Migration to Autotools.
2007-03-23 Bruno JOFRET <bruno.jofret@inria.fr>
* src/elementaryFunctions/sqrt/* :
Adding Square Root module.
* src/elementaryfunctions/log/* :
Adding Logarithm module.
2007-03-22 Bruno JOFRET <bruno.jofret@inria.fr>
* src/type/testFloatComplex.c :
Best fit C99.
* src/type/testFloatComplex.h :
Best fit C99.
* src/type/testDoubleComplex.c :
Best fit C99.
* src/type/testDoubleComplex.h :
Best fit C99.
* src/configure.ac :
Enable STD C99 compilation process.
2007-03-20 Bruno JOFRET <bruno.jofret@inria.fr>
* src/type/Makefile :
Removed : delegate to AutoTools.
* src/type/Makefile.am :
Automake file.
* src/type/Makefile.in :
Automake generated file : ./configure needed.
* src/type/testFloatComplex.c :
Test Float Complex generation :
Assert + AutoCheck through AutoTools.
* src/type/testDoubleComplex.c :
Test Double Complex generation :
Assert + AutoCheck through AutoTools.
2007-03-19 Bruno JOFRET <bruno.jofret@inria.fr>
* src/test/Makefile :
Link with my Complex Library.
* src/test/testCos.c :
Finishing all kind of tests.
* src/elementaryFunctions/*/*a.c :
Remove StrideX and StrideY useless parameters.
* src/elementaryFunctions/includes/*.h :
Update headers with right parameters.
Add Dioxygen style documentation.
2007-02-23 Bruno JOFRET <bruno.jofret@inria.fr>
* src/test/*.c :
Better dependancies with includes.
* src/test/Makedile :
Changing includes / headers / link.
* src/misc :
_MOVED_ : Becoming includes.
* src/includes :
For general headers includings.
* src/auxiliaryFunctions/includes :
Add includes directory for profiling functions.
* src/auxiliaryFunctions/*/*.h :
Moving headers to includes.
* src/auxiliaryFunctions/*/*.c :
Better dependancies with includes.
* src/auxiliaryFunctions/*/Makedile :
Changing includes / headers / link.
* src/elementaryFunctions/includes :
Add includes directory for profiling functions.
* src/elementaryFunctions/*/*.h :
Moving headers to includes.
* src/elementaryFunctions/*/*.c :
Better dependancies with includes.
* src/elementaryFunctions/*/Makedile :
Changing includes / headers / link.
* src/type/doubleComplexC99.h :
_REMOVED_ : All declarations are put in
src/type/doubleComplex.h .
* src/type/floatComplexC99.h :
_REMOVED_ : All declarations are put in
src/type/floatComplex.h .
2007-02-15 Bruno JOFRET <bruno.jofret@inria.fr>
* src/test/testIsEmpty.c :
Add some tests.
* src/test/Makefile :
Some trouble with link... Better in this order !
2007-02-14 Bruno JOFRET <bruno.jofret@inria.fr>
* src/test/test*.c :
Add some FIXME in order to remember to code some tests.
* src/test/testFind.c :
Testing of the find function.
* src/test/testIsEmpty.c :
Testing of the isEmpty function.
* src/misc :
Create for misc includes.
* src/auxiliaryFunctions/find/notFound.h :
Moved
* src/misc/notFound.h :
Better use here.
* */*/Makefile :
Modify all Makefiles. Remove -pedantic.
Must be crazy to use this...
* src/auxiliaryFunctions/isempty :
IsEmpty functions implementation.
* src/auxiliaryFunctions/isempty/{sdcz}isEmptya.c :
Implementation : s(float) d(double)
c(floatComplex) z(doubleComplex)
2007-02-13 Bruno JOFRET <bruno.jofret@inria.fr>
* src/elementaryFunctions/tanh/ztanhs.c :
Fixed with C99 Complex but Scilab computation.
* src/elementaryFunctions/tanh/ctanhs.c :
Fixed with C99 Complex but Scilab computation.
* src/auxiliaryFunctions/find :
Find not null element in list.
* src/auxiliaryFunctions/find/{sdcz}finda.c :
Implementation : s(float) d(double)
c(floatComplex) z(doubleComplex)
* src/auxiliaryFunctions/find/find.h :
Interface.
* src/auxiliaryFunctions/find/notFound.h :
Constant if all elements are not null.
2007-02-12 Bruno JOFRET <bruno.jofret@inria.fr>
* src/elementaryFunctions/sinh/zsinhs.c
Fixed with C99 Complex but Scilab computation.
* src/elementaryFunctions/sinh/csinhs.c
Fixed with C99 Complex but Scilab computation.
2007-02-09 Bruno JOFRET <bruno.jofret@inria.fr>
* src/elementaryFunctions/exp/cexps.c :
Implementation.
* src/elementaryFunctions/exp/zexps.c :
Implementation.
2007-02-08 Bruno JOFRET <bruno.jofret@inria.fr>
* src/auxiliaryFunctions/sign :
Signe of a float or double.
* src/auxiliaryFunctions/sign/sign.h :
Interface
* src/auxiliaryFunctions/sign/{sd}signs.c :
Implementation : s(float) d(double)
2007-02-07 Bruno JOFRET <bruno.jofret@inria.fr>
* src/auxiliaryFunctions :
Some misc Functions used in many cases.
2007-02-06 Bruno JOFRET <bruno.jofret@inria.fr>
* src/elementaryFunctions/cosh/zcoshs.c
Fixed with C99 Complex but Scilab computation.
* src/elementaryFunctions/cosh/ccoshs.c
Fixed with C99 Complex but Scilab computation.
* src/elementaryFunctions/sin/zsins.c
Fixed with C99 Complex but Scilab computation.
* src/elementaryFunctions/sin/csins.c
Fixed with C99 Complex but Scilab computation.
2007-02-05 Bruno JOFRET <bruno.jofret@inria.fr>
* src/type :
Add C99 compatibility. Float implementation.
* src/elementaryFunctions/cos/zcoss.c
Fixed with C99 Complex but Scilab computation.
* src/elementaryFunctions/cos/ccoss.c
Fixed with C99 Complex but Scilab computation.
2007-02-02 Bruno JOFRET <bruno.jofret@inria.fr>
* src/type :
Add C99 compatibility. Double implementation.
2007-01-31 Bruno JOFRET <bruno.jofret@inria.fr>
* src/elementaryFunctions/*.c :
Remove Multi Complex definition.
* src/type/doubleComplex.h :
Used as C99 Complex interface or hand-made complex.
* src/type/floatComplex.h :
Used as C99 Complex interface or hand-made complex.
* src/*/Makefile :
Add -std=c99 flag for native c99 complex compilation.
* src/elementaryFunctions/exp :
Exponential functions.
* src/test/testExp.c :
Add some Exponential functions tests.
2007-01-29 Bruno JOFRET <bruno.jofret@inria.fr>
* src/elementaryFunctions/tan :
Tangeant functions.
* src/elementaryFunctions/tanh :
Hyperbolic Tangeant functions.
* src/test/testCosh.c :
Add some Hyperbolic Cosine tests.
* src/test/tesSinh.c :
Add some Hyperbolic Sine tests.
* src/test/testTan.c :
Add some Tangeant tests.
* src/test/tesTanh.c :
Add some Hyperbolic Tangeant tests.
2007-01-19 Bruno JOFRET <bruno.jofret@inria.fr>
* src/elementaryFunctions/cosh :
Hyperbolic Cosine functions
* src/elementaryFunctions/sinh :
Hyperbolic Sine functions
2007-01-05 Bruno JOFRET <bruno.jofret@inria.fr>
* src/elementaryFunctions/acos :
ArcCosine functions
* src/elementaryFunctions/asin :
ArcSine functions
2006-12-11 Bruno JOFRET <bruno.jofret@inria.fr>
* src/test/testCos.c :
Add some cosine tests.
* src/test/tesSin.c :
Add some sine tests.
* README :
Add some standards and style definitions.
2006-12-08 Bruno JOFRET <bruno.jofret@inria.fr>
* src/test :
Test files for libraries.
* src/elementaryFunctions/cos :
Cosine functions
* src/elementaryFunctions/sin :
Sine functions
2006-12-04 Bruno JOFRET <bruno.jofret@inria.fr>
* Group functions:
Group all same name functions, ignore type.
* Inverse Cosinus [acos]:
Done for Real and Complex type.
* Inverse Hyperbolic Cosinus [acosh]:
Done for Real and Complex type.
* Inverse Sinus [asin]:
Done for Real and Complex type.
* Inverse Hyperbolic Sinus [asinh]:
Done for Real and Complex type.
* Inverse Tangeant [atan]:
Done for Real and Complex type.
2006-11-30 Bruno JOFRET <bruno.jofret@inria.fr>
* Hyperbolic Cosinus [cosh]:
Done for Real and Complex type.
* Hyperboloc Sinus [sinh]:
Done for Real and Complex type.
* Hyperbolic Tangeant [tanh]:
Done for Real and Complex type.
* src:
To put basic sources.
* src/type:
To put complex types.
* src/type/doubleComplex.{ch}:
Simple definition of complex as struct of double.
2006-11-29 Bruno JOFRET <brunojofret@inria.fr>
* Pythagore [pythag]:
Done for Real Type.
* LAPACK [dlamch]:
Add dlamch.help to keep an eye on each option.
* Icrease logarithm [log1p]:
Done for Real Type.
* Exponential [exp]:
Done for Real and Complex Type.
* ArcTangeante2 [atan2]:
Done for Real Type.
2006-11-28 Bruno JOFRET <bruno.jofret@inria.fr>
* Logarithm [log]:
Correction : Log for a negative Real call Log as complex.
* Root [sqrt]:
Done for Real and Complex.
2006-11-27 Bruno JOFRET <bruno.jofret@inria.fr>
* Number Sign [sign]:
Done for Real Type.
* Abslute Value [abs]:
Done for Real Type.
2006-11-18 Bruno JOFRET <bruno.jofret@inria.fr>
* Tangeant [tan]:
Done for Real and Complex Type.
* Logarithm [log]:
Done for Real and Complex Type.
2006-11-15 Bruno JOFRET <bruno.jofret@inria.fr>
* Cosinus [cos]:
Done for Real and Complex Type.
* Sinus [sin]:
Done for Real and Complex Type.
2006-11-13 Bruno JOFRET <bruno.jofret@inria.fr>
* TrigonometricsDependeces.dot :
First dependences...
Evaluating all depences in order to find atomic calls.
|