forked from Gecode/gecode
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile.in
executable file
·2114 lines (1893 loc) · 66.8 KB
/
Makefile.in
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
# -*-Makefile-*-
#
# Main authors:
# Christian Schulte <[email protected]>
# Guido Tack <[email protected]>
#
# Copyright:
# Christian Schulte, 2005
# Guido Tack, 2005
#
# This file is part of Gecode, the generic constraint
# development environment:
# http://www.gecode.org
#
# Permission is hereby granted, free of charge, to any person obtaining
# a copy of this software and associated documentation files (the
# "Software"), to deal in the Software without restriction, including
# without limitation the rights to use, copy, modify, merge, publish,
# distribute, sublicense, and/or sell copies of the Software, and to
# permit persons to whom the Software is furnished to do so, subject to
# the following conditions:
#
# The above copyright notice and this permission notice shall be
# included in all copies or substantial portions of the Software.
#
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
# EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
# MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
# NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
# LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
# OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
# WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
#
#
# General Settings
#
export prefix = @prefix@
export exec_prefix = @exec_prefix@
export bindir = @bindir@
export libdir = @libdir@
export sharedlibdir = @sharedlibdir@
export includedir = @includedir@
export srcdir = @srcdir@
export datarootdir = @datarootdir@
export datadir = @datadir@
export docdir= @docdir@
export top_srcdir = @top_srcdir@
export top_builddir = .
# Install to different root directory
DESTDIR=
export subdirs = @subdirs@
export VERSION = @VERSION@
export CXX = @CXX@
export CC = @CC@
export MOC = @MOC@
ifeq "$(top_srcdir)" "$(top_builddir)"
CPPFLAGS=-I$(top_srcdir)
else
CPPFLAGS=-I$(top_builddir) -I$(top_srcdir)
endif
export CPPFLAGS
export CXXFLAGS = $(CPPFLAGS) @CXXFLAGS@ $(CXXUSR)
export CFLAGS = $(CPPFLAGS) @CFLAGS@ $(CUSR)
export EXAMPLES_EXTRA_CXXFLAGS = @EXAMPLES_EXTRA_CXXFLAGS@
export QT_CPPFLAGS = @QTDEFINES@ @QTINCLUDES@
export LINKQT = @QTLIBS@
export MPFR_CPPFLAGS = @GMP_CPPFLAGS@ @MPFR_CPPFLAGS@
ifeq "@enable_mpfr@" "yes"
export LINKMPFR = @MPFR_LIB_PATH@ @GMP_LIB_PATH@ @MPFR_LINK@ @GMP_LINK@
else
export LINKMPFR =
endif
ifeq "@BUILDDLL@" "yes"
export LINKSTATICQT
else
export LINKSTATICQT = $(LINKQT)
endif
export GLDFLAGS = @GLDFLAGS@
export DLLFLAGS = @DLLFLAGS@
export DLLPATH = @DLLPATH@
export RANLIB = @RANLIB@
export TAR = tar
#
# Use suffixes to get consistent treatment of dots
#
export OBJSUFFIX = .@OBJEXT@
export SBJSUFFIX = .@SBJEXT@
export DLLSUFFIX = @DLL_ARCH@@USERSUFFIX@.@DLLEXT@
export MANIFESTSUFFIX = @DLL_ARCH@@USERSUFFIX@.@[email protected]
export RCSUFFIX = @DLL_ARCH@@USERSUFFIX@.@[email protected]
export RESSUFFIX = @DLL_ARCH@@USERSUFFIX@.@[email protected]
export LIBSUFFIX = @DLL_ARCH@@USERSUFFIX@.@LIBEXT@
export PDBSUFFIX = @DLL_ARCH@@[email protected]
export EXPSUFFIX = @DLL_ARCH@@[email protected]
export STATICLIBSUFFIX = .@STATICLIBEXT@
export EXESUFFIX = @EXEEXT@
export LIBPREFIX = @LIBPREFIX@
export LINKPREFIX = @LINKPREFIX@
export LINKSUFFIX = @DLL_ARCH@@USERSUFFIX@@LINKSUFFIX@
export SOLINKSUFFIX = @DLL_ARCH@@USERSUFFIX@@SOLINKSUFFIX@
export SOSUFFIX = @DLL_ARCH@@USERSUFFIX@@SOSUFFIX@
#
# Programs
#
export RMF = rm -rf
export MV = mv
export MANIFEST = @MANIFEST@ -nologo
export FIXMANIFEST = perl $(top_srcdir)/misc/fixmanifest.perl $(DLLSUFFIX)
export RESCOMP = @RESCOMP@ -n -i$(top_srcdir)
export RCGEN = perl $(top_srcdir)/misc/genrc.perl $(DLLSUFFIX) $(top_srcdir)
ifeq "@need_soname@" "yes"
export CREATELINK = ln -fs
else
export CREATELINK = @true
endif
ifeq "@enable_resource@" "yes"
%.res: %.rc
$(RESCOMP) -fo $@ $<
.PRECIOUS: %.res %.rc
endif
#
# SUPPORT COMPONENTS
#
SUPPORTSRC0 = \
exception allocator heap \
thread/thread thread/windows thread/pthreads \
hw-rnd
SUPPORTHDR0 = \
block-allocator cast hash dynamic-array \
dynamic-stack exception allocator heap \
macros random sort static-stack \
marked-pointer int-type auto-link \
thread thread/thread thread/windows thread/pthreads thread/none timer \
dynamic-queue bitset-base bitset bitset-offset \
hw-rnd run-jobs ref-count
SUPPORTSRC1 = $(SUPPORTSRC0:%=gecode/support/%.cpp)
SUPPORTHDR = gecode/support.hh \
$(SUPPORTHDR0:%=gecode/support/%.hpp)
SUPPORTOBJ = $(SUPPORTSRC1:%.cpp=%$(OBJSUFFIX))
SUPPORTSRC = $(SUPPORTSRC1)
export SUPPORTDLL = $(LIBPREFIX)@SUPPORT@$(DLLSUFFIX)
export SUPPORTLIB = $(LIBPREFIX)@SUPPORT@$(LIBSUFFIX)
ifeq "@need_soname@" "yes"
export SUPPORTSONAME = \
@WLSONAME@$(LIBPREFIX)@SUPPORT@$(SOSUFFIX)
else
export SUPPORTSONAME =
endif
export SUPPORTSTATICLIB = $(LIBPREFIX)@SUPPORT@$(STATICLIBSUFFIX)
export LINKSUPPORT = \
$(LINKPREFIX)@SUPPORT@$(LINKSUFFIX)
ifeq "@enable_resource@" "yes"
export SUPPORTRC = $(LIBPREFIX)@SUPPORT@$(RCSUFFIX)
export SUPPORTRES = $(LIBPREFIX)@SUPPORT@$(RESSUFFIX)
else
export SUPPORTRES =
export SUPPORTRC =
endif
SUPPORTBUILDDIRS = support support/thread
#
# KERNEL COMPONENTS
#
VARIMPHDR = \
gecode/kernel/var-type.hpp \
gecode/kernel/var-imp.hpp
VARIMP = $(VARIMPHDR)
KERNELSRC0 = \
archive core exception gpi \
data/rnd \
branch/action branch/afc branch/chb branch/function \
memory/manager memory/region \
trace/recorder trace/filter trace/tracer trace/general \
data/array
KERNELHDR0 = \
archive core exception macros modevent gpi \
shared-object shared-space-data range-list \
view var \
memory/config memory/manager memory/region memory/allocators \
data/array data/rnd data/shared-array data/shared-data \
propagator/pattern propagator/advisor propagator/subscribed \
propagator/wait \
branch/var branch/val branch/tiebreak \
branch/traits branch/afc branch/action branch/chb \
branch/view-sel branch/merit \
branch/val-sel branch/val-commit branch/view branch/view-val \
branch/val-sel-commit branch/print branch/filter \
trace/traits trace/filter trace/tracer trace/recorder \
trace/general trace/print
KERNELSRC = $(KERNELSRC0:%=gecode/kernel/%.cpp)
KERNELHDR = \
gecode/kernel.hh \
$(KERNELHDR0:%=gecode/kernel/%.hpp)
KERNELOBJ = $(KERNELSRC:%.cpp=%$(OBJSUFFIX))
export KERNELDLL = $(LIBPREFIX)@KERNEL@$(DLLSUFFIX)
export KERNELLIB = $(LIBPREFIX)@KERNEL@$(LIBSUFFIX)
ifeq "@need_soname@" "yes"
export KERNELSONAME = \
@WLSONAME@$(LIBPREFIX)@KERNEL@$(SOSUFFIX)
else
export KERNELSONAME =
endif
export KERNELSTATICLIB = $(LIBPREFIX)@KERNEL@$(STATICLIBSUFFIX)
export LINKKERNEL = $(LINKPREFIX)@KERNEL@$(LINKSUFFIX)
ifeq "@enable_resource@" "yes"
export KERNELRC = $(LIBPREFIX)@KERNEL@$(RCSUFFIX)
export KERNELRES = $(LIBPREFIX)@KERNEL@$(RESSUFFIX)
else
export KERNELRES =
export KERNELRC =
endif
KERNELBUILDDIRS = kernel \
kernel/data kernel/propagator kernel/branch kernel/memory kernel/trace
ifeq "@enable_flatzinc@" "yes"
EXTRA_HEADERS = gecode/support/config.hpp gecode/flatzinc/parser.tab.hh
else
EXTRA_HEADERS = gecode/support/config.hpp
endif
#
# SEARCH COMPONENTS
#
SEARCHSRC0 = \
stop options cutoff engine \
dfs bab lds \
seq/rbs seq/dead seq/pbs par/pbs \
rbs pbs nogoods exception tracer \
cpprofiler/tracer
SEARCHHDR0 = \
statistics.hpp stop.hpp options.hpp cutoff.hpp \
support.hh worker.hh exception.hpp engine.hpp base.hpp \
nogoods.hh nogoods.hpp build.hpp traits.hpp sebs.hpp \
seq/path.hh seq/path.hpp seq/dfs.hh seq/dfs.hpp \
seq/bab.hh seq/bab.hpp seq/lds.hh seq/lds.hpp \
seq/rbs.hh seq/rbs.hpp seq/dead.hh \
seq/pbs.hh seq/pbs.hpp \
par/path.hh par/path.hpp par/engine.hh par/engine.hpp \
par/dfs.hh par/dfs.hpp par/bab.hh par/bab.hpp \
par/pbs.hh par/pbs.hpp \
dfs.hpp bab.hpp lds.hpp rbs.hpp pbs.hpp \
relax.hh tracer.hpp trace-recorder.hpp \
cpprofiler/message.hpp cpprofiler/connector.hpp
SEARCHSRC = $(SEARCHSRC0:%=gecode/search/%.cpp)
SEARCHHDR = gecode/search.hh $(SEARCHHDR0:%=gecode/search/%)
SEARCHOBJ = $(SEARCHSRC:%.cpp=%$(OBJSUFFIX))
ifeq "@enable_search@" "yes"
export SEARCHDLL = $(LIBPREFIX)@SEARCH@$(DLLSUFFIX)
export SEARCHSTATICLIB = $(LIBPREFIX)@SEARCH@$(STATICLIBSUFFIX)
export SEARCHLIB = $(LIBPREFIX)@SEARCH@$(LIBSUFFIX)
export LINKSEARCH = $(LINKPREFIX)@SEARCH@$(LINKSUFFIX)
ifeq "@need_soname@" "yes"
export SEARCHSONAME = \
@WLSONAME@$(LIBPREFIX)@SEARCH@$(SOSUFFIX)
else
export SEARCHSONAME =
ifeq "@enable_resource@" "yes"
export SEARCHRC = $(LIBPREFIX)@SEARCH@$(RCSUFFIX)
export SEARCHRES = $(LIBPREFIX)@SEARCH@$(RESSUFFIX)
else
export SEARCHRES =
export SEARCHRC =
endif
endif
else
export SEARCHDLL =
export SEARCHSTATICLIB =
export SEARCHLIB =
export LINKSEARCH =
export SEARCHRES =
export SEARCHRC =
endif
SEARCHBUILDDIRS = search search/seq search/par search/cpprofiler
#
# INTEGER COMPONENTS
#
INTSRC0 = \
int-set.cpp var-imp/int.cpp var-imp/bool.cpp var/int.cpp \
var/bool.cpp array.cpp bool.cpp bool/eqv.cpp \
extensional/dfa.cpp extensional/tuple-set.cpp \
extensional-regular.cpp extensional-tuple-set.cpp \
dom.cpp rel.cpp precede.cpp element.cpp count.cpp \
arithmetic.cpp exec.cpp \
exec/when.cpp element/pair.cpp \
linear/int-post.cpp linear-int.cpp \
linear/bool-post.cpp linear-bool.cpp \
branch.cpp distinct/eqite.cpp distinct/cbs.cpp \
distinct.cpp sorted.cpp gcc.cpp \
channel.cpp channel/link-single.cpp channel/link-multi.cpp \
unshare.cpp sequence.cpp \
bin-packing.cpp bin-packing/propagate.cpp \
bin-packing/conflict-graph.cpp \
order.cpp order/propagate.cpp \
unary.cpp cumulative.cpp cumulatives.cpp \
circuit.cpp no-overlap.cpp nvalues.cpp \
member.cpp branch/action.cpp branch/chb.cpp \
arithmetic/mult.cpp \
branch/view-sel.cpp branch/val-sel-commit.cpp \
branch/view-values.cpp \
relax.cpp \
ldsb.cpp ldsb/sym-imp.cpp ldsb/sym-obj.cpp \
trace.cpp trace/tracer.cpp \
exception.cpp
INTHDR0 = \
limits.hpp support-values.hh support-values.hpp \
idx-view.hh idx-view.hpp div.hh div.hpp \
exec.hh exec/when.hpp \
arithmetic/abs.hpp arithmetic/max.hpp arithmetic/argmax.hpp \
arithmetic/mult.hpp arithmetic/divmod.hpp \
arithmetic/pow-ops.hpp arithmetic/pow.hpp arithmetic/nroot.hpp \
bool/or.hpp bool/eq.hpp bool/lq.hpp bool/eqv.hpp bool/base.hpp \
bool/clause.hpp bool/ite.hpp \
precede.hh precede/single.hpp \
branch/traits.hpp branch/var.hpp branch/val.hpp branch/assign.hpp \
branch/view-values.hpp branch/merit.hpp \
branch/val-sel.hpp branch/val-commit.hpp branch/ngl.hpp \
branch/cbs.hpp branch.hpp \
count.hh count/rel.hpp \
count/int-base.hpp count/int-eq.hpp \
count/int-gq.hpp count/int-lq.hpp \
count/view-base.hpp count/view-eq.hpp \
count/view-gq.hpp count/view-lq.hpp \
view-val-graph.hh view-val-graph/graph.hpp \
view-val-graph/bi-link.hpp view-val-graph/comb-ptr-flag.hpp \
view-val-graph/edge.hpp view-val-graph/node.hpp \
view-val-graph/iter-prune-val.hpp \
distinct/graph.hpp distinct/dom-ctrl.hpp \
distinct/bnd.hpp distinct/dom.hpp \
distinct/val.hpp distinct/ter-dom.hpp \
distinct/cbs.hpp \
distinct/eqite.hpp \
dom/range.hpp dom/set.hpp \
element/int.hpp element/view.hpp element/pair.hpp \
gcc/bnd.hpp gcc/dom.hpp gcc/bnd-sup.hpp gcc/dom-sup.hpp \
gcc/val.hpp gcc/view.hpp gcc/post.hpp \
linear/post.hpp \
linear/int-noview.hpp linear/int-bin.hpp linear/int-ter.hpp \
linear/int-nary.hpp linear/int-dom.hpp \
linear/bool-int.hpp linear/bool-view.hpp linear/bool-scale.hpp \
extensional/dfa.hpp extensional/layered-graph.hpp \
extensional/tuple-set.hpp extensional/compact.hpp \
extensional/tiny-bit-set.hpp extensional/bit-set.hpp \
extensional.hpp \
rel/eq.hpp rel/lex.hpp rel/lq-le.hpp rel/nq.hpp \
sorted/matching.hpp sorted/narrowing.hpp \
sorted/order.hpp sorted/propagate.hpp sorted/sortsup.hpp \
int-set-1.hpp int-set-2.hpp var-imp/delta.hpp var/print.hpp var/bool.hpp \
var-imp/int.hpp var-imp/bool.hpp var/int.hpp \
view/bool.hpp view/cached.hpp view/constint.hpp view/zero.hpp view/int.hpp \
view/minus.hpp view/print.hpp view/neg-bool.hpp view/bool-test.hpp \
view/offset.hpp view/rel-test.hpp view/scale.hpp view/iter.hpp \
arithmetic.hh array.hpp array-traits.hpp bool.hh branch.hh \
distinct.hh dom.hh \
element.hh exception.hpp gcc.hh linear.hh \
reify.hpp propagator.hpp extensional.hh rel.hh \
sorted.hh var-imp.hpp view.hpp ipl.hpp irt.hpp \
channel.hh channel.hpp channel/dom.hpp channel/val.hpp \
channel/base.hpp channel/link-single.hpp channel/link-multi.hpp \
sequence.hh sequence/int.hpp sequence/view.hpp \
sequence/set-op.hpp sequence/violations.hpp \
bin-packing.hh bin-packing/propagate.hpp \
bin-packing/conflict-graph.hpp \
task.hh task/fwd-to-bwd.hpp task/array.hpp task/sort.hpp \
task/iter.hpp task/tree.hpp task/purge.hpp task/prop.hpp \
task/man-to-opt.hpp task/event.hpp \
order.hh order/propagate.hpp \
unary.hh unary/task.hpp unary/task-view.hpp \
unary/tree.hpp unary/overload.hpp unary/detectable.hpp \
unary/time-tabling.hpp unary/not-first-not-last.hpp \
unary/edge-finding.hpp unary/subsumption.hpp \
unary/man-prop.hpp unary/opt-prop.hpp unary/post.hpp \
cumulative.hh cumulative/man-prop.hpp cumulative/opt-prop.hpp \
cumulative/task-view.hpp cumulative/overload.hpp \
cumulative/time-tabling.hpp cumulative/task.hpp \
cumulative/edge-finding.hpp cumulative/post.hpp \
cumulative/tree.hpp cumulative/limits.hpp \
cumulative/subsumption.hpp \
cumulatives.hh cumulatives/val.hpp \
circuit.hh circuit/base.hpp circuit/val.hpp circuit/dom.hpp \
no-overlap.hh no-overlap/dim.hpp no-overlap/box.hpp \
no-overlap/base.hpp no-overlap/man.hpp no-overlap/opt.hpp \
nvalues.hh nvalues/range-event.hpp \
nvalues/sym-bit-matrix.hpp nvalues/graph.hpp \
nvalues/bool-base.hpp nvalues/bool-eq.hpp \
nvalues/bool-lq.hpp nvalues/bool-gq.hpp \
nvalues/int-base.hpp nvalues/int-eq.hpp \
nvalues/int-lq.hpp nvalues/int-gq.hpp \
val-set.hh val-set.hpp \
member.hh member/prop.hpp member/re-prop.hpp \
branch/afc.hpp branch/action.hpp branch/chb.hpp \
ldsb.hh ldsb/brancher.hpp ldsb/sym-imp.hpp \
trace.hpp \
trace/bool-trace-view.hpp trace/int-trace-view.hpp \
trace/bool-delta.hpp trace/int-delta.hpp trace/traits.hpp
INTSRC = $(INTSRC0:%=gecode/int/%)
INTHDR = gecode/int.hh $(INTHDR0:%=gecode/int/%)
INTOBJ = $(INTSRC:%.cpp=%$(OBJSUFFIX))
ifeq "@enable_int_vars@" "yes"
export INTDLL = $(LIBPREFIX)@INT@$(DLLSUFFIX)
export INTSTATICLIB = $(LIBPREFIX)@INT@$(STATICLIBSUFFIX)
export INTLIB = $(LIBPREFIX)@INT@$(LIBSUFFIX)
export LINKINT = $(LINKPREFIX)@INT@$(LINKSUFFIX)
ifeq "@need_soname@" "yes"
export INTSONAME = \
@WLSONAME@$(LIBPREFIX)@INT@$(SOSUFFIX)
else
export INTSONAME =
endif
ifeq "@enable_resource@" "yes"
export INTRC = $(LIBPREFIX)@INT@$(RCSUFFIX)
export INTRES = $(LIBPREFIX)@INT@$(RESSUFFIX)
else
export INTRES =
export INTRC =
endif
else
export INTDLL =
export INTSTATICLIB =
export INTLIB =
export LINKINT =
export INTRES =
export INTRC =
endif
INTBUILDDIRS = \
int int/var int/var-imp int/view int/extensional \
int/channel int/arithmetic int/linear int/bool int/branch int/exec \
int/element int/sequence int/bin-packing \
int/unary int/cumulative int/cumulatives int/task \
int/ldsb int/distinct int/trace int/order
#
# FLOAT COMPONENTS
#
FLOATSRC0 = \
var/float.cpp var-imp/float.cpp \
arithmetic.cpp array.cpp branch.cpp rel.cpp linear.cpp \
linear/post.cpp bool.cpp channel.cpp \
transcendental.cpp trigonometric.cpp \
branch/action.cpp branch/chb.cpp rounding.cpp exec.cpp \
branch/val-sel-commit.cpp branch/view-sel.cpp dom.cpp \
relax.cpp \
trace.cpp trace/tracer.cpp \
exception.cpp
FLOATHDR0 = \
var-imp.hpp array.hpp array-traits.hpp limits.hpp exception.hpp \
view.hpp view/float.hpp view/minus.hpp view/offset.hpp \
view/scale.hpp view/print.hpp view/rel-test.hpp \
var-imp/float.hpp var-imp/delta.hpp \
var/float.hpp var/print.hpp linear.hh linear/nary.hpp \
arithmetic.hh arithmetic/sqr-sqrt.hpp arithmetic/pow-nroot.hpp \
arithmetic/mult.hpp arithmetic/div.hpp arithmetic/min-max.hpp \
arithmetic/abs.hpp \
channel.hh channel.hpp channel/channel.hpp \
transcendental.hh transcendental/exp-log.hpp trigonometric.hh \
trigonometric/sincos.hpp trigonometric/asinacos.hpp \
trigonometric/tanatan.hpp \
rel.hh rel/eq.hpp rel/lq-le.hpp rel/nq.hpp \
bool.hh bool/ite.hpp \
branch.hh branch/afc.hpp branch/action.hpp branch/chb.hpp \
branch/traits.hpp branch.hpp \
branch/var.hpp branch/val.hpp branch/assign.hpp \
branch/val-commit.hpp branch/val-sel.hpp branch/merit.hpp \
num.hpp val.hpp rounding.hpp nextafter.hpp \
trace.hpp trace/trace-view.hpp trace/delta.hpp trace/traits.hpp
FLOATSRC = $(FLOATSRC0:%=gecode/float/%)
FLOATHDR = gecode/float.hh $(FLOATHDR0:%=gecode/float/%)
FLOATOBJ = $(FLOATSRC:%.cpp=%$(OBJSUFFIX))
ifeq "@enable_float_vars@" "yes"
export FLOATDLL = $(LIBPREFIX)@FLOAT@$(DLLSUFFIX)
export FLOATSTATICLIB = $(LIBPREFIX)@FLOAT@$(STATICLIBSUFFIX)
export FLOATLIB = $(LIBPREFIX)@FLOAT@$(LIBSUFFIX)
export LINKFLOAT = $(LINKPREFIX)@FLOAT@$(LINKSUFFIX)
ifeq "@need_soname@" "yes"
export FLOATSONAME = \
@WLSONAME@$(LIBPREFIX)@FLOAT@$(SOSUFFIX)
else
export FLOATSONAME =
endif
ifeq "@enable_resource@" "yes"
export FLOATRC = $(LIBPREFIX)@FLOAT@$(RCSUFFIX)
export FLOATRES = $(LIBPREFIX)@FLOAT@$(RESSUFFIX)
else
export FLOATRES =
export FLOATRC =
endif
else
export FLOATDLL =
export FLOATSTATICLIB =
export FLOATLIB =
export LINKFLOAT =
export FLOATRES =
export FLOATRC =
endif
FLOATBUILDDIRS = \
float float/var float/var-imp float/view \
float/linear float/branch float/rel float/branch \
float/arithmetic float/transcendental float/trigonometric \
float/trace float/channel
#
# SET COMPONENTS
#
SETSRC0 = \
branch.cpp cardinality.cpp convex.cpp convex/conv.cpp convex/hull.cpp \
dom.cpp rel.cpp \
rel-op.cpp rel-op-ternary.cpp rel-op-singleton.cpp \
rel-op/post-compl.cpp rel-op/post-nocompl.cpp \
rel-op/post-compl-cvv.cpp rel-op/post-nocompl-cvv.cpp \
rel-op/post-compl-vvc.cpp rel-op/post-nocompl-vvc.cpp \
rel-op/post-compl-cvc.cpp rel-op/post-nocompl-cvc.cpp \
rel-op-const-vvc.cpp rel-op-const-vcv.cpp rel-op-const-vcc.cpp \
rel-op-const-cvc.cpp rel-op-const-cvv.cpp \
int.cpp channel.cpp bool.cpp \
element.cpp sequence.cpp \
distinct.cpp distinct/atmostOne.cpp \
precede.cpp \
sequence/seq.cpp sequence/seq-u.cpp array.cpp var-imp/set.cpp \
var-imp/integerset.cpp var/set.cpp \
exec.cpp branch/action.cpp branch/chb.cpp branch/view-sel.cpp \
branch/val-sel-commit.cpp branch/ngl.cpp \
ldsb.cpp ldsb/sym-imp.cpp \
relax.cpp \
trace.cpp trace/tracer.cpp \
exception.cpp
SETHDR0 = \
limits.hpp \
view.hpp exception.hpp int.hh int.hpp element.hh var-imp.hpp \
int/card.hpp \
int/minmax.hpp int/weights.hpp \
channel/sorted.hpp channel/int.hpp channel/bool.hpp channel/set.hpp \
element/inter.hpp element/union.hpp \
element/unionConst.hpp \
element/disjoint.hpp array.hpp array-traits.hpp \
var-imp/set.hpp var-imp/integerset.hpp \
var-imp/delta.hpp var-imp/iter.hpp \
var/set.hpp var/print.hpp \
view/complement.hpp view/const.hpp view/set.hpp view/singleton.hpp \
view/cached.hpp view/print.hpp \
rel/subset.hpp rel/re-subset.hpp rel/eq.hpp rel/nq.hpp rel/re-eq.hpp \
rel/lq.hpp rel/re-lq.hpp \
rel/common.hpp rel/nosubset.hpp sequence.hh \
rel-op/union.hpp rel-op/partition.hpp rel-op/subofunion.hpp \
rel-op/inter.hpp rel-op/superofinter.hpp \
rel-op/post.hpp rel-op/common.hpp rel.hh \
distinct.hh distinct/atmostOne.hpp \
sequence/seq.hpp sequence/seq-u.hpp \
sequence/common.hpp convex/conv.hpp convex/hull.hpp convex.hh \
precede.hh precede/single.hpp \
rel-op.hh \
branch.hh branch/afc.hpp branch/action.hpp branch/chb.hpp \
branch/traits.hpp branch.hpp \
branch/var.hpp branch/val.hpp branch/assign.hpp \
branch/merit.hpp branch/val-commit.hpp branch/val-sel.hpp \
branch/ngl.hpp \
ldsb.hh ldsb/brancher.hpp channel.hh \
trace.hpp trace/trace-view.hpp trace/delta.hpp trace/traits.hpp
SETSRC = $(SETSRC0:%=gecode/set/%)
SETHDR = gecode/set.hh $(SETHDR0:%=gecode/set/%)
SETOBJ = $(SETSRC:%.cpp=%$(OBJSUFFIX))
ifeq "@enable_set_vars@" "yes"
export SETDLL = $(LIBPREFIX)@SET@$(DLLSUFFIX)
export SETSTATICLIB = $(LIBPREFIX)@SET@$(STATICLIBSUFFIX)
export SETLIB = $(LIBPREFIX)@SET@$(LIBSUFFIX)
export LINKSET = $(LINKPREFIX)@SET@$(LINKSUFFIX)
ifeq "@need_soname@" "yes"
export SETSONAME = \
@WLSONAME@$(LIBPREFIX)@SET@$(SOSUFFIX)
else
export SETSONAME =
endif
ifeq "@enable_resource@" "yes"
export SETRC = $(LIBPREFIX)@SET@$(RCSUFFIX)
export SETRES = $(LIBPREFIX)@SET@$(RESSUFFIX)
else
export SETRES =
export SETRC =
endif
else
export SETDLL =
export SETSTATICLIB =
export SETLIB =
export LINKSET =
export SETRES =
export SETRC =
endif
SETBUILDDIRS = \
set set/convex set/distinct set/int set/rel set/rel-op \
set/element set/sequence set/var set/var-imp set/view \
set/branch set/channel set/ldsb set/trace
#
# MINIMODEL COMPONENTS
#
MMSRC0 = \
int-expr.cpp int-rel.cpp int-arith.cpp bool-expr.cpp \
set-expr.cpp set-rel.cpp dom.cpp \
float-expr.cpp float-rel.cpp float-arith.cpp \
reg.cpp optimize.cpp exception.cpp ipl.cpp
MMHDR0 = \
int-expr.hpp int-rel.hpp float-expr.hpp float-rel.hpp \
bool-expr.hpp set-expr.hpp set-rel.hpp \
exception.hpp matrix.hpp \
optimize.hpp reg.hpp ldsb.hpp channel.hpp aliases.hpp \
ipl.hpp
MMSRC = $(MMSRC0:%=gecode/minimodel/%)
MMHDR = gecode/minimodel.hh $(MMHDR0:%=gecode/minimodel/%)
MMOBJ = $(MMSRC:%.cpp=%$(OBJSUFFIX))
MMSBJ = $(MMSRC:%.cpp=%$(SBJSUFFIX))
ifeq "@enable_minimodel@" "yes"
export MMDLL = $(LIBPREFIX)@MM@$(DLLSUFFIX)
export MMSTATICLIB = $(LIBPREFIX)@MM@$(STATICLIBSUFFIX)
export MMLIB = $(LIBPREFIX)@MM@$(LIBSUFFIX)
export LINKMM = $(LINKPREFIX)@MM@$(LINKSUFFIX)
ifeq "@need_soname@" "yes"
export MMSONAME = \
@WLSONAME@$(LIBPREFIX)@MM@$(SOSUFFIX)
else
export MMSONAME =
endif
ifeq "@enable_resource@" "yes"
export MMRC = $(LIBPREFIX)@MM@$(RCSUFFIX)
export MMRES = $(LIBPREFIX)@MM@$(RESSUFFIX)
else
export MMRES =
export MMRC =
endif
else
export MMDLL =
export MMSTATICLIB =
export MMLIB =
export LINKMM =
export MMRES =
export MMRC =
endif
MMBUILDDIRS = minimodel
#
# DRIVER COMPONENTS
#
DRIVERSRC0 = options.cpp script.cpp
DRIVERHDR0 = options.hpp script.hpp
DRIVERSRC = $(DRIVERSRC0:%=gecode/driver/%)
DRIVERHDR = gecode/driver.hh $(DRIVERHDR0:%=gecode/driver/%)
DRIVEROBJ = $(DRIVERSRC:%.cpp=%$(OBJSUFFIX))
DRIVERSBJ = $(DRIVERSRC:%.cpp=%$(SBJSUFFIX))
ifeq "@enable_driver@" "yes"
export DRIVERDLL = $(LIBPREFIX)@DRIVER@$(DLLSUFFIX)
export DRIVERSTATICLIB = $(LIBPREFIX)@DRIVER@$(STATICLIBSUFFIX)
export DRIVERLIB = $(LIBPREFIX)@DRIVER@$(LIBSUFFIX)
export LINKDRIVER = $(LINKPREFIX)@DRIVER@$(LINKSUFFIX)
ifeq "@need_soname@" "yes"
export DRIVERSONAME = \
@WLSONAME@$(LIBPREFIX)@DRIVER@$(SOSUFFIX)
else
export DRIVERSONAME =
endif
ifeq "@enable_resource@" "yes"
export DRIVERRC = $(LIBPREFIX)@DRIVER@$(RCSUFFIX)
export DRIVERRES = $(LIBPREFIX)@DRIVER@$(RESSUFFIX)
else
export DRIVERRES =
export DRIVERRC =
endif
else
export DRIVERDLL =
export DRIVERSTATICLIB =
export DRIVERLIB =
export LINKDRIVER =
export DRIVERRES =
export DRIVERRC =
endif
DRIVERBUILDDIRS = driver
#
# ITERATOR HEADERS
#
ITERHDR0 = \
ranges-add ranges-append ranges-array ranges-cache \
ranges-compl ranges-diff ranges-empty \
ranges-inter ranges-minmax ranges-minus \
ranges-offset ranges-operations ranges-rangelist \
ranges-scale ranges-singleton ranges-singleton-append \
ranges-size ranges-union ranges-values \
ranges-negative ranges-positive ranges-map \
ranges-list \
values-array values-minus values-offset values-ranges \
values-positive values-negative \
values-singleton values-unique values-inter \
values-union values-map values-bitset values-list \
values-bitsetoffset
ITERHDR = gecode/iter.hh \
$(ITERHDR0:%=gecode/iter/%.hpp)
#
# GIST
#
GISTHDR0 = \
drawingcursor.hh drawingcursor.hpp \
gist.hpp gecodelogo.hh node.hh node.hpp \
nodecursor.hh nodecursor.hpp nodevisitor.hh \
nodevisitor.hpp layoutcursor.hh layoutcursor.hpp \
spacenode.hh spacenode.hpp qtgist.hh \
textoutput.hh treecanvas.hh zoomToFitIcon.hpp \
visualnode.hh visualnode.hpp nodestats.hh \
nodewidget.hh mainwindow.hh preferences.hh \
stopbrancher.hh
GISTSRC0 = \
drawingcursor.cpp gist.cpp gecodelogo.cpp node.cpp \
spacenode.cpp \
textoutput.cpp treecanvas.cpp qtgist.cpp visualnode.cpp nodestats.cpp \
nodewidget.cpp mainwindow.cpp preferences.cpp stopbrancher.cpp
GISTMOCSRC0 = \
moc_treecanvas.cpp moc_qtgist.cpp moc_mainwindow.cpp moc_textoutput.cpp\
moc_preferences.cpp moc_nodestats.cpp
GISTSRC = $(GISTSRC0:%=gecode/gist/%)
GISTMOCSRC = $(GISTMOCSRC0:%=gecode/gist/%)
GISTHDR = $(GISTHDR0:%=gecode/gist/%) gecode/gist.hh
GISTOBJ = $(GISTSRC:%.cpp=%$(OBJSUFFIX)) $(GISTMOCSRC:%.cpp=%$(OBJSUFFIX))
GISTSBJ = $(GISTSRC:%.cpp=%$(SBJSUFFIX)) $(GISTMOCSRC:%.cpp=%$(SBJSUFFIX))
GISTBUILDDIRS = gist
ifeq "@enable_gist@" "yes"
export GISTDLL = $(LIBPREFIX)@GIST@$(DLLSUFFIX)
export GISTSTATICLIB = $(LIBPREFIX)@GIST@$(STATICLIBSUFFIX)
export GISTLIB = $(LIBPREFIX)@GIST@$(LIBSUFFIX)
export LINKGIST = $(LINKPREFIX)@GIST@$(LINKSUFFIX)
ifeq "@need_soname@" "yes"
export GISTSONAME = \
@WLSONAME@$(LIBPREFIX)@GIST@$(SOSUFFIX)
else
export GISTSONAME =
endif
ifeq "@enable_resource@" "yes"
export GISTRC = $(LIBPREFIX)@GIST@$(RCSUFFIX)
export GISTRES = $(LIBPREFIX)@GIST@$(RESSUFFIX)
else
export GISTRES =
export GISTRC =
endif
else
export GISTDLL =
export GISTSTATICLIB =
export GISTLIB =
export LINKGIST =
export GISTSONAME =
export GISTRES =
export GISTRC =
endif
#
# FLATZINC
#
FLATZINCSRC0 = flatzinc.cpp registry.cpp branch.cpp
FLATZINC_GENSRC0 = parser.tab.cpp lexer.yy.cpp
FLATZINCHDR0 = ast.hh conexpr.hh option.hh parser.hh \
plugin.hh registry.hh symboltable.hh varspec.hh \
branch.hh branch.hpp
FLATZINCSRC = $(FLATZINCSRC0:%=gecode/flatzinc/%)
FLATZINC_GENSRC = $(FLATZINC_GENSRC0:%=gecode/flatzinc/%)
FLATZINCHDR = $(FLATZINCHDR0:%=gecode/flatzinc/%) gecode/flatzinc.hh
FLATZINCOBJ = \
$(FLATZINCSRC:%.cpp=%$(OBJSUFFIX)) \
$(FLATZINC_GENSRC:%.cpp=%$(OBJSUFFIX))
FLATZINCEXESRC0 = fzn-gecode.cpp
FLATZINCEXESRC = $(FLATZINCEXESRC0:%=tools/flatzinc/%)
FLATZINCEXEOBJ = $(FLATZINCEXESRC:%.cpp=%$(OBJSUFFIX))
FLATZINCALLSRC = $(FLATZINCSRC) $(FLATZINCEXESRC)
FLATZINCBUILDDIRS = gecode/flatzinc tools/flatzinc
ifeq "@enable_flatzinc@" "yes"
export FLATZINCDLL = $(LIBPREFIX)@FLATZINC@$(DLLSUFFIX)
export FLATZINCSTATICLIB = $(LIBPREFIX)@FLATZINC@$(STATICLIBSUFFIX)
export FLATZINCLIB = $(LIBPREFIX)@FLATZINC@$(LIBSUFFIX)
export LINKFLATZINC = $(LINKPREFIX)@FLATZINC@$(LINKSUFFIX)
export FLATZINCMZNLIB = gecode/flatzinc/mznlib
FLATZINCEXE = tools/flatzinc/fzn-gecode$(EXESUFFIX)
ifeq "@need_soname@" "yes"
export FLATZINCSONAME = @WLSONAME@$(LIBPREFIX)@FLATZINC@$(SOSUFFIX)
else
export FLATZINCSONAME =
endif
ifeq "@enable_resource@" "yes"
export FLATZINCRC = $(LIBPREFIX)@FLATZINC@$(RCSUFFIX)
export FLATZINCRES = $(LIBPREFIX)@FLATZINC@$(RESSUFFIX)
else
export FLATZINCRES =
export FLATZINCRC =
endif
else
export FLATZINCDLL =
export FLATZINCSTATICLIB =
export FLATZINCLIB =
export LINKFLATZINC =
export FLATZINCSONAME =
export FLATZINCMZNLIB =
export FLATZINCRES =
export FLATZINCRC =
FLATZINCEXE =
endif
#
# EXAMPLES
#
INTEXAMPLEHDR0 = \
scowl
INTEXAMPLESRC0 = \
alpha bacp bibd donald efpa eq20 golomb-ruler \
graph-color grocery ind-set magic-sequence magic-square \
money ortho-latin partition photo queens sudoku sudoku-advanced kakuro \
nonogram pentominoes crowded-chess black-hole \
minesweeper domino steel-mill sports-league \
all-interval langford-number warehouses radiotherapy \
word-square crossword open-shop car-sequencing sat \
bin-packing knights tsp perfect-square schurs-lemma \
dominating-queens colored-matrix multi-bin-packing \
qcp job-shop
INTEXAMPLEHDR = $(INTEXAMPLEHDR0:%=examples/%.hpp)
INTEXAMPLESRC = $(INTEXAMPLESRC0:%=examples/%.cpp)
ifeq "@enable_int_vars@" "yes"
INTEXAMPLEEXE = $(INTEXAMPLESRC:%.cpp=%$(EXESUFFIX))
else
INTEXAMPLEEXE =
endif
MPFRFLOATEXAMPLESRC0 = \
archimedean-spiral golden-spiral
MPFRFLOATEXAMPLESRC = $(MPFRFLOATEXAMPLESRC0:%=examples/%.cpp)
ifeq "@enable_float_vars@" "yes"
ifeq "@enable_mpfr@" "yes"
MPFRFLOATEXAMPLEEXE = $(MPFRFLOATEXAMPLESRC:%.cpp=%$(EXESUFFIX))
else
MPFRFLOATEXAMPLEEXE =
endif
endif
FLOATEXAMPLESRC0 = \
cartesian-heart descartes-folium
FLOATEXAMPLESRC = $(FLOATEXAMPLESRC0:%=examples/%.cpp)
ifeq "@enable_float_vars@" "yes"
FLOATEXAMPLEEXE = $(FLOATEXAMPLESRC:%.cpp=%$(EXESUFFIX))
else
FLOATEXAMPLEEXE =
endif
SETEXAMPLESRC0 = \
crew golf hamming steiner queen-armies
SETEXAMPLESRC = $(SETEXAMPLESRC0:%=examples/%.cpp)
ifeq "@enable_set_vars@" "yes"
SETEXAMPLEEXE = $(SETEXAMPLESRC:%.cpp=%$(EXESUFFIX))
else
SETEXAMPLEEXE =
endif
EXAMPLEBUILDDIRS = examples
EXAMPLEEXE = \
$(INTEXAMPLEEXE) $(SETEXAMPLEEXE) $(FLOATEXAMPLEEXE) $(MPFRFLOATEXAMPLEEXE)
#
# THIRD PARTY SOFTWARE
#
BOOSTHDR = \
config/compiler/borland.hpp config/compiler/clang.hpp \
config/compiler/codegear.hpp config/compiler/comeau.hpp \
config/compiler/common_edg.hpp config/compiler/compaq_cxx.hpp \
config/compiler/digitalmars.hpp config/compiler/gcc.hpp \
config/compiler/gcc_xml.hpp config/compiler/greenhills.hpp \
config/compiler/hp_acc.hpp config/compiler/intel.hpp \
config/compiler/kai.hpp config/compiler/metrowerks.hpp \
config/compiler/mpw.hpp config/compiler/nvcc.hpp \
config/compiler/pathscale.hpp config/compiler/pgi.hpp \
config/compiler/sgi_mipspro.hpp config/compiler/sunpro_cc.hpp \
config/compiler/vacpp.hpp config/compiler/visualc.hpp \
config/no_tr1/cmath.hpp config/no_tr1/utility.hpp \
config/platform/aix.hpp config/platform/amigaos.hpp \
config/platform/beos.hpp config/platform/bsd.hpp \
config/platform/cygwin.hpp config/platform/hpux.hpp \
config/platform/irix.hpp config/platform/linux.hpp \
config/platform/macos.hpp config/platform/qnxnto.hpp \
config/platform/solaris.hpp config/platform/symbian.hpp \
config/platform/vms.hpp config/platform/vxworks.hpp \
config/platform/win32.hpp config/posix_features.hpp \
config/select_compiler_config.hpp \
config/select_platform_config.hpp \
config/select_stdlib_config.hpp \
config/stdlib/dinkumware.hpp config/stdlib/libcomo.hpp \
config/stdlib/libcpp.hpp config/stdlib/libstdcpp3.hpp \
config/stdlib/modena.hpp config/stdlib/msl.hpp \
config/stdlib/roguewave.hpp config/stdlib/sgi.hpp \
config/stdlib/stlport.hpp config/stdlib/vacpp.hpp \
config/suffix.hpp config/user.hpp config.hpp \
detail/endian.hpp detail/limits.hpp \
numeric/interval/arith.hpp \
numeric/interval/arith2.hpp \
numeric/interval/arith3.hpp \
numeric/interval/checking.hpp \
numeric/interval/compare/certain.hpp \
numeric/interval/compare/explicit.hpp \
numeric/interval/compare/lexicographic.hpp \
numeric/interval/compare/possible.hpp \
numeric/interval/compare/set.hpp \
numeric/interval/compare.hpp \
numeric/interval/constants.hpp \
numeric/interval/detail/alpha_rounding_control.hpp \
numeric/interval/detail/bcc_rounding_control.hpp \
numeric/interval/detail/bugs.hpp \
numeric/interval/detail/c99sub_rounding_control.hpp \
numeric/interval/detail/c99_rounding_control.hpp \
numeric/interval/detail/division.hpp \
numeric/interval/detail/ia64_rounding_control.hpp \
numeric/interval/detail/interval_prototype.hpp \
numeric/interval/detail/msvc_rounding_control.hpp \
numeric/interval/detail/ppc_rounding_control.hpp \
numeric/interval/detail/sparc_rounding_control.hpp \
numeric/interval/detail/test_input.hpp \
numeric/interval/detail/x86gcc_rounding_control.hpp \
numeric/interval/detail/x86_rounding_control.hpp \
numeric/interval/hw_rounding.hpp \
numeric/interval/interval.hpp \
numeric/interval/policies.hpp \
numeric/interval/rounded_arith.hpp \
numeric/interval/rounded_transc.hpp \
numeric/interval/rounding.hpp \
numeric/interval/transc.hpp \
numeric/interval/utility.hpp \
numeric/interval.hpp \
LICENSE_1_0.txt \
limits.hpp non_type.hpp type.hpp