@@ -275,114 +275,159 @@ function caml_float_compare(x, y) {
275275
276276//Provides: caml_eq_float const
277277//Inline
278- function caml_eq_float ( a , b ) { return a === b ? 1 : 0 ; }
278+ function caml_eq_float ( a , b ) {
279+ return a === b ? 1 : 0 ;
280+ }
279281
280282//Provides: caml_neq_float const
281283//Inline
282- function caml_neq_float ( a , b ) { return a !== b ? 1 : 0 ; }
284+ function caml_neq_float ( a , b ) {
285+ return a !== b ? 1 : 0 ;
286+ }
283287
284288//Provides: caml_ge_float const
285289//Inline
286- function caml_ge_float ( a , b ) { return a >= b ? 1 : 0 ; }
290+ function caml_ge_float ( a , b ) {
291+ return a >= b ? 1 : 0 ;
292+ }
287293
288294//Provides: caml_le_float const
289295//Inline
290- function caml_le_float ( a , b ) { return a <= b ? 1 : 0 ; }
296+ function caml_le_float ( a , b ) {
297+ return a <= b ? 1 : 0 ;
298+ }
291299
292300//Provides: caml_gt_float const
293301//Inline
294- function caml_gt_float ( a , b ) { return a > b ? 1 : 0 ; }
302+ function caml_gt_float ( a , b ) {
303+ return a > b ? 1 : 0 ;
304+ }
295305
296306//Provides: caml_lt_float const
297307//Inline
298- function caml_lt_float ( a , b ) { return a < b ? 1 : 0 ; }
299-
308+ function caml_lt_float ( a , b ) {
309+ return a < b ? 1 : 0 ;
310+ }
300311
301312//Provides: caml_add_float const
302313//Inline
303- function caml_add_float ( a , b ) { return a + b }
314+ function caml_add_float ( a , b ) {
315+ return a + b ;
316+ }
304317
305318//Provides: caml_sub_float const
306319//Inline
307- function caml_sub_float ( a , b ) { return a - b ; }
320+ function caml_sub_float ( a , b ) {
321+ return a - b ;
322+ }
308323
309324//Provides: caml_mul_float const
310325//Inline
311- function caml_mul_float ( a , b ) { return a * b ; }
326+ function caml_mul_float ( a , b ) {
327+ return a * b ;
328+ }
312329
313330//Provides: caml_div_float const
314331//Inline
315- function caml_div_float ( a , b ) { return a / b ; }
332+ function caml_div_float ( a , b ) {
333+ return a / b ;
334+ }
316335
317336//Provides: caml_neg_float const
318337//Inline
319- function caml_neg_float ( a ) { return - a ; }
338+ function caml_neg_float ( a ) {
339+ return - a ;
340+ }
320341
321342//Provides: caml_fmod_float const
322343//Inline
323- function caml_fmod_float ( a , b ) { return a % b ; }
344+ function caml_fmod_float ( a , b ) {
345+ return a % b ;
346+ }
324347
325348//Provides: caml_abs_float const
326349//Inline
327- function caml_abs_float ( a ) { return Math . abs ( a ) }
350+ function caml_abs_float ( a ) {
351+ return Math . abs ( a ) ;
352+ }
328353
329354//Provides: caml_acos_float const
330355//Inline
331- function caml_acos_float ( a ) { return Math . acos ( a ) }
332-
356+ function caml_acos_float ( a ) {
357+ return Math . acos ( a ) ;
358+ }
333359
334360//Provides: caml_asin_float const
335361//Inline
336- function caml_asin_float ( a ) { return Math . asin ( a ) }
362+ function caml_asin_float ( a ) {
363+ return Math . asin ( a ) ;
364+ }
337365
338366//Provides: caml_atan_float const
339367//Inline
340- function caml_atan_float ( a ) { return Math . atan ( a ) }
368+ function caml_atan_float ( a ) {
369+ return Math . atan ( a ) ;
370+ }
341371
342372//Provides: caml_atan2_float const
343373//Inline
344- function caml_atan2_float ( a , b ) { return Math . atan2 ( a , b ) }
374+ function caml_atan2_float ( a , b ) {
375+ return Math . atan2 ( a , b ) ;
376+ }
345377
346378//Provides: caml_ceil_float const
347379//Inline
348- function caml_ceil_float ( a ) { return Math . ceil ( a ) }
380+ function caml_ceil_float ( a ) {
381+ return Math . ceil ( a ) ;
382+ }
349383
350384//Provides: caml_cos_float const
351385//Inline
352- function caml_cos_float ( a ) { return Math . cos ( a ) }
386+ function caml_cos_float ( a ) {
387+ return Math . cos ( a ) ;
388+ }
353389
354390//Provides: caml_exp_float const
355391//Inline
356- function caml_exp_float ( a ) { return Math . exp ( a ) }
357-
392+ function caml_exp_float ( a ) {
393+ return Math . exp ( a ) ;
394+ }
358395
359396//Provides: caml_floor_float const
360397//Inline
361- function caml_floor_float ( a ) { return Math . floor ( a ) }
362-
398+ function caml_floor_float ( a ) {
399+ return Math . floor ( a ) ;
400+ }
363401
364402//Provides: caml_log_float const
365403//Inline
366- function caml_log_float ( a ) { return Math . log ( a ) }
404+ function caml_log_float ( a ) {
405+ return Math . log ( a ) ;
406+ }
367407
368408//Provides: caml_power_float const
369409//Inline
370- function caml_power_float ( a , b ) { return Math . pow ( a , b ) }
410+ function caml_power_float ( a , b ) {
411+ return Math . pow ( a , b ) ;
412+ }
371413
372414//Provides: caml_sin_float const
373415//Inline
374- function caml_sin_float ( a ) { return Math . sin ( a ) }
416+ function caml_sin_float ( a ) {
417+ return Math . sin ( a ) ;
418+ }
375419
376420//Provides: caml_sqrt_float const
377421//Inline
378- function caml_sqrt_float ( a ) { return Math . sqrt ( a ) }
422+ function caml_sqrt_float ( a ) {
423+ return Math . sqrt ( a ) ;
424+ }
379425
380426//Provides: caml_tan_float const
381427//Inline
382- function caml_tan_float ( a ) { return Math . tan ( a ) }
383-
384-
385-
428+ function caml_tan_float ( a ) {
429+ return Math . tan ( a ) ;
430+ }
386431
387432//Provides: caml_copysign_float const
388433function caml_copysign_float ( x , y ) {
0 commit comments