aboutsummaryrefslogtreecommitdiff
path: root/math/fxt/pkg-plist
blob: 02207cd47c9cc2836adda46b55cbc070e5564cdb (plain) (blame)
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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
include/fxt/array-len.h
include/fxt/aux0-all.h
include/fxt/aux0/binomial.h
include/fxt/aux0/cayley-dickson-mult.h
include/fxt/aux0/cmult.h
include/fxt/aux0/csincos.h
include/fxt/aux0/factorial.h
include/fxt/aux0/fibonacci.h
include/fxt/aux0/gcd.h
include/fxt/aux0/ipow.h
include/fxt/aux0/ldn2rc.h
include/fxt/aux0/print-fixed.h
include/fxt/aux0/rand-idx.h
include/fxt/aux0/randf.h
include/fxt/aux0/sincos.h
include/fxt/aux0/sumdiff.h
include/fxt/aux0/swap.h
include/fxt/aux0/tex-line.h
include/fxt/aux0/version.h
include/fxt/aux1-all.h
include/fxt/aux1/arith1.h
include/fxt/aux1/bytescan.h
include/fxt/aux1/copy.h
include/fxt/aux1/num2str.h
include/fxt/aux1/wordgray.h
include/fxt/aux2-all.h
include/fxt/aux2/transpose.h
include/fxt/aux2/transpose2.h
include/fxt/bits-all.h
include/fxt/bits/average.h
include/fxt/bits/bin-to-sl-gray.h
include/fxt/bits/bin2naf.h
include/fxt/bits/bit-dragon-r13.h
include/fxt/bits/bit-dragon-r4.h
include/fxt/bits/bit-dragon-r5.h
include/fxt/bits/bit-dragon-r7.h
include/fxt/bits/bit-dragon-r9.h
include/fxt/bits/bit-dragon3.h
include/fxt/bits/bit-isolate.h
include/fxt/bits/bit-necklace.h
include/fxt/bits/bit-paper-fold.h
include/fxt/bits/bit-rll2.h
include/fxt/bits/bit-sl-gray.h
include/fxt/bits/bit2adic.h
include/fxt/bits/bit2pow.h
include/fxt/bits/bitasm-amd64.h
include/fxt/bits/bitasm-i386.h
include/fxt/bits/bitasm-sse.h
include/fxt/bits/bitasm.h
include/fxt/bits/bitblock.h
include/fxt/bits/bitbutterfly.h
include/fxt/bits/bitcombcolex.h
include/fxt/bits/bitcombminchange.h
include/fxt/bits/bitcombshifts.h
include/fxt/bits/bitcopy.h
include/fxt/bits/bitcount.h
include/fxt/bits/bitcyclic-dist.h
include/fxt/bits/bitcyclic-match.h
include/fxt/bits/bitcyclic-minmax.h
include/fxt/bits/bitcyclic-period.h
include/fxt/bits/bitcyclic-xor.h
include/fxt/bits/bitfibgray.h
include/fxt/bits/bitgather.h
include/fxt/bits/bitgraypermute.h
include/fxt/bits/bithigh-edge.h
include/fxt/bits/bithigh.h
include/fxt/bits/bitldeq.h
include/fxt/bits/bitlex.h
include/fxt/bits/bitlow-edge.h
include/fxt/bits/bitlow.h
include/fxt/bits/bitperiodic.h
include/fxt/bits/bitrotate.h
include/fxt/bits/bitseparate.h
include/fxt/bits/bitsequency.h
include/fxt/bits/bitset2set.h
include/fxt/bits/bitsperlong.h
include/fxt/bits/bitsubset-gray.h
include/fxt/bits/bitsubset.h
include/fxt/bits/bitsubsetq.h
include/fxt/bits/bitswap.h
include/fxt/bits/bittest.h
include/fxt/bits/bittransforms.h
include/fxt/bits/bitxtransforms.h
include/fxt/bits/bitzip-pairs.h
include/fxt/bits/bitzip.h
include/fxt/bits/blue-fixed-points.h
include/fxt/bits/branchless.h
include/fxt/bits/colormix-fl.h
include/fxt/bits/colormix.h
include/fxt/bits/colormixp.h
include/fxt/bits/crc32.h
include/fxt/bits/crc64.h
include/fxt/bits/cswap.h
include/fxt/bits/evenodd.h
include/fxt/bits/fibrep-subset-lexrev.h
include/fxt/bits/fibrep.h
include/fxt/bits/graycode.h
include/fxt/bits/graypower.h
include/fxt/bits/grsnegative.h
include/fxt/bits/hilbert.h
include/fxt/bits/ith-one-idx.h
include/fxt/bits/kolakoski-seq.h
include/fxt/bits/negbin.h
include/fxt/bits/nextgray.h
include/fxt/bits/parenwords.h
include/fxt/bits/parity.h
include/fxt/bits/pcrc64.h
include/fxt/bits/print-bin.h
include/fxt/bits/radix-2i.h
include/fxt/bits/radix-m1pi.h
include/fxt/bits/radix-m4.h
include/fxt/bits/revbin-upd.h
include/fxt/bits/revbin.h
include/fxt/bits/revgraycode.h
include/fxt/bits/tcrc64.h
include/fxt/bits/thue-morse.h
include/fxt/bits/tinyfactors.h
include/fxt/bits/zerobyte.h
include/fxt/bits/zorder.h
include/fxt/bmat-all.h
include/fxt/bmat/bitmat-funcs.h
include/fxt/bmat/bitmat-inline.h
include/fxt/bpol-all.h
include/fxt/bpol/all-irredpoly.h
include/fxt/bpol/bitpol-arith.h
include/fxt/bpol/bitpol-degree.h
include/fxt/bpol/bitpol-deriv.h
include/fxt/bpol/bitpol-factor.h
include/fxt/bpol/bitpol-gcd.h
include/fxt/bpol/bitpol-irred.h
include/fxt/bpol/bitpol-order.h
include/fxt/bpol/bitpol-primitive.h
include/fxt/bpol/bitpol-print.h
include/fxt/bpol/bitpol-squarefree.h
include/fxt/bpol/bitpol-srp.h
include/fxt/bpol/bitpolmod-arith.h
include/fxt/bpol/bitpolmod-minpoly.h
include/fxt/bpol/bitpolmod-solvequadratic.h
include/fxt/bpol/clhca.h
include/fxt/bpol/fcsr.h
include/fxt/bpol/gf2n-trace.h
include/fxt/bpol/gf2n.h
include/fxt/bpol/lfsr.h
include/fxt/bpol/lfsr64.h
include/fxt/bpol/lhca.h
include/fxt/bpol/mersenne-coprime.h
include/fxt/bpol/necklace2bitpol.h
include/fxt/bpol/normal-solvequadratic.h
include/fxt/bpol/normalbasis.h
include/fxt/bpol/normalpoly-dual.h
include/fxt/bpol/num-bitpol.h
include/fxt/bpol/poly-tab.h
include/fxt/chirpzt-all.h
include/fxt/chirpzt/chirpzt.h
include/fxt/comb-all.h
include/fxt/comb/acgray.h
include/fxt/comb/acyclic-map.h
include/fxt/comb/arith-3-progression.h
include/fxt/comb/arrangement-lex.h
include/fxt/comb/arrangement-rgs.h
include/fxt/comb/ascent-alt-rgs.h
include/fxt/comb/ascent-nonflat-rgs.h
include/fxt/comb/ascent-rgs-subset-lex.h
include/fxt/comb/ascent-rgs.h
include/fxt/comb/balanced-ordered-tree-lev-seq.h
include/fxt/comb/big-fact2perm.h
include/fxt/comb/binary-debruijn.h
include/fxt/comb/binary-huffman.h
include/fxt/comb/binary-necklace.h
include/fxt/comb/binary-sl-gray.h
include/fxt/comb/catalan-path-lex.h
include/fxt/comb/catalan-rgs-gray.h
include/fxt/comb/catalan-rgs-gslex.h
include/fxt/comb/catalan-rgs-subset-lex.h
include/fxt/comb/catalan-rgs-to-noncrossing-setpart-rgs.h
include/fxt/comb/catalan-rgs.h
include/fxt/comb/catalan-step-rgs-colex.h
include/fxt/comb/catalan-step-rgs-lex.h
include/fxt/comb/catalan-step-rgs-subset-lexrev.h
include/fxt/comb/catalan-step-rgs-to-paren-string.h
include/fxt/comb/catalan.h
include/fxt/comb/cayley-perm.h
include/fxt/comb/change-rgs.h
include/fxt/comb/check-kpermgen.h
include/fxt/comb/check-mixedradix.h
include/fxt/comb/check-permgen.h
include/fxt/comb/comb-print.h
include/fxt/comb/combination-chase.h
include/fxt/comb/combination-colex.h
include/fxt/comb/combination-emk.h
include/fxt/comb/combination-endo.h
include/fxt/comb/combination-enup.h
include/fxt/comb/combination-lex.h
include/fxt/comb/combination-mod.h
include/fxt/comb/combination-pref.h
include/fxt/comb/combination-rec.h
include/fxt/comb/combination-revdoor.h
include/fxt/comb/comp2comb.h
include/fxt/comb/composition-colex.h
include/fxt/comb/composition-colex2.h
include/fxt/comb/composition-dist-unimodal.h
include/fxt/comb/composition-ex-colex.h
include/fxt/comb/composition-ex-lex.h
include/fxt/comb/composition-nz-binary.h
include/fxt/comb/composition-nz-carlitz.h
include/fxt/comb/composition-nz-conj.h
include/fxt/comb/composition-nz-first-max.h
include/fxt/comb/composition-nz-gray.h
include/fxt/comb/composition-nz-gray2.h
include/fxt/comb/composition-nz-i-smooth.h
include/fxt/comb/composition-nz-left-2smooth.h
include/fxt/comb/composition-nz-left-smooth.h
include/fxt/comb/composition-nz-max.h
include/fxt/comb/composition-nz-min.h
include/fxt/comb/composition-nz-minc.h
include/fxt/comb/composition-nz-numparts.h
include/fxt/comb/composition-nz-odd-subset-lex.h
include/fxt/comb/composition-nz-odd.h
include/fxt/comb/composition-nz-rank.h
include/fxt/comb/composition-nz-restrpref.h
include/fxt/comb/composition-nz-rl.h
include/fxt/comb/composition-nz-smooth.h
include/fxt/comb/composition-nz-sorts.h
include/fxt/comb/composition-nz-sorts2-pp.h
include/fxt/comb/composition-nz-sorts2.h
include/fxt/comb/composition-nz-subset-lex.h
include/fxt/comb/composition-nz-superdiagonal.h
include/fxt/comb/composition-nz-upstep.h
include/fxt/comb/composition-nz-weakly-unimodal.h
include/fxt/comb/composition-nz.h
include/fxt/comb/composition-rank.h
include/fxt/comb/composition-unimodal.h
include/fxt/comb/cyclic-perm.h
include/fxt/comb/cyclic-words.h
include/fxt/comb/debruijn.h
include/fxt/comb/delta2gray.h
include/fxt/comb/descent-rgs.h
include/fxt/comb/dyck-gray.h
include/fxt/comb/dyck-gray2.h
include/fxt/comb/dyck-pref.h
include/fxt/comb/dyck-pref2.h
include/fxt/comb/dyck-rgs-subset-lex.h
include/fxt/comb/dyck-rgs.h
include/fxt/comb/endo-enup.h
include/fxt/comb/fact2num.h
include/fxt/comb/fact2num2perm.h
include/fxt/comb/fact2perm.h
include/fxt/comb/gray-compare.h
include/fxt/comb/gray-cycle-leaders.h
include/fxt/comb/hilbert-ndim-rec.h
include/fxt/comb/hilbert-ndim.h
include/fxt/comb/id-tree-lev-seq.h
include/fxt/comb/involution-zero-map-rgs.h
include/fxt/comb/is-arrangement-rgs.h
include/fxt/comb/is-ascent-rgs.h
include/fxt/comb/is-catalan-path.h
include/fxt/comb/is-catalan-rgs.h
include/fxt/comb/is-catalan-step-rgs.h
include/fxt/comb/is-cayley-perm.h
include/fxt/comb/is-change-rgs.h
include/fxt/comb/is-composition-nz.h
include/fxt/comb/is-descent-rgs.h
include/fxt/comb/is-dyck-rgs.h
include/fxt/comb/is-isoscent-rgs.h
include/fxt/comb/is-mixedradix-num.h
include/fxt/comb/is-motzkin-path.h
include/fxt/comb/is-motzkin-rgs.h
include/fxt/comb/is-motzkin-step-rgs.h
include/fxt/comb/is-noncrossing-setpart-rgs.h
include/fxt/comb/is-nonsquashing.h
include/fxt/comb/is-paren-position-word.h
include/fxt/comb/is-paren-string.h
include/fxt/comb/is-partition-asc.h
include/fxt/comb/is-partition-desc.h
include/fxt/comb/is-partition-rgs.h
include/fxt/comb/is-schroeder-path.h
include/fxt/comb/is-schroeder-rgs.h
include/fxt/comb/is-setpart-ccf-perm.h
include/fxt/comb/is-setpart-rgs.h
include/fxt/comb/is-shifted-young-tab-rgs.h
include/fxt/comb/is-smooth.h
include/fxt/comb/is-sorts-in-runs-sorted.h
include/fxt/comb/is-stack-sortable.h
include/fxt/comb/is-symmetric.h
include/fxt/comb/is-unimodal.h
include/fxt/comb/is-young-tab-rgs.h
include/fxt/comb/is-zero-map-rgs.h
include/fxt/comb/isoscent-rgs.h
include/fxt/comb/kperm-gray.h
include/fxt/comb/kperm-lex.h
include/fxt/comb/ksubset-gray.h
include/fxt/comb/ksubset-lex.h
include/fxt/comb/ksubset-rec.h
include/fxt/comb/ksubset-twoclose.h
include/fxt/comb/lex-compare.h
include/fxt/comb/lindenmayer-system.h
include/fxt/comb/lyndon-factorization.h
include/fxt/comb/lyndon-words.h
include/fxt/comb/map23-rgs.h
include/fxt/comb/mixedradix-colex.h
include/fxt/comb/mixedradix-endo-gray.h
include/fxt/comb/mixedradix-endo.h
include/fxt/comb/mixedradix-gray.h
include/fxt/comb/mixedradix-gray2.h
include/fxt/comb/mixedradix-gslex-alt.h
include/fxt/comb/mixedradix-gslex-alt2.h
include/fxt/comb/mixedradix-gslex.h
include/fxt/comb/mixedradix-gslex2.h
include/fxt/comb/mixedradix-lex.h
include/fxt/comb/mixedradix-modular-gray.h
include/fxt/comb/mixedradix-modular-gray2.h
include/fxt/comb/mixedradix-naf-gray.h
include/fxt/comb/mixedradix-naf-subset-lex.h
include/fxt/comb/mixedradix-naf.h
include/fxt/comb/mixedradix-restrpref.h
include/fxt/comb/mixedradix-rfact.h
include/fxt/comb/mixedradix-sl-gray.h
include/fxt/comb/mixedradix-sod-lex.h
include/fxt/comb/mixedradix-subset-lex.h
include/fxt/comb/mixedradix-subset-lexrev.h
include/fxt/comb/mixedradix.h
include/fxt/comb/monotonic-gray.h
include/fxt/comb/motzkin-nonflat-rgs-lex.h
include/fxt/comb/motzkin-path-lex.h
include/fxt/comb/motzkin-rgs-lex.h
include/fxt/comb/motzkin-step-rgs-lex.h
include/fxt/comb/mpartition.h
include/fxt/comb/mpartition2.h
include/fxt/comb/mset-kperm-lex.h
include/fxt/comb/mset-perm-gray.h
include/fxt/comb/mset-perm-lex-rec.h
include/fxt/comb/mset-perm-lex.h
include/fxt/comb/mset-perm-pref.h
include/fxt/comb/necklace.h
include/fxt/comb/num-compositions.h
include/fxt/comb/num-necklaces.h
include/fxt/comb/num2perm.h
include/fxt/comb/ordered-tree-branches.h
include/fxt/comb/ordered-tree-branching-seq.h
include/fxt/comb/ordered-tree-lev-seq.h
include/fxt/comb/paren-gray.h
include/fxt/comb/paren-lex.h
include/fxt/comb/paren-pref.h
include/fxt/comb/paren-string-to-rgs.h
include/fxt/comb/paren.h
include/fxt/comb/partition-2fall-asc-subset-lex.h
include/fxt/comb/partition-2fall-asc.h
include/fxt/comb/partition-2fall-desc.h
include/fxt/comb/partition-asc-2rep-subset-lex.h
include/fxt/comb/partition-asc-2rep.h
include/fxt/comb/partition-asc-perim.h
include/fxt/comb/partition-asc-sorts.h
include/fxt/comb/partition-asc-sorts2-pp.h
include/fxt/comb/partition-asc-sorts2.h
include/fxt/comb/partition-asc-subset-lex-csh.h
include/fxt/comb/partition-asc-subset-lex.h
include/fxt/comb/partition-asc.h
include/fxt/comb/partition-binary-asc.h
include/fxt/comb/partition-binary-desc.h
include/fxt/comb/partition-boundary.h
include/fxt/comb/partition-conj.h
include/fxt/comb/partition-desc-bb.h
include/fxt/comb/partition-desc.h
include/fxt/comb/partition-dist-asc-len.h
include/fxt/comb/partition-dist-asc-subset-lex.h
include/fxt/comb/partition-dist-asc.h
include/fxt/comb/partition-dist-d-asc.h
include/fxt/comb/partition-dist-desc.h
include/fxt/comb/partition-gen.h
include/fxt/comb/partition-hook-prod.h
include/fxt/comb/partition-nonsquashing-desc.h
include/fxt/comb/partition-odd-asc-subset-lex-csh.h
include/fxt/comb/partition-odd-asc-subset-lex.h
include/fxt/comb/partition-odd-asc.h
include/fxt/comb/partition-odd-desc.h
include/fxt/comb/partition-odd-nonsquashing-desc.h
include/fxt/comb/partition-odd-to-dist.h
include/fxt/comb/partition-rgs-lex.h
include/fxt/comb/partition-s-desc.h
include/fxt/comb/partition-strongly-decr-desc.h
include/fxt/comb/partition.h
include/fxt/comb/perm-colex.h
include/fxt/comb/perm-derange.h
include/fxt/comb/perm-gray-ffact.h
include/fxt/comb/perm-gray-ffact2.h
include/fxt/comb/perm-gray-lipski.h
include/fxt/comb/perm-gray-rfact.h
include/fxt/comb/perm-gray-rot1.h
include/fxt/comb/perm-gray-wells.h
include/fxt/comb/perm-heap.h
include/fxt/comb/perm-heap2-swaps.h
include/fxt/comb/perm-heap2.h
include/fxt/comb/perm-involution.h
include/fxt/comb/perm-ives.h
include/fxt/comb/perm-lex-inv.h
include/fxt/comb/perm-lex.h
include/fxt/comb/perm-lex2.h
include/fxt/comb/perm-mv0.h
include/fxt/comb/perm-pref.h
include/fxt/comb/perm-rec.h
include/fxt/comb/perm-restrpref.h
include/fxt/comb/perm-rev.h
include/fxt/comb/perm-rev2.h
include/fxt/comb/perm-rot.h
include/fxt/comb/perm-st-gray.h
include/fxt/comb/perm-st-pref.h
include/fxt/comb/perm-st.h
include/fxt/comb/perm-star-swaps.h
include/fxt/comb/perm-star.h
include/fxt/comb/perm-trotter-lg.h
include/fxt/comb/perm-trotter.h
include/fxt/comb/print-arrangement-rgs-perm.h
include/fxt/comb/print-catalan-path-aa.h
include/fxt/comb/print-catalan-step-rgs-aa.h
include/fxt/comb/print-composition-aa.h
include/fxt/comb/print-composition-by-sorts.h
include/fxt/comb/print-composition-unimodal.h
include/fxt/comb/print-partition-aa.h
include/fxt/comb/print-partition-conj.h
include/fxt/comb/print-young-tab-rgs-aa.h
include/fxt/comb/print-zero-map-rgs.h
include/fxt/comb/reverse-paren-string.h
include/fxt/comb/rgs-fincr.h
include/fxt/comb/rgs-kincr.h
include/fxt/comb/rgs-maxincr.h
include/fxt/comb/ruler-func-s.h
include/fxt/comb/ruler-func.h
include/fxt/comb/ruler-func1.h
include/fxt/comb/schroeder-path-lex.h
include/fxt/comb/schroeder-rgs-lex.h
include/fxt/comb/score-sequence.h
include/fxt/comb/setpart-ccf-rgs-lex.h
include/fxt/comb/setpart-ck-rgs.h
include/fxt/comb/setpart-p-rgs-lex.h
include/fxt/comb/setpart-rgs-gray.h
include/fxt/comb/setpart-rgs-lex.h
include/fxt/comb/setpart-rgs-subset-lex.h
include/fxt/comb/setpart-s-zero-map-rgs.h
include/fxt/comb/setpart-zero-map-rgs.h
include/fxt/comb/setpart.h
include/fxt/comb/skew-binary.h
include/fxt/comb/sl-gray-compare.h
include/fxt/comb/smooth-rfact-rgs.h
include/fxt/comb/string-subst.h
include/fxt/comb/subset-debruijn.h
include/fxt/comb/subset-deltalex.h
include/fxt/comb/subset-gray-delta.h
include/fxt/comb/subset-gray.h
include/fxt/comb/subset-lex-compare.h
include/fxt/comb/subset-lex.h
include/fxt/comb/test-gray.h
include/fxt/comb/tree-lev-seq-aux.h
include/fxt/comb/tree-lev-seq.h
include/fxt/comb/weakly-unimodal-rgs-lex.h
include/fxt/comb/wfl-hilbert.h
include/fxt/comb/word-stats.h
include/fxt/comb/young-tab-rgs-descents.h
include/fxt/comb/young-tab-rgs-subset-lex.h
include/fxt/comb/young-tab-rgs.h
include/fxt/complextype.h
include/fxt/convolution-all.h
include/fxt/convolution/complexconvolution.h
include/fxt/convolution/fhtmulsqr.h
include/fxt/convolution/realconvolution.h
include/fxt/convolution/slowcnvl-lin.h
include/fxt/convolution/slowcnvl.h
include/fxt/convolution/slowcnvla.h
include/fxt/convolution/slowcnvlhalf.h
include/fxt/convolution/slowconvolution.h
include/fxt/convolution/slowtwodimcnvl.h
include/fxt/convolution/slowweightedcnvl.h
include/fxt/convolution/weightedconvolution.h
include/fxt/correlation-all.h
include/fxt/correlation/correlation.h
include/fxt/correlation/slowcorr.h
include/fxt/dctdst-all.h
include/fxt/dctdst/dctdst.h
include/fxt/ds-all.h
include/fxt/ds/array2d.h
include/fxt/ds/array3d.h
include/fxt/ds/bitarray.h
include/fxt/ds/bitarray2d.h
include/fxt/ds/bounding-box.h
include/fxt/ds/centered-array2d.h
include/fxt/ds/centered-array3d.h
include/fxt/ds/deque.h
include/fxt/ds/heap.h
include/fxt/ds/left-right-array.h
include/fxt/ds/point2d.h
include/fxt/ds/point3d.h
include/fxt/ds/priorityqueue.h
include/fxt/ds/queue.h
include/fxt/ds/ringbuffer.h
include/fxt/ds/stack.h
include/fxt/ds/vector2d.h
include/fxt/ds/vector3d.h
include/fxt/fft-all.h
include/fxt/fft/fft-default.h
include/fxt/fft/fft.h
include/fxt/fft/matrixfft.h
include/fxt/fft/shortfft.h
include/fxt/fft/slowft.h
include/fxt/fht-all.h
include/fxt/fht/fht-default.h
include/fxt/fht/fht.h
include/fxt/fht/fht2d.h
include/fxt/fht/fhtloc2.h
include/fxt/fht/hartleyshift.h
include/fxt/fht/shortfhtdifcore.h
include/fxt/fht/shortfhtditcore.h
include/fxt/fht/slowht.h
include/fxt/fxtalloca.h
include/fxt/fxtio.h
include/fxt/fxttypes.h
include/fxt/graph-all.h
include/fxt/graph/digraph-paths.h
include/fxt/graph/digraph.h
include/fxt/graph/lyndon-gray.h
include/fxt/graph/mk-special-digraphs.h
include/fxt/graph/print-path.h
include/fxt/haar-all.h
include/fxt/haar/fib-haar.h
include/fxt/haar/haar.h
include/fxt/haar/haarnn.h
include/fxt/haar/haarrevnn.h
include/fxt/haar/mers-haar.h
include/fxt/haar/prefix-transform.h
include/fxt/haar/transposedhaarnn.h
include/fxt/haar/transposedhaarrevnn.h
include/fxt/jjassert.h
include/fxt/matrix-all.h
include/fxt/matrix/matrix.h
include/fxt/matrix/vector.h
include/fxt/mod-all.h
include/fxt/mod/chebyshev.h
include/fxt/mod/divisors.h
include/fxt/mod/factor.h
include/fxt/mod/isqrt.h
include/fxt/mod/mersenne.h
include/fxt/mod/mod.h
include/fxt/mod/modarith.h
include/fxt/mod/mtypes.h
include/fxt/mod/numtheory.h
include/fxt/mod/primes.h
include/fxt/nextarg.h
include/fxt/ntt-all.h
include/fxt/ntt/ntt.h
include/fxt/perm-all.h
include/fxt/perm/even2lower.h
include/fxt/perm/fact2perm-swp-apply.h
include/fxt/perm/graypermute.h
include/fxt/perm/grayrevpermute.h
include/fxt/perm/haarpermute.h
include/fxt/perm/perm-genus.h
include/fxt/perm/perm2ccf.h
include/fxt/perm/permapply.h
include/fxt/perm/permapplyfunc.h
include/fxt/perm/permcomplement.h
include/fxt/perm/permcompose.h
include/fxt/perm/perminvert.h
include/fxt/perm/permq.h
include/fxt/perm/permrand-2cycles.h
include/fxt/perm/permrand-connected.h
include/fxt/perm/permrand-cycle-type.h
include/fxt/perm/permrand-cyclic.h
include/fxt/perm/permrand-derange.h
include/fxt/perm/permrand-derange3.h
include/fxt/perm/permrand-inv-mod-m.h
include/fxt/perm/permrand-ncm2.h
include/fxt/perm/permrand-ord.h
include/fxt/perm/permrand-parity.h
include/fxt/perm/permrand-pref.h
include/fxt/perm/permrand-sdc.h
include/fxt/perm/permrand-self-inverse.h
include/fxt/perm/permrand.h
include/fxt/perm/printcycles.h
include/fxt/perm/radixpermute.h
include/fxt/perm/revbinpermute.h
include/fxt/perm/revbinpermute0.h
include/fxt/perm/reverse.h
include/fxt/perm/rotate.h
include/fxt/perm/shortgraypermute.h
include/fxt/perm/shortrevbinpermute.h
include/fxt/perm/shortrevbinpermute0.h
include/fxt/perm/swapblocks.h
include/fxt/perm/xorpermute.h
include/fxt/perm/zip.h
include/fxt/perm/ziprev.h
include/fxt/realfft-all.h
include/fxt/realfft/realfft.h
include/fxt/realloc.h
include/fxt/restrict.h
include/fxt/sort-all.h
include/fxt/sort/bsearch.h
include/fxt/sort/bsearchapprox.h
include/fxt/sort/bsearchfunc.h
include/fxt/sort/bsearchidx.h
include/fxt/sort/bsearchidxfunc.h
include/fxt/sort/bsearchptr.h
include/fxt/sort/bsearchptrfunc.h
include/fxt/sort/convex.h
include/fxt/sort/equivclasses.h
include/fxt/sort/heapsort.h
include/fxt/sort/merge-sort.h
include/fxt/sort/minmax.h
include/fxt/sort/minmaxfunc.h
include/fxt/sort/minmaxidx.h
include/fxt/sort/minmaxidxfunc.h
include/fxt/sort/minmaxmed23.h
include/fxt/sort/minmaxmed23func.h
include/fxt/sort/minmaxmed23idx.h
include/fxt/sort/minmaxptr.h
include/fxt/sort/minmaxptrfunc.h
include/fxt/sort/quantize.h
include/fxt/sort/radixsort.h
include/fxt/sort/sort.h
include/fxt/sort/sort23.h
include/fxt/sort/sort23func.h
include/fxt/sort/sortbykey.h
include/fxt/sort/sortfunc.h
include/fxt/sort/sortidx.h
include/fxt/sort/sortidxfunc.h
include/fxt/sort/sortptr.h
include/fxt/sort/sortptrfunc.h
include/fxt/sort/unique.h
include/fxt/sort/uniquefunc.h
include/fxt/sort/usearch.h
include/fxt/walsh-all.h
include/fxt/walsh/and-convolution.h
include/fxt/walsh/arithtransform.h
include/fxt/walsh/bitcount-weight.h
include/fxt/walsh/dyadiccnvl.h
include/fxt/walsh/fib-walsh.h
include/fxt/walsh/grsnegate.h
include/fxt/walsh/max-convolution.h
include/fxt/walsh/mers-walsh.h
include/fxt/walsh/or-convolution.h
include/fxt/walsh/reedmuller.h
include/fxt/walsh/shortwalshwakdif.h
include/fxt/walsh/shortwalshwakdit.h
include/fxt/walsh/slant.h
include/fxt/walsh/square-wave-transform.h
include/fxt/walsh/subset-convolution.h
include/fxt/walsh/walsh-basis.h
include/fxt/walsh/walsheigen.h
include/fxt/walsh/walshgray.h
include/fxt/walsh/walshpal.h
include/fxt/walsh/walshq.h
include/fxt/walsh/walshseq.h
include/fxt/walsh/walshwak.h
include/fxt/walsh/walshwak2.h
include/fxt/walsh/walshwak4.h
include/fxt/walsh/walshwak8.h
include/fxt/walsh/walshwakloc2.h
include/fxt/walsh/walshwal.h
include/fxt/walsh/walshwalrev.h
include/fxt/walsh/weighted-arithtransform.h
include/fxt/walsh/weighted-or-convolution.h
include/fxt/wavelet-all.h
include/fxt/wavelet/daubechies.h
include/fxt/wavelet/harmonic-wavelet.h
include/fxt/wavelet/wavelet.h
include/fxt/wavelet/waveletfilter.h
lib/libfxt.a
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/arith/briggs-log-demo.cc
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/arith/briggs-log-out.txt
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/arith/cayley-dickson-demo.cc
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/arith/cayley-dickson-out.txt
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/arith/cordic-circ-demo.cc
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/arith/cordic-circ-out.txt
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/arith/cordic-hyp-demo.cc
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/arith/cordic-hyp-out.txt
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/arith/power-costs-demo.cc
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/arith/power-costs-out.txt
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/arith/power-l2r-demo.cc
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/arith/power-l2r-out.txt
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/arith/power-r2l-demo.cc
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/arith/power-r2l-out.txt
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/arith/shiftadd-exp-demo.cc
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/arith/shiftadd-exp-out.txt
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/arith/shiftadd-log-demo.cc
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/arith/shiftadd-log-out.txt
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/arith/zero-divisors-demo.cc
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/arith/zero-divisors-func-demo.cc
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/arith/zero-divisors-func-out.txt
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/arith/zero-divisors-out.txt
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/arith/zero-divisors-pairs-demo.cc
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/arith/zero-divisors-pairs-out.txt
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/bits/all-dbs-demo.cc
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/bits/all-dbs-out.txt
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/bits/bin-to-sl-gray-demo.cc
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/bits/bin-to-sl-gray-out.txt
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/bits/bin2naf-demo.cc
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/bits/bin2naf-out.txt
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/bits/bin2sbin-demo.cc
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/bits/bin2sbin-out.txt
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/bits/bit-necklace-demo.cc
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/bits/bit-necklace-out.txt
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/bits/bit-nextgray-demo.cc
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/bits/bit-nextgray-out.txt
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/bits/bit-paper-fold-alt-demo.cc
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/bits/bit-paper-fold-alt-out.txt
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/bits/bit-paper-fold-demo.cc
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/bits/bit-paper-fold-general-demo.cc
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/bits/bit-paper-fold-general-out.txt
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/bits/bit-paper-fold-out.txt
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/bits/bit-rll2-demo.cc
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/bits/bit-rll2-out.txt
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/bits/bit-sl-gray-demo.cc
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/bits/bit-sl-gray-out.txt
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/bits/bit2adic-demo.cc
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/bits/bit2adic-out.txt
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/bits/bitcombcolex-demo.cc
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/bits/bitcombcolex-out.txt
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/bits/bitcomblex-demo.cc
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/bits/bitcomblex-out.txt
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/bits/bitcombminchange-demo.cc
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/bits/bitcombminchange-out.txt
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/bits/bitcombshifts-demo.cc
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/bits/bitcombshifts-out.txt
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/bits/bitcount-v-demo.cc
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/bits/bitcount-v-out.txt
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/bits/bitdemos.h
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/bits/bitfibgray-demo.cc
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/bits/bitfibgray-out.txt
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/bits/bithilo-demo.cc
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/bits/bithilo-out.txt
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/bits/bitlex-demo.cc
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/bits/bitlex-out.txt
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/bits/bitlex-rec-demo.cc
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/bits/bitlex-rec-out.txt
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/bits/bitmisc-demo.cc
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/bits/bitmisc-out.txt
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/bits/bitmisc2-demo.cc
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/bits/bitmisc2-out.txt
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/bits/bitperm1-demo.cc
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/bits/bitperm1-out.txt
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/bits/bitsequency-demo.cc
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/bits/bitsequency-out.txt
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/bits/bitsubset-demo.cc
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/bits/bitsubset-gray-demo.cc
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/bits/bitsubset-gray-out.txt
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/bits/bitsubset-out.txt
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/bits/bitsubset-shift-demo.cc
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/bits/bitsubset-shift-out.txt
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/bits/bittransforms-blue-demo.cc
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/bits/bittransforms-blue-fp-demo.cc
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/bits/bittransforms-blue-fp-out.txt
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/bits/bittransforms-blue-out.txt
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/bits/bittransforms-red-demo.cc
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/bits/bittransforms-red-out.txt
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/bits/bitxtransforms-demo.cc
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/bits/bitxtransforms-out.txt
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/bits/crc64-demo.cc
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/bits/crc64-out.txt
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/bits/debruijn-lookup-demo.cc
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/bits/debruijn-lookup-out.txt
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/bits/dragon-curve-moves-demo.cc
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/bits/dragon-curve-moves-out.txt
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/bits/dragon-curve-texpic-demo.cc
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/bits/dragon-curve-texpic-out.txt
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/bits/dragon-hex-texpic-demo.cc
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/bits/dragon-hex-texpic-out.txt
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/bits/dragon-r13-texpic-demo.cc
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/bits/dragon-r13-texpic-out.txt
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/bits/dragon-r4-texpic-demo.cc
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/bits/dragon-r4-texpic-out.txt
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/bits/dragon-r5-texpic-demo.cc
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/bits/dragon-r5-texpic-out.txt
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/bits/dragon-r7-2-texpic-demo.cc
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/bits/dragon-r7-2-texpic-out.txt
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/bits/dragon-r7-texpic-demo.cc
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/bits/dragon-r7-texpic-out.txt
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/bits/dragon-r9-texpic-demo.cc
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/bits/dragon-r9-texpic-out.txt
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/bits/dragon3-texpic-demo.cc
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/bits/dragon3-texpic-out.txt
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/bits/fibrep-subset-lexrev-demo.cc
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/bits/fibrep-subset-lexrev-out.txt
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/bits/fibrep2-demo.cc
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/bits/fibrep2-out.txt
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/bits/gotcha-demo.cc
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/bits/gotcha-out.txt
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/bits/gray-demo.cc
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/bits/gray-out.txt
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/bits/gray-rec-demo.cc
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/bits/gray-rec-out.txt
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/bits/graycode-demo.cc
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/bits/graycode-out.txt
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/bits/grs-demo.cc
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/bits/grs-next-demo.cc
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/bits/grs-next-out.txt
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/bits/grs-out.txt
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/bits/hanoi-demo.cc
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/bits/hanoi-out.txt
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/bits/hilbert-demo.cc
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/bits/hilbert-gray-demo.cc
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/bits/hilbert-gray-out.txt
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/bits/hilbert-moves-demo.cc
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/bits/hilbert-moves-out.txt
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/bits/hilbert-out.txt
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/bits/hilbert-texpic-demo.cc
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/bits/hilbert-texpic-out.txt
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/bits/kolakoski-seq-demo.cc
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/bits/kolakoski-seq-out.txt
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/bits/modular-lookup-demo.cc
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/bits/modular-lookup-out.txt
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/bits/negbin-demo.cc
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/bits/negbin-out.txt
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/bits/negbin2-demo.cc
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/bits/negbin2-out.txt
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/bits/parenword-colex-demo.cc
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/bits/parenword-colex-out.txt
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/bits/parenword-demo.cc
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/bits/parenword-out.txt
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/bits/pcrc64-demo.cc
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/bits/pcrc64-out.txt
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/bits/radix-2i-demo.cc
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/bits/radix-2i-out.txt
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/bits/radix-2i-to-z-demo.cc
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/bits/radix-2i-to-z-out.txt
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/bits/radix-m1pi-demo.cc
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/bits/radix-m1pi-out.txt
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/bits/radix-m1pi-to-z-demo.cc
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/bits/radix-m1pi-to-z-out.txt
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/bits/radix-m4-demo.cc
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/bits/radix-m4-out.txt
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/bits/revbin-rec-demo.cc
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/bits/revbin-rec-out.txt
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/bits/revbin-steps-demo.cc
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/bits/revbin-steps-out.txt
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/bits/revbin-tab-demo.cc
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/bits/revbin-tab-out.txt
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/bits/revbin-update-demo.cc
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/bits/revbin-update-out.txt
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/bits/thue-morse-demo.cc
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/bits/thue-morse-out.txt
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/bits/zorder-texpic-demo.cc
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/bits/zorder-texpic-out.txt
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/comb/acgray-demo.cc
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/comb/acgray-out.txt
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/comb/acyclic-map-demo.cc
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/comb/acyclic-map-out.txt
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/comb/arrangement-lex-demo.cc
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/comb/arrangement-lex-out.txt
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/comb/arrangement-rgs-demo.cc
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/comb/arrangement-rgs-out.txt
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/comb/ascent-alt-rgs-demo.cc
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/comb/ascent-alt-rgs-out.txt
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/comb/ascent-nonflat-rgs-demo.cc
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/comb/ascent-nonflat-rgs-out.txt
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/comb/ascent-rgs-demo.cc
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/comb/ascent-rgs-out.txt
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/comb/ascent-rgs-stats-demo.cc
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/comb/ascent-rgs-stats-out.txt
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/comb/ascent-rgs-subset-lex-demo.cc
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/comb/ascent-rgs-subset-lex-out.txt
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/comb/balanced-ordered-tree-lev-seq-demo.cc
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/comb/balanced-ordered-tree-lev-seq-out.txt
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/comb/balanced-ordered-tree-lev-seq-stats-demo.cc
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/comb/balanced-ordered-tree-lev-seq-stats-out.txt
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/comb/ballot-seq-stats-demo.cc
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/comb/ballot-seq-stats-out.txt
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/comb/bell-number-demo.cc
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/comb/bell-number-out.txt
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/comb/big-fact2perm-demo.cc
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/comb/big-fact2perm-out.txt
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/comb/binary-debruijn-demo.cc
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/comb/binary-debruijn-out.txt
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/comb/binary-huffman-demo.cc
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/comb/binary-huffman-out.txt
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/comb/binary-necklace-demo.cc
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/comb/binary-necklace-out.txt
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/comb/binary-sl-gray-demo.cc
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/comb/binary-sl-gray-out.txt
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/comb/binomial-demo.cc
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/comb/binomial-out.txt
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/comb/catalan-demo.cc
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/comb/catalan-number-demo.cc
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/comb/catalan-number-out.txt
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/comb/catalan-out.txt
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/comb/catalan-path-lex-demo.cc
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/comb/catalan-path-lex-out.txt
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/comb/catalan-rgs-demo.cc
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/comb/catalan-rgs-gray-demo.cc
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/comb/catalan-rgs-gray-out.txt
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/comb/catalan-rgs-gslex-demo.cc
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/comb/catalan-rgs-gslex-out.txt
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/comb/catalan-rgs-out.txt
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/comb/catalan-rgs-subset-lex-demo.cc
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/comb/catalan-rgs-subset-lex-out.txt
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/comb/catalan-rgs-to-noncrossing-setpart-rgs-demo.cc
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/comb/catalan-rgs-to-noncrossing-setpart-rgs-out.txt
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/comb/catalan-step-rgs-colex-demo.cc
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/comb/catalan-step-rgs-colex-out.txt
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/comb/catalan-step-rgs-lex-demo.cc
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/comb/catalan-step-rgs-lex-out.txt
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/comb/catalan-step-rgs-subset-lexrev-demo.cc
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/comb/catalan-step-rgs-subset-lexrev-out.txt
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/comb/cayley-perm-demo.cc
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/comb/cayley-perm-out.txt
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/comb/cayley-perm-stats-demo.cc
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/comb/cayley-perm-stats-out.txt
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/comb/change-rgs-demo.cc
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/comb/change-rgs-out.txt
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/comb/comb2comp-demo.cc
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/comb/comb2comp-out.txt
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/comb/combination-chase-demo.cc
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/comb/combination-chase-out.txt
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/comb/combination-colex-demo.cc
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/comb/combination-colex-out.txt
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/comb/combination-emk-demo.cc
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/comb/combination-emk-out.txt
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/comb/combination-emk-rec-demo.cc
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/comb/combination-emk-rec-out.txt
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/comb/combination-endo-demo.cc
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/comb/combination-endo-out.txt
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/comb/combination-enup-demo.cc
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/comb/combination-enup-out.txt
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/comb/combination-enup-rec-demo.cc
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/comb/combination-enup-rec-out.txt
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/comb/combination-gray-rec-demo.cc
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/comb/combination-gray-rec-out.txt
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/comb/combination-lam-demo.cc
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/comb/combination-lam-out.txt
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/comb/combination-lex-demo.cc
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/comb/combination-lex-out.txt
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/comb/combination-mod-demo.cc
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/comb/combination-mod-out.txt
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/comb/combination-pref-demo.cc
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/comb/combination-pref-out.txt
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/comb/combination-rank-demo.cc
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/comb/combination-rank-out.txt
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/comb/combination-rec-demo.cc
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/comb/combination-rec-out.txt
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/comb/combination-revdoor-demo.cc
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/comb/combination-revdoor-out.txt
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/comb/composition-colex-demo.cc
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/comb/composition-colex-out.txt
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/comb/composition-colex2-demo.cc
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/comb/composition-colex2-out.txt
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/comb/composition-dist-unimodal-demo.cc
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/comb/composition-dist-unimodal-out.txt
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/comb/composition-ex-colex-demo.cc
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/comb/composition-ex-colex-out.txt
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/comb/composition-ex-lex-demo.cc
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/comb/composition-ex-lex-out.txt
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/comb/composition-gray-rec-demo.cc
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/comb/composition-gray-rec-out.txt
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/comb/composition-nz-binary-demo.cc
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/comb/composition-nz-binary-out.txt
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/comb/composition-nz-carlitz-demo.cc
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/comb/composition-nz-carlitz-out.txt
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/comb/composition-nz-demo.cc
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/comb/composition-nz-first-max-demo.cc
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/comb/composition-nz-first-max-out.txt
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/comb/composition-nz-gray-demo.cc
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/comb/composition-nz-gray-out.txt
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/comb/composition-nz-gray-rec-demo.cc
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/comb/composition-nz-gray-rec-out.txt
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/comb/composition-nz-gray2-demo.cc
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/comb/composition-nz-gray2-out.txt
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/comb/composition-nz-i-smooth-demo.cc
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/comb/composition-nz-i-smooth-out.txt
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/comb/composition-nz-left-2smooth-demo.cc
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/comb/composition-nz-left-2smooth-out.txt
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/comb/composition-nz-left-smooth-demo.cc
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/comb/composition-nz-left-smooth-out.txt
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/comb/composition-nz-max-demo.cc
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/comb/composition-nz-max-out.txt
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/comb/composition-nz-min-demo.cc
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/comb/composition-nz-min-out.txt
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/comb/composition-nz-minc-demo.cc
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/comb/composition-nz-minc-out.txt
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/comb/composition-nz-numparts-demo.cc
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/comb/composition-nz-numparts-out.txt
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/comb/composition-nz-odd-demo.cc
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/comb/composition-nz-odd-out.txt
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/comb/composition-nz-odd-subset-lex-demo.cc
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/comb/composition-nz-odd-subset-lex-out.txt
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/comb/composition-nz-out.txt
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/comb/composition-nz-restrpref-demo.cc
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/comb/composition-nz-restrpref-out.txt
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/comb/composition-nz-rl-demo.cc
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/comb/composition-nz-rl-out.txt
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/comb/composition-nz-smooth-demo.cc
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/comb/composition-nz-smooth-out.txt
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/comb/composition-nz-sorts-demo.cc
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/comb/composition-nz-sorts-out.txt
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/comb/composition-nz-sorts2-demo.cc
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/comb/composition-nz-sorts2-out.txt
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/comb/composition-nz-sorts2-pp-demo.cc
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/comb/composition-nz-sorts2-pp-out.txt
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/comb/composition-nz-stats-demo.cc
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/comb/composition-nz-stats-out.txt
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/comb/composition-nz-subset-lex-demo.cc
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/comb/composition-nz-subset-lex-out.txt
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/comb/composition-nz-subset-lex-rec-demo.cc
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/comb/composition-nz-subset-lex-rec-out.txt
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/comb/composition-nz-superdiagonal-demo.cc
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/comb/composition-nz-superdiagonal-out.txt
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/comb/composition-nz-upstep-demo.cc
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/comb/composition-nz-upstep-out.txt
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/comb/composition-nz-weakly-unimodal-demo.cc
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/comb/composition-nz-weakly-unimodal-out.txt
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/comb/composition-rank-demo.cc
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/comb/composition-rank-out.txt
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/comb/composition-unimodal-demo.cc
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/comb/composition-unimodal-out.txt
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/comb/conference-quadres-demo.cc
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/comb/conference-quadres-out.txt
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/comb/cyclic-perm-demo.cc
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/comb/cyclic-perm-out.txt
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/comb/debruijn-demo.cc
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/comb/debruijn-out.txt
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/comb/descent-rgs-demo.cc
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/comb/descent-rgs-out.txt
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/comb/descent-rgs-stats-demo.cc
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/comb/descent-rgs-stats-out.txt
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/comb/dyck-gray-demo.cc
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/comb/dyck-gray-out.txt
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/comb/dyck-gray2-demo.cc
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/comb/dyck-gray2-out.txt
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/comb/dyck-pref-demo.cc
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/comb/dyck-pref-out.txt
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/comb/dyck-pref2-demo.cc
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/comb/dyck-pref2-out.txt
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/comb/dyck-rgs-demo.cc
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/comb/dyck-rgs-out.txt
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/comb/dyck-rgs-subset-lex-demo.cc
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/comb/dyck-rgs-subset-lex-out.txt
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/comb/fact2cyclic-demo.cc
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/comb/fact2cyclic-out.txt
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/comb/fact2perm-demo.cc
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/comb/fact2perm-out.txt
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/comb/fact2perm-rev-demo.cc
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/comb/fact2perm-rev-out.txt
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/comb/fact2perm-rot-demo.cc
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/comb/fact2perm-rot-out.txt
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/comb/fact2perm-swp-demo.cc
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/comb/fact2perm-swp-out.txt
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/comb/ffact2kperm-demo.cc
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/comb/ffact2kperm-out.txt
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/comb/fib-alt-gray-demo.cc
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/comb/fib-alt-gray-out.txt
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/comb/fibgray-rec-demo.cc
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/comb/fibgray-rec-out.txt
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/comb/gexz-gray-demo.cc
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/comb/gexz-gray-out.txt
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/comb/hadamard-srs-demo.cc
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/comb/hadamard-srs-out.txt
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/comb/hanoi-rec-demo.cc
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/comb/hanoi-rec-out.txt
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/comb/hilbert-ndim-demo.cc
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/comb/hilbert-ndim-out.txt
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/comb/hilbert-ndim-rec-demo.cc
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/comb/hilbert-ndim-rec-out.txt
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/comb/id-tree-lev-seq-demo.cc
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/comb/id-tree-lev-seq-out.txt
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/comb/id-tree-lev-seq-stats-demo.cc
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/comb/id-tree-lev-seq-stats-out.txt
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/comb/involution-stats-demo.cc
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/comb/involution-stats-out.txt
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/comb/involution-zero-map-rgs-demo.cc
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/comb/involution-zero-map-rgs-out.txt
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/comb/isoscent-rgs-demo.cc
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/comb/isoscent-rgs-out.txt
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/comb/isoscent-rgs-stats-demo.cc
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/comb/isoscent-rgs-stats-out.txt
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/comb/kperm-gray-demo.cc
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/comb/kperm-gray-out.txt
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/comb/kperm-lex-demo.cc
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/comb/kperm-lex-out.txt
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/comb/kproducts-colex-demo.cc
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/comb/kproducts-colex-out.txt
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/comb/ksubset-gray-demo.cc
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/comb/ksubset-gray-out.txt
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/comb/ksubset-lex-demo.cc
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/comb/ksubset-lex-out.txt
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/comb/ksubset-rec-demo.cc
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/comb/ksubset-rec-out.txt
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/comb/ksubset-twoclose-demo.cc
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/comb/ksubset-twoclose-out.txt
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/comb/lyndon-factorization-demo.cc
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/comb/lyndon-factorization-out.txt
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/comb/lyndon-words-demo.cc
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/comb/lyndon-words-out.txt
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/comb/map23-rgs-demo.cc
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/comb/map23-rgs-out.txt
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/comb/maxrep-gray-demo.cc
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/comb/maxrep-gray-out.txt
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/comb/mixedradix-colex-demo.cc
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/comb/mixedradix-colex-out.txt
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/comb/mixedradix-endo-demo.cc
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/comb/mixedradix-endo-gray-demo.cc
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/comb/mixedradix-endo-gray-out.txt
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/comb/mixedradix-endo-out.txt
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/comb/mixedradix-gray-demo.cc
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/comb/mixedradix-gray-out.txt
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/comb/mixedradix-gray2-demo.cc
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/comb/mixedradix-gray2-out.txt
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/comb/mixedradix-gslex-alt-demo.cc
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/comb/mixedradix-gslex-alt-out.txt
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/comb/mixedradix-gslex-alt2-demo.cc
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/comb/mixedradix-gslex-alt2-out.txt
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/comb/mixedradix-gslex-demo.cc
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/comb/mixedradix-gslex-out.txt
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/comb/mixedradix-gslex2-demo.cc
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/comb/mixedradix-gslex2-out.txt
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/comb/mixedradix-lex-demo.cc
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/comb/mixedradix-lex-out.txt
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/comb/mixedradix-modular-gray-demo.cc
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/comb/mixedradix-modular-gray-out.txt
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/comb/mixedradix-modular-gray2-demo.cc
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/comb/mixedradix-modular-gray2-out.txt
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/comb/mixedradix-naf-demo.cc
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/comb/mixedradix-naf-gray-demo.cc
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/comb/mixedradix-naf-gray-out.txt
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/comb/mixedradix-naf-out.txt
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/comb/mixedradix-naf-subset-lex-demo.cc
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/comb/mixedradix-naf-subset-lex-out.txt
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/comb/mixedradix-restrpref-demo.cc
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/comb/mixedradix-restrpref-out.txt
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/comb/mixedradix-rfact-demo.cc
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/comb/mixedradix-rfact-out.txt
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/comb/mixedradix-sl-gray-demo.cc
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/comb/mixedradix-sl-gray-out.txt
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/comb/mixedradix-sl-gray-rec-demo.cc
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/comb/mixedradix-sl-gray-rec-out.txt
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/comb/mixedradix-sod-lex-demo.cc
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/comb/mixedradix-sod-lex-out.txt
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/comb/mixedradix-subset-lex-demo.cc
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/comb/mixedradix-subset-lex-out.txt
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/comb/mixedradix-subset-lexrev-demo.cc
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/comb/mixedradix-subset-lexrev-out.txt
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/comb/monotonicgray-demo.cc
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/comb/monotonicgray-out.txt
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/comb/motzkin-nonflat-rgs-lex-demo.cc
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/comb/motzkin-nonflat-rgs-lex-out.txt
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/comb/motzkin-path-lex-demo.cc
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/comb/motzkin-path-lex-out.txt
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/comb/motzkin-rgs-lex-demo.cc
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/comb/motzkin-rgs-lex-out.txt
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/comb/motzkin-step-rgs-lex-demo.cc
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/comb/motzkin-step-rgs-lex-out.txt
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/comb/mpartition-demo.cc
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/comb/mpartition-out.txt
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/comb/mpartition2-demo.cc
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/comb/mpartition2-out.txt
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/comb/mset-kperm-lex-demo.cc
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/comb/mset-kperm-lex-out.txt
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/comb/mset-ksubset-demo.cc
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/comb/mset-ksubset-out.txt
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/comb/mset-perm-gray-demo.cc
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/comb/mset-perm-gray-out.txt
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/comb/mset-perm-lex-demo.cc
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/comb/mset-perm-lex-out.txt
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/comb/mset-perm-lex-rec-demo.cc
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/comb/mset-perm-lex-rec-out.txt
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/comb/mset-perm-lex-rec2-demo.cc
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/comb/mset-perm-lex-rec2-out.txt
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/comb/mset-perm-pref-demo.cc
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/comb/mset-perm-pref-out.txt
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/comb/mset-subset-lex-demo.cc
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/comb/mset-subset-lex-out.txt
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/comb/naf-gray-rec-demo.cc
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/comb/naf-gray-rec-out.txt
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/comb/naf-pos-rec-demo.cc
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/comb/naf-pos-rec-out.txt
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/comb/necklace-cat-demo.cc
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/comb/necklace-cat-out.txt
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/comb/necklace-demo.cc
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/comb/necklace-fkm-demo.cc
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/comb/necklace-fkm-out.txt
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/comb/necklace-gray-demo.cc
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/comb/necklace-gray-out.txt
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/comb/necklace-gray3-demo.cc
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/comb/necklace-gray3-out.txt
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/comb/necklace-out.txt
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/comb/necklace-sigma-tau-demo.cc
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/comb/necklace-sigma-tau-out.txt
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/comb/necklaces-via-gray-leaders-demo.cc
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/comb/necklaces-via-gray-leaders-out.txt
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/comb/no111-gray-demo.cc
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/comb/no111-gray-out.txt
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/comb/no1111-gray-demo.cc
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/comb/no1111-gray-out.txt
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/comb/no1x1-gray-demo.cc
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/comb/no1x1-gray-out.txt
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/comb/no1xy1-gray-demo.cc
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/comb/no1xy1-gray-out.txt
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/comb/ntnz-gray-demo.cc
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/comb/ntnz-gray-out.txt
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/comb/ntz-gray-demo.cc
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/comb/ntz-gray-out.txt
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/comb/num-partitions-demo.cc
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/comb/num-partitions-out.txt
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/comb/ordered-tree-branches-demo.cc
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/comb/ordered-tree-branches-out.txt
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/comb/ordered-tree-branching-seq-demo.cc
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/comb/ordered-tree-branching-seq-out.txt
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/comb/ordered-tree-lev-seq-demo.cc
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/comb/ordered-tree-lev-seq-out.txt
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/comb/ordered-tree-lev-seq-stats-demo.cc
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/comb/ordered-tree-lev-seq-stats-out.txt
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/comb/paren-demo.cc
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/comb/paren-gray-demo.cc
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/comb/paren-gray-out.txt
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/comb/paren-gray-rec-demo.cc
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/comb/paren-gray-rec-out.txt
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/comb/paren-lex-demo.cc
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/comb/paren-lex-out.txt
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/comb/paren-out.txt
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/comb/paren-pref-demo.cc
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/comb/paren-pref-out.txt
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/comb/partition-2fall-asc-demo.cc
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/comb/partition-2fall-asc-out.txt
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/comb/partition-2fall-asc-subset-lex-demo.cc
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/comb/partition-2fall-asc-subset-lex-out.txt
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/comb/partition-2fall-desc-demo.cc
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/comb/partition-2fall-desc-out.txt
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/comb/partition-asc-2rep-demo.cc
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/comb/partition-asc-2rep-out.txt
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/comb/partition-asc-2rep-subset-lex-demo.cc
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/comb/partition-asc-2rep-subset-lex-out.txt
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/comb/partition-asc-demo.cc
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/comb/partition-asc-out.txt
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/comb/partition-asc-perim-demo.cc
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/comb/partition-asc-perim-out.txt
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/comb/partition-asc-sorts-demo.cc
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/comb/partition-asc-sorts-out.txt
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/comb/partition-asc-sorts2-demo.cc
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/comb/partition-asc-sorts2-out.txt
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/comb/partition-asc-sorts2-pp-demo.cc
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/comb/partition-asc-sorts2-pp-out.txt
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/comb/partition-asc-stats-demo.cc
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/comb/partition-asc-stats-out.txt
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/comb/partition-asc-subset-lex-csh-demo.cc
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/comb/partition-asc-subset-lex-csh-out.txt
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/comb/partition-asc-subset-lex-demo.cc
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/comb/partition-asc-subset-lex-out.txt
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/comb/partition-binary-asc-demo.cc
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/comb/partition-binary-asc-out.txt
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/comb/partition-binary-desc-demo.cc
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/comb/partition-binary-desc-out.txt
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/comb/partition-demo.cc
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/comb/partition-desc-bb-demo.cc
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/comb/partition-desc-bb-out.txt
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/comb/partition-desc-demo.cc
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/comb/partition-desc-out.txt
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/comb/partition-dist-asc-demo.cc
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/comb/partition-dist-asc-len-demo.cc
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/comb/partition-dist-asc-len-out.txt
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/comb/partition-dist-asc-out.txt
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/comb/partition-dist-asc-stats-demo.cc
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/comb/partition-dist-asc-stats-out.txt
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/comb/partition-dist-asc-subset-lex-demo.cc
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/comb/partition-dist-asc-subset-lex-out.txt
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/comb/partition-dist-d-asc-demo.cc
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/comb/partition-dist-d-asc-out.txt
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/comb/partition-dist-desc-demo.cc
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/comb/partition-dist-desc-out.txt
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/comb/partition-gen-demo.cc
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/comb/partition-gen-out.txt
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/comb/partition-nonsquashing-desc-demo.cc
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/comb/partition-nonsquashing-desc-out.txt
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/comb/partition-odd-asc-demo.cc
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/comb/partition-odd-asc-out.txt
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/comb/partition-odd-asc-stats-demo.cc
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/comb/partition-odd-asc-stats-out.txt
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/comb/partition-odd-asc-subset-lex-csh-demo.cc
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/comb/partition-odd-asc-subset-lex-csh-out.txt
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/comb/partition-odd-asc-subset-lex-demo.cc
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/comb/partition-odd-asc-subset-lex-out.txt
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/comb/partition-odd-desc-demo.cc
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/comb/partition-odd-desc-out.txt
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/comb/partition-odd-nonsquashing-desc-demo.cc
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/comb/partition-odd-nonsquashing-desc-out.txt
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/comb/partition-out.txt
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/comb/partition-rgs-lex-demo.cc
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/comb/partition-rgs-lex-out.txt
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/comb/partition-s-desc-demo.cc
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/comb/partition-s-desc-out.txt
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/comb/partition-strongly-decr-desc-demo.cc
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/comb/partition-strongly-decr-desc-out.txt
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/comb/pascal-demo.cc
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/comb/pascal-out.txt
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/comb/pellgen-gray-demo.cc
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/comb/pellgen-gray-out.txt
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/comb/pellgray-rec-demo.cc
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/comb/pellgray-rec-out.txt
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/comb/perm-colex-demo.cc
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/comb/perm-colex-out.txt
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/comb/perm-derange-demo.cc
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/comb/perm-derange-out.txt
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/comb/perm-dist1-gray-demo.cc
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/comb/perm-dist1-gray-out.txt
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/comb/perm-genus-demo.cc
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/comb/perm-genus-out.txt
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/comb/perm-gray-ffact-demo.cc
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/comb/perm-gray-ffact-out.txt
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/comb/perm-gray-ffact2-demo.cc
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/comb/perm-gray-ffact2-out.txt
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/comb/perm-gray-lipski-demo.cc
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/comb/perm-gray-lipski-out.txt
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/comb/perm-gray-rfact-demo.cc
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/comb/perm-gray-rfact-out.txt
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/comb/perm-gray-rot1-demo.cc
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/comb/perm-gray-rot1-out.txt
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/comb/perm-gray-wells-demo.cc
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/comb/perm-gray-wells-out.txt
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/comb/perm-heap-demo.cc
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/comb/perm-heap-out.txt
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/comb/perm-heap2-demo.cc
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/comb/perm-heap2-out.txt
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/comb/perm-heap2-swaps-demo.cc
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/comb/perm-heap2-swaps-out.txt
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/comb/perm-involution-demo.cc
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/comb/perm-involution-naf-demo.cc
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/comb/perm-involution-naf-out.txt
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/comb/perm-involution-out.txt
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/comb/perm-ives-demo.cc
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/comb/perm-ives-out.txt
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/comb/perm-l1r2-gray-demo.cc
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/comb/perm-l1r2-gray-out.txt
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/comb/perm-lex-cycles-demo.cc
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/comb/perm-lex-cycles-out.txt
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/comb/perm-lex-demo.cc
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/comb/perm-lex-inv-demo.cc
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/comb/perm-lex-inv-out.txt
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/comb/perm-lex-out.txt
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/comb/perm-lex2-demo.cc
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/comb/perm-lex2-out.txt
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/comb/perm-mv0-demo.cc
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/comb/perm-mv0-out.txt
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/comb/perm-pref-demo.cc
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/comb/perm-pref-out.txt
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/comb/perm-rec-demo.cc
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/comb/perm-rec-out.txt
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/comb/perm-restrpref-demo.cc
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/comb/perm-restrpref-out.txt
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/comb/perm-rev-demo.cc
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/comb/perm-rev-out.txt
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/comb/perm-rev2-demo.cc
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/comb/perm-rev2-out.txt
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/comb/perm-right1-gray-demo.cc
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/comb/perm-right1-gray-out.txt
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/comb/perm-rot-demo.cc
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/comb/perm-rot-out.txt
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/comb/perm-rot-unrank-demo.cc
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/comb/perm-rot-unrank-out.txt
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/comb/perm-st-demo.cc
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/comb/perm-st-gray-demo.cc
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/comb/perm-st-gray-out.txt
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/comb/perm-st-out.txt
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/comb/perm-st-pref-demo.cc
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/comb/perm-st-pref-out.txt
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/comb/perm-star-demo.cc
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/comb/perm-star-inv-demo.cc
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/comb/perm-star-inv-out.txt
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/comb/perm-star-out.txt
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/comb/perm-star-swaps-demo.cc
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/comb/perm-star-swaps-out.txt
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/comb/perm-trotter-demo.cc
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/comb/perm-trotter-lg-demo.cc
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/comb/perm-trotter-lg-out.txt
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/comb/perm-trotter-out.txt
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/comb/perm2fact-demo.cc
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/comb/perm2fact-out.txt
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/comb/rgs-fincr-demo.cc
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/comb/rgs-fincr-out.txt
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/comb/rgs-kincr-demo.cc
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/comb/rgs-kincr-out.txt
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/comb/rgs-maxincr-demo.cc
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/comb/rgs-maxincr-out.txt
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/comb/rll-rec-demo.cc
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/comb/rll-rec-out.txt
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/comb/root-sums-demo.cc
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/comb/root-sums-out.txt
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/comb/ruler-func-demo.cc
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/comb/ruler-func-out.txt
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/comb/ruler-func-s-demo.cc
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/comb/ruler-func-s-out.txt
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/comb/ruler-func1-demo.cc
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/comb/ruler-func1-out.txt
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/comb/schroeder-path-lex-demo.cc
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/comb/schroeder-path-lex-out.txt
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/comb/schroeder-rgs-lex-demo.cc
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/comb/schroeder-rgs-lex-out.txt
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/comb/schroeder-tree-demo.cc
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/comb/schroeder-tree-out.txt
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/comb/score-sequence-demo.cc
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/comb/score-sequence-out.txt
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/comb/setpart-ccf-rgs-lex-demo.cc
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/comb/setpart-ccf-rgs-lex-out.txt
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/comb/setpart-ck-rgs-demo.cc
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/comb/setpart-ck-rgs-out.txt
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/comb/setpart-demo.cc
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/comb/setpart-out.txt
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/comb/setpart-p-rgs-lex-demo.cc
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/comb/setpart-p-rgs-lex-out.txt
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/comb/setpart-rgs-gray-demo.cc
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/comb/setpart-rgs-gray-out.txt
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/comb/setpart-rgs-lex-demo.cc
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/comb/setpart-rgs-lex-out.txt
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/comb/setpart-rgs-subset-lex-demo.cc
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/comb/setpart-rgs-subset-lex-out.txt
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/comb/setpart-s-zero-map-rgs-demo.cc
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/comb/setpart-s-zero-map-rgs-out.txt
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/comb/setpart-zero-map-rgs-demo.cc
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/comb/setpart-zero-map-rgs-out.txt
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/comb/shift-subsets-demo.cc
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/comb/shift-subsets-out.txt
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/comb/skew-binary-demo.cc
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/comb/skew-binary-out.txt
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/comb/smooth-rfact-rgs-demo.cc
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/comb/smooth-rfact-rgs-out.txt
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/comb/string-subst-demo.cc
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/comb/string-subst-hilbert3d-demo.cc
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/comb/string-subst-hilbert3d-out.txt
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/comb/string-subst-out.txt
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/comb/stirling1-demo.cc
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/comb/stirling1-out.txt
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/comb/stirling2-demo.cc
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/comb/stirling2-out.txt
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/comb/subset-debruijn-demo.cc
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/comb/subset-debruijn-out.txt
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/comb/subset-deltalex-demo.cc
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/comb/subset-deltalex-out.txt
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/comb/subset-gray-delta-demo.cc
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/comb/subset-gray-delta-out.txt
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/comb/subset-gray-demo.cc
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/comb/subset-gray-out.txt
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/comb/subset-lex-demo.cc
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/comb/subset-lex-out.txt
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/comb/tree-lev-seq-demo.cc
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/comb/tree-lev-seq-out.txt
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/comb/tree-lev-seq-stats-demo.cc
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/comb/tree-lev-seq-stats-out.txt
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/comb/weakly-unimodal-rgs-lex-demo.cc
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/comb/weakly-unimodal-rgs-lex-out.txt
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/comb/wfl-hilbert-demo.cc
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/comb/wfl-hilbert-out.txt
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/comb/young-tab-rgs-demo.cc
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/comb/young-tab-rgs-out.txt
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/comb/young-tab-rgs-subset-lex-demo.cc
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/comb/young-tab-rgs-subset-lex-out.txt
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/ds/bitarray-demo.cc
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/ds/bitarray-out.txt
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/ds/bitarray2d-demo.cc
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/ds/bitarray2d-out.txt
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/ds/deque-demo.cc
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/ds/deque-out.txt
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/ds/left-right-array-demo.cc
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/ds/left-right-array-out.txt
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/ds/priorityqueue-demo.cc
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/ds/priorityqueue-out.txt
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/ds/queue-demo.cc
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/ds/queue-out.txt
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/ds/ringbuffer-demo.cc
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/ds/ringbuffer-out.txt
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/ds/stack-demo.cc
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/ds/stack-out.txt
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/fft/butterfly-texpic-demo.cc
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/fft/butterfly-texpic-out.txt
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/fft/fft-arblen-demo.cc
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/fft/fft-arblen-out.txt
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/fft/fht-bench.cc
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/fft/fib-haar-demo.cc
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/fft/fib-haar-out.txt
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/fft/fib-walsh-demo.cc
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/fft/fib-walsh-out.txt
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/fft/gen-walsh-demo.cc
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/fft/gen-walsh-out.txt
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/fft/locrec-demo.cc
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/fft/locrec-out.txt
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/fft/mers-haar-demo.cc
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/fft/mers-haar-out.txt
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/fft/mers-walsh-demo.cc
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/fft/mers-walsh-out.txt
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/fft/walsh-basis-demo.cc
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/fft/walsh-basis-out.txt
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/fft/walsh-bench.cc
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/fft/walsh-eigenvec-demo.cc
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/fft/walsh-eigenvec-out.txt
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/gf2n/all-irredpoly-demo.cc
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/gf2n/all-irredpoly-out.txt
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/gf2n/all-normalpoly-demo.cc
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/gf2n/all-normalpoly-out.txt
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/gf2n/all-primpoly-srs-demo.cc
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/gf2n/all-primpoly-srs-out.txt
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/gf2n/bitmat-circulant-demo.cc
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/gf2n/bitmat-circulant-out.txt
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/gf2n/bitmat-kronecker-demo.cc
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/gf2n/bitmat-kronecker-out.txt
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/gf2n/bitpol-inverse-demo.cc
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/gf2n/bitpol-inverse-out.txt
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/gf2n/bitpol-search-irred-demo.cc
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/gf2n/bitpol-search-irred-out.txt
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/gf2n/bitpol-srp-demo.cc
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/gf2n/bitpol-srp-out.txt
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/gf2n/bitpolfactor-demo.cc
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/gf2n/bitpolfactor-out.txt
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/gf2n/bitpolmodmult-demo.cc
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/gf2n/bitpolmodmult-out.txt
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/gf2n/bitpolmult-demo.cc
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/gf2n/bitpolmult-out.txt
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/gf2n/clhca-demo.cc
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/gf2n/clhca-out.txt
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/gf2n/fcsr-demo.cc
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/gf2n/fcsr-out.txt
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/gf2n/gf2n-demo.cc
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/gf2n/gf2n-matrix-demo.cc
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/gf2n/gf2n-matrix-out.txt
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/gf2n/gf2n-minpoly-demo.cc
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/gf2n/gf2n-minpoly-out.txt
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/gf2n/gf2n-normal-demo.cc
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/gf2n/gf2n-normal-out.txt
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/gf2n/gf2n-out.txt
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/gf2n/gf2n-solvequadratic-demo.cc
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/gf2n/gf2n-solvequadratic-out.txt
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/gf2n/gf2n-trace0-generators-demo.cc
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/gf2n/gf2n-trace0-generators-out.txt
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/gf2n/lfsr-demo.cc
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/gf2n/lfsr-fibonacci-demo.cc
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/gf2n/lfsr-fibonacci-out.txt
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/gf2n/lfsr-galois-demo.cc
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/gf2n/lfsr-galois-out.txt
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/gf2n/lfsr-out.txt
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/gf2n/lfsr-revbin-demo.cc
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/gf2n/lfsr-revbin-out.txt
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/gf2n/lfsr-trace0-generators-demo.cc
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/gf2n/lfsr-trace0-generators-out.txt
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/gf2n/lhca-demo.cc
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/gf2n/lhca-out.txt
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/gf2n/lhca2poly-demo.cc
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/gf2n/lhca2poly-out.txt
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/gf2n/lowbit-lhca-demo.cc
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/gf2n/lowbit-lhca-out.txt
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/gf2n/minweight-lowbit-lhca-demo.cc
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/gf2n/minweight-lowbit-lhca-out.txt
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/gf2n/necklace2irred-demo.cc
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/gf2n/necklace2irred-out.txt
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/gf2n/normalbasis-demo.cc
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/gf2n/normalbasis-out.txt
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/gf2n/normalpoly-dual-demo.cc
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/gf2n/normalpoly-dual-out.txt
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/gf2n/poly2lhca-demo.cc
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/gf2n/poly2lhca-out.txt
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/gf2n/primefact-demo.cc
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/gf2n/primefact-out.txt
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/gf2n/qmatrix-demo.cc
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/gf2n/qmatrix-out.txt
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/graph/graph-acgray-demo.cc
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/graph/graph-acgray-out.txt
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/graph/graph-complementshift-demo.cc
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/graph/graph-complementshift-out.txt
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/graph/graph-debruijn-demo.cc
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/graph/graph-debruijn-m-demo.cc
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/graph/graph-debruijn-m-out.txt
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/graph/graph-debruijn-out.txt
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/graph/graph-fibrepgray-demo.cc
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/graph/graph-fibrepgray-out.txt
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/graph/graph-gray-demo.cc
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/graph/graph-gray-out.txt
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/graph/graph-lyndon-gray-demo.cc
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/graph/graph-lyndon-gray-out.txt
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/graph/graph-macgray-demo.cc
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/graph/graph-macgray-out.txt
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/graph/graph-monotonicgray-demo.cc
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/graph/graph-monotonicgray-out.txt
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/graph/graph-mtl-demo.cc
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/graph/graph-mtl-out.txt
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/graph/graph-parengray-demo.cc
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/graph/graph-parengray-out.txt
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/graph/graph-perm-demo.cc
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/graph/graph-perm-doubly-adjacent-gray-demo.cc
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/graph/graph-perm-doubly-adjacent-gray-out.txt
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/graph/graph-perm-out.txt
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/graph/graph-perm-pref-rev-demo.cc
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/graph/graph-perm-pref-rev-out.txt
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/graph/graph-perm-pref-rot-demo.cc
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/graph/graph-perm-pref-rot-out.txt
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/graph/graph-perm-star-transpositions-demo.cc
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/graph/graph-perm-star-transpositions-out.txt
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/graph/lyndon-gray-demo.cc
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/graph/lyndon-gray-out.txt
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/graph/sta-graph-acgray-demo.cc
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/graph/sta-graph-acgray-out.txt
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/graph/sta-graph-macgray-demo.cc
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/graph/sta-graph-macgray-out.txt
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/mod/divisors-demo.cc
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/mod/divisors-out.txt
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/mod/eratosthenes-demo.cc
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/mod/eratosthenes-out.txt
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/mod/fftprimes-demo.cc
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/mod/fftprimes-out.txt
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/mod/kronecker-demo.cc
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/mod/kronecker-out.txt
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/mod/mod-residues-demo.cc
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/mod/mod-residues-out.txt
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/mod/modarithtables-demo.cc
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/mod/modarithtables-out.txt
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/mod/modinfo-demo.cc
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/mod/modinfo-out.txt
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/mod/modsincos-demo.cc
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/mod/modsincos-out.txt
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/mod/rabinmiller-demo.cc
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/mod/rabinmiller-out.txt
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/perm/ccf2perm-demo.cc
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/perm/ccf2perm-out.txt
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/perm/cycles-demo.cc
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/perm/cycles-out.txt
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/perm/perm-decomp-demo.cc
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/perm/perm-decomp-out.txt
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/perm/perm-invert-notag-demo.cc
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/perm/perm-invert-notag-out.txt
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/perm/permfunc-demo.cc
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/perm/permfunc-out.txt
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/perm/permgray-leaders-demo.cc
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/perm/permgray-leaders-out.txt
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/perm/permrand-connected-demo.cc
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/perm/permrand-connected-out.txt
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/perm/permrand-cyclic-demo.cc
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/perm/permrand-cyclic-out.txt
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/perm/permrand-derange-demo.cc
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/perm/permrand-derange-out.txt
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/perm/permrand-sdc-demo.cc
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/perm/permrand-sdc-out.txt
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/perm/permrand-self-inverse-demo.cc
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/perm/permrand-self-inverse-out.txt
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/perm/permutation-matrix-demo.cc
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/perm/permutation-matrix-out.txt
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/perm/revbin-perm-rec-demo.cc
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/perm/revbin-perm-rec-out.txt
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/perm/swap-blocks-demo.cc
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/perm/swap-blocks-out.txt
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/seq/A000793-demo.cc
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/seq/A000793-out.txt
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/seq/A003040-demo.cc
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/seq/A003040-out.txt
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/seq/A003043-demo.cc
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/seq/A003043-out.txt
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/seq/A005351-demo.cc
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/seq/A005351-out.txt
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/seq/A005576-demo.cc
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/seq/A005576-out.txt
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/seq/A005943-demo.cc
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/seq/A005943-out.txt
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/seq/A006951-demo.cc
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/seq/A006951-out.txt
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/seq/A007608-demo.cc
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/seq/A007608-out.txt
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/seq/A039724-demo.cc
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/seq/A039724-out.txt
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/seq/A042942-demo.cc
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/seq/A042942-out.txt
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/seq/A062200-demo.cc
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/seq/A062200-out.txt
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/seq/A066411-demo.cc
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/seq/A066411-out.txt
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/seq/A080936-demo.cc
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/seq/A080936-out.txt
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/seq/A100749-demo.cc
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/seq/A100749-out.txt
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/seq/A175498-demo.cc
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/seq/A175498-out.txt
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/seq/A177505-demo.cc
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/seq/A177505-out.txt
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/seq/A178514-demo.cc
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/seq/A178514-out.txt
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/seq/A178715-demo.cc
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/seq/A178715-out.txt
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/seq/A179009-demo.cc
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/seq/A179009-out.txt
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/seq/A179080-demo.cc
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/seq/A179080-out.txt
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/seq/A182039-demo.cc
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/seq/A182039-out.txt
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/seq/A182372-demo.cc
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/seq/A182372-out.txt
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/seq/A186053-demo.cc
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/seq/A186053-out.txt
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/seq/A187081-demo.cc
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/seq/A187081-out.txt
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/seq/A191755-demo.cc
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/seq/A191755-out.txt
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/seq/A206464-demo.cc
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/seq/A206464-out.txt
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/seq/A206702-demo.cc
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/seq/A206702-out.txt
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/seq/A207018-demo.cc
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/seq/A207018-out.txt
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/seq/A209411-demo.cc
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/seq/A209411-out.txt
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/seq/A212494-demo.cc
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/seq/A212494-out.txt
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/seq/A213243-demo.cc
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/seq/A213243-out.txt
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/seq/A215327-demo.cc
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/seq/A215327-out.txt
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/seq/A217262-demo.cc
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/seq/A217262-out.txt
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/seq/A217605-demo.cc
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/seq/A217605-out.txt
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/seq/A218293-demo.cc
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/seq/A218293-out.txt
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/seq/A218396-demo.cc
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/seq/A218396-out.txt
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/seq/A218694-demo.cc
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/seq/A218694-out.txt
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/seq/A218757-demo.cc
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/seq/A218757-out.txt
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/seq/A225084-demo.cc
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/seq/A225084-out.txt
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/seq/A225095-demo.cc
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/seq/A225095-out.txt
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/seq/A225616-demo.cc
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/seq/A225616-out.txt
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/seq/A226893-demo.cc
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/seq/A226893-out.txt
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/seq/A227344-demo.cc
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/seq/A227344-out.txt
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/seq/A240949-demo.cc
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/seq/A240949-out.txt
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/seq/A247386-demo.cc
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/seq/A247386-out.txt
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/seq/A249872-demo.cc
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/seq/A249872-out.txt
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/seq/A259095-demo.cc
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/seq/A259095-out.txt
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/seq/A276691-demo.cc
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/seq/A276691-out.txt
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/seq/A278479-demo.cc
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/seq/A278479-out.txt
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/sort/equivclass-bitstring-demo.cc
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/sort/equivclass-bitstring-out.txt
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/sort/equivclass-bracelets-demo.cc
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/sort/equivclass-bracelets-out.txt
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/sort/equivclass-necklaces-demo.cc
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/sort/equivclass-necklaces-out.txt
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/sort/heapsort-demo.cc
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/sort/heapsort-out.txt
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/sort/merge-sort-demo.cc
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/sort/merge-sort-out.txt
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/sort/merge-sort4-demo.cc
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/sort/merge-sort4-out.txt
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/sort/radixsort-demo.cc
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/sort/radixsort-out.txt
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/sort/selection-sort-demo.cc
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/sort/selection-sort-out.txt
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/sort/sort-complex-demo.cc
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/sort/sort-complex-out.txt
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/sort/sort-demo.cc
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/sort/sort-out.txt
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/sort/sort-string-demo.cc
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/sort/sort-string-out.txt
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/sort/sortidx-demo.cc
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/sort/sortidx-out.txt
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/sort/sortptr-demo.cc
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/sort/sortptr-out.txt
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/sort/unique-demo.cc
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/sort/unique-out.txt
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/topics.txt