-
Notifications
You must be signed in to change notification settings - Fork 12
/
config.h
1345 lines (965 loc) · 36.5 KB
/
config.h
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
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
/**
* $File: config.h $
* $LastChangedDate: 2010-11-17 23:23:30 -0600 (Wed, 17 Nov 2010) $
* $Rev: 3896 $
*
* This file is part of simuPOP, a forward-time population genetics
* simulation environment. Please visit https://github.com/BoPeng/simuPOP
* for details.
*
* Copyright (C) 2004 - 2010 Bo Peng ([email protected])
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
/** \file config.h
* This file includes appropriate configuration file for different
* operating systems and compilers.
*/
#ifdef _WIN32
/* define if bool is a built-in type */
# define HAVE_BOOL
/* define if the compiler supports const_cast<> */
# define HAVE_CONST_CAST
/* Define to 1 if you have the declaration of `acosh', and to 0 if you don't.
*/
# define HAVE_DECL_ACOSH 1
/* Define to 1 if you have the declaration of `asinh', and to 0 if you don't.
*/
# define HAVE_DECL_ASINH 1
/* Define to 1 if you have the declaration of `atanh', and to 0 if you don't.
*/
# define HAVE_DECL_ATANH 1
/* Define to 1 if you have the declaration of `expm1', and to 0 if you don't.
*/
# define HAVE_DECL_EXPM1 1
/* Define to 1 if you have the declaration of `feenableexcept', and to 0 if
you don't. */
/* #undef HAVE_DECL_FEENABLEEXCEPT */
/* Define to 1 if you have the declaration of `fesettrapenable', and to 0 if
you don't. */
/* #undef HAVE_DECL_FESETTRAPENABLE */
/* Define to 1 if you have the declaration of `finite', and to 0 if you don't.
*/
# define HAVE_DECL_FINITE 1
/* Define to 1 if you have the declaration of `frexp', and to 0 if you don't.
*/
# define HAVE_DECL_FREXP 1
/* Define to 1 if you have the declaration of `hypot', and to 0 if you don't.
*/
# define HAVE_DECL_HYPOT 1
/* Define to 1 if you have the declaration of `isfinite', and to 0 if you
don't. */
# define HAVE_DECL_ISFINITE 0
/* Define to 1 if you have the declaration of `isinf', and to 0 if you don't.
*/
# define HAVE_DECL_ISINF 1
/* Define to 1 if you have the declaration of `isnan', and to 0 if you don't.
*/
# define HAVE_DECL_ISNAN 1
/* Define to 1 if you have the declaration of `ldexp', and to 0 if you don't.
*/
# define HAVE_DECL_LDEXP 1
/* Define to 1 if you have the declaration of `log1p', and to 0 if you don't.
*/
/* #undef HAVE_DECL_LOG1P */
/* define if the compiler supports default template parameters */
# define HAVE_DEFAULT_TEMPLATE_PARAMETERS
/* Define if /dev/null exists */
# define HAVE_DEV_NULL 1
/* Define to 1 if you have the <dlfcn.h> header file. */
# define HAVE_DLFCN_H 1
/* Define to 1 if you don't have `vprintf' but do have `_doprnt.' */
/* #undef HAVE_DOPRNT */
/* define if the compiler supports dynamic_cast<> */
# define HAVE_DYNAMIC_CAST
/* define if the compiler supports exceptions */
# define HAVE_EXCEPTIONS
/* have exi success and failure */
/* #undef HAVE_EXIT_SUCCESS_AND_FAILURE */
/* "HAVE_EXTENDED_PRECISION_REGISTERS" */
/* #undef HAVE_EXTENDED_PRECISION_REGISTERS */
/* Define to 1 if you have the <float.h> header file. */
# define HAVE_FLOAT_H 1
/* Define to 1 if you have the `floor' function. */
/* #undef HAVE_FLOOR */
/* "Define this is IEEE comparisons work correctly (e.g. NaN != NaN)" */
/* #undef HAVE_IEEE_COMPARISONS */
/* "Define this is IEEE denormalized numbers are available" */
/* #undef HAVE_IEEE_DENORMALS */
/* Define to 1 if you have the <inttypes.h> header file. */
/* #define HAVE_INTTYPES_H 1 */
/* Define to 1 if you have the `iswprint' function. */
# define HAVE_ISWPRINT 1
/* Define to 1 if you have the `m' library (-lm). */
/* #undef HAVE_LIBM */
/* Define to 1 if your system has a GNU libc compatible `malloc' function, and
to 0 otherwise. */
# define HAVE_MALLOC 1
/* Define to 1 if you have the `memcpy' function. */
/* #undef HAVE_MEMCPY */
/* Define to 1 if you have the `memmove' function. */
/* #undef HAVE_MEMMOVE */
/* Define to 1 if you have the <memory.h> header file. */
# define HAVE_MEMORY_H 1
/* Define to 1 if you have the `memset' function. */
# define HAVE_MEMSET 1
/* define if the compiler implements namespaces */
# define HAVE_NAMESPACES
/* define if the compiler accepts the new for scoping rules */
# define HAVE_NEW_FOR_SCOPING
/* Define to 1 if you have the `pow' function. */
/* #undef HAVE_POW */
/* "Define this if printf can handle %Lf for long double" */
/* #undef HAVE_PRINTF_LONGDOUBLE */
/* Define to 1 if the system has the type `ptrdiff_t'. */
# define HAVE_PTRDIFF_T 1
/* Define to 1 if you have the `setenv' function. */
# define HAVE_SETENV 1
/* Define to 1 if you have the `sqrt' function. */
/* #undef HAVE_SQRT */
/* Define to 1 if stdbool.h conforms to C99. */
# define HAVE_STDBOOL_H 1
/* Define to 1 if you have the <stddef.h> header file. */
# define HAVE_STDDEF_H 1
/* Define to 1 if you have the <stdint.h> header file. */
// I have a portable stdint.h for msvc
# define HAVE_STDINT_H 1
/* Define to 1 if you have the <stdlib.h> header file. */
# define HAVE_STDLIB_H 1
/* define if the compiler supports Standard Template Library */
# define HAVE_STL
/* Define to 1 if you have the `strdup' function. */
/* #undef HAVE_STRDUP */
/* Define to 1 if you have the <strings.h> header file. */
# define HAVE_STRINGS_H 1
/* Define to 1 if you have the <string.h> header file. */
# define HAVE_STRING_H 1
/* Define to 1 if you have the `strtol' function. */
/* #undef HAVE_STRTOL */
/* Define to 1 if you have the `strtoul' function. */
# define HAVE_STRTOUL 1
/* Define to 1 if you have the <sys/stat.h> header file. */
# define HAVE_SYS_STAT_H 1
/* Define to 1 if you have the <sys/types.h> header file. */
# define HAVE_SYS_TYPES_H 1
/* Define to 1 if you have the <unistd.h> header file. */
// #define HAVE_UNISTD_H 1
/* Define to 1 if you have the `vprintf' function. */
/* #undef HAVE_VPRINTF */
/* Define to 1 if the system has the type `_Bool'. */
# define HAVE__BOOL 1
/* Define to the address where bug reports for this package should be sent. */
# define PACKAGE_BUGREPORT ""
/* Define to the full name of this package. */
# define PACKAGE_NAME ""
/* Define to the full name and version of this package. */
# define PACKAGE_STRING ""
/* Define to the one symbol short name of this package. */
# define PACKAGE_TARNAME ""
/* Define to the version of this package. */
# define PACKAGE_VERSION ""
/* "Defined if this is an official release" */
/* #undef RELEASED */
/* Define to 1 if you have the ANSI C header files. */
# define STDC_HEADERS 1
/* config.h. Generated automatically by configure. */
/* config.h.in. Generated automatically from configure.in by autoheader. */
/* Define to empty if the keyword does not work. */
/* #undef const */
/* Define if you don't have vprintf but do have _doprnt. */
/* #undef HAVE_DOPRNT */
/* Define if you have the vprintf function. */
# define HAVE_VPRINTF 1
/* Define as __inline if that's what the C compiler calls it. */
# define inline __inline
/* Define to `unsigned' if <sys/types.h> doesn't define. */
/* #undef size_t */
/* Define if you have the ANSI C header files. */
# define STDC_HEADERS 1
/* Define if you have the acosh function. */
/* #undef HAVE_ACOSH */
#define HAVE_ACOSH
/* Define if you have the asinh function. */
/* #undef HAVE_ASINH */
#define HAVE_ASINH
/* Define if you have the atanh function. */
/* #undef HAVE_ATANH */
#define HAVE_ATANH
/* Define if you have the expm1 function. */
/* #undef HAVE_EXPM1 */
#define HAVE_EXPM1
/* Define if you have the finite function. */
/* #undef HAVE_FINITE */
/* Define if you have the isfinite function. */
/* #undef HAVE_ISFINITE */
/* Define if you have the isinf function. */
/* #undef HAVE_ISINF */
#define HAVE_ISINF
/* Define if you have the isnan function. */
/* #undef HAVE_ISNAN */
#define HAVE_ISNAN
/* Define if you have the log1p function. */
/* #undef HAVE_LOG1P */
#define HAVE_LOG1P
/* Define if you have the memcpy function. */
# define HAVE_MEMCPY 1
/* Define if you have the memmove function. */
# define HAVE_MEMMOVE 1
/* Define if you have the strdup function. */
# define HAVE_STRDUP 1
/* Define if you have the strtol function. */
# define HAVE_STRTOL 1
/* Define if you have the strtoul function. */
# define HAVE_STRTOUL 1
/* Define if you have the <dlfcn.h> header file. */
/* #undef HAVE_DLFCN_H */
/* Define if you have the m library (-lm). */
/* #undef HAVE_LIBM */
/* Name of package */
# define PACKAGE "gsl"
/* Version number of package */
# define VERSION "1.0"
/* Define if you have inline */
# define HAVE_INLINE 1
/* Define if you need to hide the static definitions of inline functions */
# define HIDE_INLINE_STATIC 1
/* Define if you have the ansi CLOCKS_PER_SEC clock rate */
# define HAVE_CLOCKS_PER_SEC 1
/* Defined if configure has guessed a missing ansi CLOCKS_PER_SEC clock rate */
/* #undef HAVE_GUESSED_CLOCKS_PER_SEC */
/* Use configure's best guess for CLOCKS_PER_SEC if it is unknown */
# ifndef HAVE_CLOCKS_PER_SEC
# define CLOCKS_PER_SEC HAVE_GUESSED_CLOCKS_PER_SEC
# endif
/* Defined if you have ansi EXIT_SUCCESS and EXIT_FAILURE in stdlib.h */
# define HAVE_EXIT_SUCCESS_AND_FAILURE 1
/* Use 0 and 1 for EXIT_SUCCESS and EXIT_FAILURE if we don't have them */
# ifndef HAVE_EXIT_SUCCESS_AND_FAILURE
# define EXIT_SUCCESS 0
# define EXIT_FAILURE 1
# endif
/* Define one of these if you have a known IEEE arithmetic interface */
/* #undef HAVE_SPARCLINUX_IEEE_INTERFACE */
/* #undef HAVE_M68KLINUX_IEEE_INTERFACE */
/* #undef HAVE_PPCLINUX_IEEE_INTERFACE */
/* #undef HAVE_X86LINUX_IEEE_INTERFACE */
/* #undef HAVE_SUNOS4_IEEE_INTERFACE */
/* #undef HAVE_SOLARIS_IEEE_INTERFACE */
/* #undef HAVE_HPUX11_IEEE_INTERFACE */
/* #undef HAVE_HPUX_IEEE_INTERFACE */
/* #undef HAVE_TRU64_IEEE_INTERFACE */
/* #undef HAVE_IRIX_IEEE_INTERFACE */
/* #undef HAVE_AIX_IEEE_INTERFACE */
/* #undef HAVE_FREEBSD_IEEE_INTERFACE */
/* #undef HAVE_OS2EMX_IEEE_INTERFACE */
/* #undef HAVE_NETBSD_IEEE_INTERFACE */
/* #undef HAVE_OPENBSD_IEEE_INTERFACE */
/* #undef HAVE_DARWIN_IEEE_INTERFACE */
/* Define this if we need to include /usr/include/float.h explicitly
in order to get FP_RND_RN and related macros. This is known to be
a problem on some Compaq Tru64 unix systems when compiled with GCC. */
/* #undef FIND_FP_RND_IN_USR_INCLUDE_FLOAT_H */
/* Define a rounding function which moves extended precision values
out of registers and rounds them to double-precision. This should
be used *sparingly*, in places where it is necessary to keep
double-precision rounding for critical expressions while running in
extended precision. For example, the following code should ensure
exact equality, even when extended precision registers are in use,
double q = GSL_COERCE_DBL(3.0/7.0) ;
if (q == GSL_COERCE_DBL(3.0/7.0)) { ... } ;
It carries a penalty even when the program is running in double
precision mode unless you compile a separate version of the
library with HAVE_EXTENDED_PRECISION_REGISTERS turned off. */
# define HAVE_EXTENDED_PRECISION_REGISTERS 1
# ifdef HAVE_EXTENDED_PRECISION_REGISTERS
# define GSL_COERCE_DBL(x) (gsl_coerce_double(x))
# else
# define GSL_COERCE_DBL(x) (x)
# endif
/* Define this if printf can handle %Lf for long double */
/* #undef HAVE_PRINTF_LONGDOUBLE */
/* Substitute gsl functions for missing system functions */
# ifndef HAVE_HYPOT
# ifndef _MSC_VER
# define hypot gsl_hypot
# endif
# endif
# ifndef HAVE_LOG1P
# define log1p gsl_log1p
# endif
# ifndef HAVE_EXPM1
# define expm1 gsl_expm1
# endif
# ifndef HAVE_ACOSH
# define acosh gsl_acosh
# endif
# ifndef HAVE_ASINH
# define asinh gsl_asinh
# endif
# ifndef HAVE_ATANH
# define atanh gsl_atanh
# endif
# ifndef HAVE_ISINF
# define isinf gsl_isinf
# endif
# ifndef HAVE_ISNAN
# define isnan gsl_isnan
# endif
# ifndef HAVE_FINITE
# ifdef HAVE_ISFINITE
# define finite isfinite
# else
# define finite gsl_finite
# endif
# endif
# define RETURN_IF_NULL(x) if (!x) { return ; }
#else
# ifdef MACOSX
/* define if bool is a built-in type */
# define HAVE_BOOL
/* define if the compiler supports const_cast<> */
# define HAVE_CONST_CAST
/* Define to 1 if you have the declaration of `acosh', and to 0 if you don't.
*/
# define HAVE_DECL_ACOSH 1
/* Define to 1 if you have the declaration of `atanh', and to 0 if you don't.
*/
# define HAVE_DECL_ATANH 1
/* Define to 1 if you have the declaration of `expm1', and to 0 if you don't.
*/
# define HAVE_DECL_EXPM1 1
/* Define to 1 if you have the declaration of `feenableexcept', and to 0 if
you don't. */
/* #undef HAVE_DECL_FEENABLEEXCEPT */
/* Define to 1 if you have the declaration of `fesettrapenable', and to 0 if
you don't. */
/* #undef HAVE_DECL_FESETTRAPENABLE */
/* Define to 1 if you have the declaration of `finite', and to 0 if you don't.
*/
# define HAVE_DECL_FINITE 1
/* Define to 1 if you have the declaration of `frexp', and to 0 if you don't.
*/
# define HAVE_DECL_FREXP 1
/* Define to 1 if you have the declaration of `hypot', and to 0 if you don't.
*/
# define HAVE_DECL_HYPOT 1
/* Define to 1 if you have the declaration of `isfinite', and to 0 if you
don't. */
# define HAVE_DECL_ISFINITE 1
/* Define to 1 if you have the declaration of `isinf', and to 0 if you don't.
*/
# define HAVE_DECL_ISINF 1
/* Define to 1 if you have the declaration of `isnan', and to 0 if you don't.
*/
# define HAVE_DECL_ISNAN 1
/* Define to 1 if you have the declaration of `ldexp', and to 0 if you don't.
*/
# define HAVE_DECL_LDEXP 1
/* Define to 1 if you have the declaration of `log1p', and to 0 if you don't.
*/
/* #undef HAVE_DECL_LOG1P */
/* define if the compiler supports default template parameters */
# define HAVE_DEFAULT_TEMPLATE_PARAMETERS
/* Define if /dev/null exists */
# define HAVE_DEV_NULL 1
/* Define to 1 if you have the <dlfcn.h> header file. */
# define HAVE_DLFCN_H 1
/* Define to 1 if you don't have `vprintf' but do have `_doprnt.' */
/* #undef HAVE_DOPRNT */
/* define if the compiler supports dynamic_cast<> */
# define HAVE_DYNAMIC_CAST
/* define if the compiler supports exceptions */
# define HAVE_EXCEPTIONS
/* have exi success and failure */
/* #undef HAVE_EXIT_SUCCESS_AND_FAILURE */
/* "HAVE_EXTENDED_PRECISION_REGISTERS" */
/* #undef HAVE_EXTENDED_PRECISION_REGISTERS */
/* Define to 1 if you have the <float.h> header file. */
# define HAVE_FLOAT_H 1
/* Define to 1 if you have the `floor' function. */
# define HAVE_FLOOR 1
/* "Define this is IEEE comparisons work correctly (e.g. NaN != NaN)" */
/* #undef HAVE_IEEE_COMPARISONS */
/* "Define this is IEEE denormalized numbers are available" */
/* #undef HAVE_IEEE_DENORMALS */
/* "Define if you have inline" */
# define HAVE_INLINE 1
/* Define to 1 if you have the <inttypes.h> header file. */
# define HAVE_INTTYPES_H 1
/* Define to 1 if you have the `iswprint' function. */
# define HAVE_ISWPRINT 1
/* Define to 1 if you have the `m' library (-lm). */
/* #undef HAVE_LIBM */
/* Define to 1 if you have the <limits.h> header file. */
# define HAVE_LIMITS_H 1
/* Define to 1 if your system has a GNU libc compatible `malloc' function, and
to 0 otherwise. */
# define HAVE_MALLOC 1
/* Define to 1 if you have the `memcpy' function. */
/* #undef HAVE_MEMCPY */
/* Define to 1 if you have the `memmove' function. */
/* #undef HAVE_MEMMOVE */
/* Define to 1 if you have the <memory.h> header file. */
# define HAVE_MEMORY_H 1
/* Define to 1 if you have the `memset' function. */
# define HAVE_MEMSET 1
/* define if the compiler implements namespaces */
# define HAVE_NAMESPACES
/* define if the compiler accepts the new for scoping rules */
# define HAVE_NEW_FOR_SCOPING
/* Define to 1 if you have the `pow' function. */
# define HAVE_POW 1
/* "Define this if printf can handle %Lf for long double" */
/* #undef HAVE_PRINTF_LONGDOUBLE */
/* Define to 1 if the system has the type `ptrdiff_t'. */
# define HAVE_PTRDIFF_T 1
/* Define to 1 if you have the `snprintf' function. */
# define HAVE_SNPRINTF 1
/* Define to 1 if you have the `sqrt' function. */
# define HAVE_SQRT 1
/* Define to 1 if stdbool.h conforms to C99. */
# define HAVE_STDBOOL_H 1
/* Define to 1 if you have the <stddef.h> header file. */
# define HAVE_STDDEF_H 1
/* Define to 1 if you have the <stdint.h> header file. */
# define HAVE_STDINT_H 1
/* Define to 1 if you have the <stdlib.h> header file. */
# define HAVE_STDLIB_H 1
/* define if the compiler supports Standard Template Library */
# define HAVE_STL
/* Define to 1 if you have the `strdup' function. */
/* #undef HAVE_STRDUP */
/* Define to 1 if you have the <strings.h> header file. */
# define HAVE_STRINGS_H 1
/* Define to 1 if you have the <string.h> header file. */
# define HAVE_STRING_H 1
/* Define to 1 if you have the `strtol' function. */
/* #undef HAVE_STRTOL */
/* Define to 1 if you have the `strtoul' function. */
# define HAVE_STRTOUL 1
/* Define to 1 if you have the <sys/stat.h> header file. */
# define HAVE_SYS_STAT_H 1
/* Define to 1 if you have the <sys/types.h> header file. */
# define HAVE_SYS_TYPES_H 1
/* Define to 1 if you have the <unistd.h> header file. */
# define HAVE_UNISTD_H 1
/* Define to 1 if you have the `vprintf' function. */
/* #undef HAVE_VPRINTF */
/* Define to 1 if the system has the type `_Bool'. */
# define HAVE__BOOL 1
/* Define to the address where bug reports for this package should be sent. */
# define PACKAGE_BUGREPORT ""
/* Define to the full name of this package. */
# define PACKAGE_NAME ""
/* Define to the full name and version of this package. */
# define PACKAGE_STRING ""
/* Define to the one symbol short name of this package. */
# define PACKAGE_TARNAME ""
/* Define to the version of this package. */
# define PACKAGE_VERSION ""
/* "Defined if this is an official release" */
/* #undef RELEASED */
/* Define to 1 if you have the ANSI C header files. */
# define STDC_HEADERS 1
/* Define to empty if `const' does not conform to ANSI C. */
/* #undef const */
/* Define to `__inline__' or `__inline' if that's what the C compiler
calls it, or to nothing if 'inline' is not supported under any name. */
# ifndef __cplusplus
/* #undef inline */
# endif
/* Define to rpl_malloc if the replacement function should be used. */
/* #undef malloc */
/* Define to `int' if <sys/types.h> does not define. */
/* #undef pid_t */
/* Define to `unsigned' if <sys/types.h> does not define. */
/* #undef size_t */
/* Define to empty if the keyword `volatile' does not work. Warning: valid
code using `volatile' can become incorrect without. Disable with care. */
/* #undef volatile */
# if HAVE_EXTENDED_PRECISION_REGISTERS
# define GSL_COERCE_DBL(x) (gsl_coerce_double(x))
# else
# define GSL_COERCE_DBL(x) (x)
# endif
/* Substitute gsl functions for missing system functions */
# if !HAVE_DECL_HYPOT
# define hypot gsl_hypot
# endif
# if !HAVE_DECL_LOG1P
# define log1p gsl_log1p
# endif
# if !HAVE_DECL_EXPM1
# define expm1 gsl_expm1
# endif
# if !HAVE_DECL_ACOSH
# define acosh gsl_acosh
# endif
# if !HAVE_DECL_ASINH
# define asinh gsl_asinh
# endif
# if !HAVE_DECL_ATANH
# define atanh gsl_atanh
# endif
# if !HAVE_DECL_LDEXP
# define ldexp gsl_ldexp
# endif
# if !HAVE_DECL_FREXP
# define frexp gsl_frexp
# endif
# if !HAVE_DECL_ISINF
# define isinf gsl_isinf
# endif
# if !HAVE_DECL_FINITE
# if HAVE_DECL_ISFINITE
# define finite isfinite
# else
# define finite gsl_finite
# endif
# endif
# if !HAVE_DECL_ISNAN
# define isnan gsl_isnan
# endif
# if defined(GSL_RANGE_CHECK_OFF) || !defined(GSL_RANGE_CHECK)
# define GSL_RANGE_CHECK 0 /* turn off range checking by default internally */
# endif
# define RETURN_IF_NULL(x) if (!x) { return ; }
# else
# ifdef __sparc__
/* define if bool is a built-in type */
# define HAVE_BOOL
/* define if the compiler supports const_cast<> */
# define HAVE_CONST_CAST
/* Define to 1 if you have the declaration of `acosh', and to 0 if you don't.
*/
# define HAVE_DECL_ACOSH 1
/* Define to 1 if you have the declaration of `atanh', and to 0 if you don't.
*/
# define HAVE_DECL_ATANH 1
/* Define to 1 if you have the declaration of `expm1', and to 0 if you don't.
*/
# define HAVE_DECL_EXPM1 1
/* Define to 1 if you have the declaration of `feenableexcept', and to 0 if
you don't. */
# define HAVE_DECL_FEENABLEEXCEPT 0
/* Define to 1 if you have the declaration of `fesettrapenable', and to 0 if
you don't. */
# define HAVE_DECL_FESETTRAPENABLE 0
/* Define to 1 if you have the declaration of `finite', and to 0 if you don't.
*/
# define HAVE_DECL_FINITE 0
/* Define to 1 if you have the declaration of `frexp', and to 0 if you don't.
*/
# define HAVE_DECL_FREXP 1
/* Define to 1 if you have the declaration of `hypot', and to 0 if you don't.
*/
# define HAVE_DECL_HYPOT 1
/* Define to 1 if you have the declaration of `isfinite', and to 0 if you
don't. */
# define HAVE_DECL_ISFINITE 0
/* Define to 1 if you have the declaration of `isinf', and to 0 if you don't.
*/
# define HAVE_DECL_ISINF 0
/* Define to 1 if you have the declaration of `isnan', and to 0 if you don't.
*/
# define HAVE_DECL_ISNAN 1
/* Define to 1 if you have the declaration of `ldexp', and to 0 if you don't.
*/
# define HAVE_DECL_LDEXP 1
/* Define to 1 if you have the declaration of `log1p', and to 0 if you don't.
*/
# define HAVE_DECL_LOG1P 1
/* define if the compiler supports default template parameters */
# define HAVE_DEFAULT_TEMPLATE_PARAMETERS
/* Define if /dev/null exists */
# define HAVE_DEV_NULL 1
/* Define to 1 if you have the <dlfcn.h> header file. */
# define HAVE_DLFCN_H 1
/* Define to 1 if you don't have `vprintf' but do have `_doprnt.' */
# define HAVE_DOPRNT 1
/* define if the compiler supports dynamic_cast<> */
# define HAVE_DYNAMIC_CAST
/* define if the compiler supports exceptions */
# define HAVE_EXCEPTIONS
/* have exi success and failure */
# define HAVE_EXIT_SUCCESS_AND_FAILURE
/* "HAVE_EXTENDED_PRECISION_REGISTERS" */
/* #undef HAVE_EXTENDED_PRECISION_REGISTERS */
/* Define to 1 if you have the <float.h> header file. */
# define HAVE_FLOAT_H 1
/* Define to 1 if you have the `floor' function. */
/* #undef HAVE_FLOOR */
/* "Define this is IEEE comparisons work correctly (e.g. NaN != NaN)" */
# define HAVE_IEEE_COMPARISONS 1
/* "Define this is IEEE denormalized numbers are available" */
# define HAVE_IEEE_DENORMALS 1
/* "Define if you have inline" */
# define HAVE_INLINE 1
/* Define to 1 if you have the <inttypes.h> header file. */
# define HAVE_INTTYPES_H 1
/* Define to 1 if you have the `iswprint' function. */
# define HAVE_ISWPRINT 1
/* Define to 1 if you have the `m' library (-lm). */
# define HAVE_LIBM 1
/* Define to 1 if you have the <limits.h> header file. */
# define HAVE_LIMITS_H 1
/* Define to 1 if your system has a GNU libc compatible `malloc' function, and
to 0 otherwise. */
# define HAVE_MALLOC 1
/* Define to 1 if you have the `memcpy' function. */
# define HAVE_MEMCPY 1
/* Define to 1 if you have the `memmove' function. */
# define HAVE_MEMMOVE 1
/* Define to 1 if you have the <memory.h> header file. */
# define HAVE_MEMORY_H 1
/* Define to 1 if you have the `memset' function. */
# define HAVE_MEMSET 1
/* define if the compiler implements namespaces */
# define HAVE_NAMESPACES
/* define if the compiler accepts the new for scoping rules */
# define HAVE_NEW_FOR_SCOPING
/* Define to 1 if you have the `pow' function. */
/* #undef HAVE_POW */
/* "Define this if printf can handle %Lf for long double" */
# define HAVE_PRINTF_LONGDOUBLE 1
/* Define to 1 if the system has the type `ptrdiff_t'. */
# define HAVE_PTRDIFF_T 1
/* Define to 1 if you have the `snprintf' function. */
# define HAVE_SNPRINTF 1
/* Define to 1 if you have the `sqrt' function. */
/* #undef HAVE_SQRT */
/* Define to 1 if stdbool.h conforms to C99. */
# define HAVE_STDBOOL_H 1
/* Define to 1 if you have the <stddef.h> header file. */
# define HAVE_STDDEF_H 1
/* Define to 1 if you have the <stdint.h> header file. */
/* #undef HAVE_STDINT_H */
/* Define to 1 if you have the <stdlib.h> header file. */
# define HAVE_STDLIB_H 1
/* define if the compiler supports Standard Template Library */
# define HAVE_STL
/* Define to 1 if you have the `strdup' function. */
# define HAVE_STRDUP 1
/* Define to 1 if you have the <strings.h> header file. */
# define HAVE_STRINGS_H 1
/* Define to 1 if you have the <string.h> header file. */
# define HAVE_STRING_H 1
/* Define to 1 if you have the `strtol' function. */
# define HAVE_STRTOL 1
/* Define to 1 if you have the `strtoul' function. */
# define HAVE_STRTOUL 1
/* Define to 1 if you have the <sys/stat.h> header file. */
# define HAVE_SYS_STAT_H 1
/* Define to 1 if you have the <sys/types.h> header file. */
# define HAVE_SYS_TYPES_H 1
/* Define to 1 if you have the <unistd.h> header file. */
# define HAVE_UNISTD_H 1
/* Define to 1 if you have the `vprintf' function. */
# define HAVE_VPRINTF 1
/* Define to 1 if the system has the type `_Bool'. */
# define HAVE__BOOL 1
/* Define to the address where bug reports for this package should be sent. */
# define PACKAGE_BUGREPORT ""
/* Define to the full name of this package. */
# define PACKAGE_NAME ""
/* Define to the full name and version of this package. */
# define PACKAGE_STRING ""
/* Define to the one symbol short name of this package. */
# define PACKAGE_TARNAME ""
/* Define to the version of this package. */
# define PACKAGE_VERSION ""
/* "Defined if this is an official release" */
# define RELEASED 1
/* Define to 1 if you have the ANSI C header files. */
# define STDC_HEADERS 1
/* Define to empty if `const' does not conform to ANSI C. */
/* #undef const */
/* Define to `__inline__' or `__inline' if that's what the C compiler
calls it, or to nothing if 'inline' is not supported under any name. */
# ifndef __cplusplus
/* #undef inline */
# endif
/* Define to rpl_malloc if the replacement function should be used. */
/* #undef malloc */
/* Define to `int' if <sys/types.h> does not define. */
/* #undef pid_t */
/* Define to `unsigned' if <sys/types.h> does not define. */
/* #undef size_t */
/* Define to empty if the keyword `volatile' does not work. Warning: valid
code using `volatile' can become incorrect without. Disable with care. */
/* #undef volatile */
# if HAVE_EXTENDED_PRECISION_REGISTERS
# define GSL_COERCE_DBL(x) (gsl_coerce_double(x))
# else
# define GSL_COERCE_DBL(x) (x)
# endif
/* Substitute gsl functions for missing system functions */
# if !HAVE_DECL_HYPOT
# define hypot gsl_hypot
# endif
# if !HAVE_DECL_LOG1P
# define log1p gsl_log1p
# endif
# if !HAVE_DECL_EXPM1
# define expm1 gsl_expm1
# endif
# if !HAVE_DECL_ACOSH