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
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
|
------------------------------------------------------------------------------
-- --
-- GNAT LIBRARY COMPONENTS --
-- --
-- A D A . C O N T A I N E R S . F O R M A L _ O R D E R E D _ S E T S --
-- --
-- B o d y --
-- --
-- Copyright (C) 2010, Free Software Foundation, Inc. --
-- --
-- GNAT is free software; you can redistribute it and/or modify it under --
-- terms of the GNU General Public License as published by the Free Soft- --
-- ware Foundation; either version 3, or (at your option) any later ver- --
-- sion. GNAT is distributed in the hope that it will be useful, but WITH- --
-- OUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY --
-- or FITNESS FOR A PARTICULAR PURPOSE. --
-- --
-- As a special exception under Section 7 of GPL version 3, you are granted --
-- additional permissions described in the GCC Runtime Library Exception, --
-- version 3.1, as published by the Free Software Foundation. --
-- --
-- You should have received a copy of the GNU General Public License and --
-- a copy of the GCC Runtime Library Exception along with this program; --
-- see the files COPYING3 and COPYING.RUNTIME respectively. If not, see --
-- <http://www.gnu.org/licenses/>. --
------------------------------------------------------------------------------
with Ada.Containers.Red_Black_Trees.Generic_Bounded_Operations;
pragma Elaborate_All
(Ada.Containers.Red_Black_Trees.Generic_Bounded_Operations);
with Ada.Containers.Red_Black_Trees.Generic_Bounded_Keys;
pragma Elaborate_All (Ada.Containers.Red_Black_Trees.Generic_Bounded_Keys);
with Ada.Containers.Red_Black_Trees.Generic_Bounded_Set_Operations;
pragma Elaborate_All
(Ada.Containers.Red_Black_Trees.Generic_Bounded_Set_Operations);
with System; use type System.Address;
package body Ada.Containers.Formal_Ordered_Sets is
------------------------------
-- Access to Fields of Node --
------------------------------
-- These subprograms provide functional notation for access to fields
-- of a node, and procedural notation for modifiying these fields.
function Color (Node : Node_Type) return Red_Black_Trees.Color_Type;
pragma Inline (Color);
function Left_Son (Node : Node_Type) return Count_Type;
pragma Inline (Left);
function Parent (Node : Node_Type) return Count_Type;
pragma Inline (Parent);
function Right_Son (Node : Node_Type) return Count_Type;
pragma Inline (Right);
procedure Set_Color
(Node : in out Node_Type;
Color : Red_Black_Trees.Color_Type);
pragma Inline (Set_Color);
procedure Set_Left (Node : in out Node_Type; Left : Count_Type);
pragma Inline (Set_Left);
procedure Set_Right (Node : in out Node_Type; Right : Count_Type);
pragma Inline (Set_Right);
procedure Set_Parent (Node : in out Node_Type; Parent : Count_Type);
pragma Inline (Set_Parent);
-----------------------
-- Local Subprograms --
-----------------------
generic
with procedure Set_Element (Node : in out Node_Type);
procedure Generic_Allocate
(Tree : in out Tree_Types.Tree_Type'Class;
Node : out Count_Type);
procedure Assign (Target : in out Tree_Types.Tree_Type;
Source : Tree_Types.Tree_Type);
procedure Clear (Container : in out Tree_Types.Tree_Type);
procedure Free (Tree : in out Tree_Types.Tree_Type; X : Count_Type);
procedure Insert_Sans_Hint
(Container : in out Tree_Types.Tree_Type;
New_Item : Element_Type;
Node : out Count_Type;
Inserted : out Boolean);
procedure Insert_With_Hint
(Dst_Set : in out Tree_Types.Tree_Type;
Dst_Hint : Count_Type;
Src_Node : Node_Type;
Dst_Node : out Count_Type);
function Is_Greater_Element_Node
(Left : Element_Type;
Right : Node_Type) return Boolean;
pragma Inline (Is_Greater_Element_Node);
function Is_Less_Element_Node
(Left : Element_Type;
Right : Node_Type) return Boolean;
pragma Inline (Is_Less_Element_Node);
function Is_Less_Node_Node (L, R : Node_Type) return Boolean;
pragma Inline (Is_Less_Node_Node);
generic
with procedure Process (Node : Count_Type) is <>;
procedure Iterate_Between (Tree : Tree_Types.Tree_Type;
From : Count_Type;
To : Count_Type);
function Next_Unchecked
(Container : Set;
Position : Count_Type) return Count_Type;
procedure Replace_Element
(Tree : in out Tree_Types.Tree_Type;
Node : Count_Type;
Item : Element_Type);
--------------------------
-- Local Instantiations --
--------------------------
package Tree_Operations is
new Red_Black_Trees.Generic_Bounded_Operations
(Tree_Types,
Left => Left_Son,
Right => Right_Son);
use Tree_Operations;
package Element_Keys is
new Red_Black_Trees.Generic_Bounded_Keys
(Tree_Operations => Tree_Operations,
Key_Type => Element_Type,
Is_Less_Key_Node => Is_Less_Element_Node,
Is_Greater_Key_Node => Is_Greater_Element_Node);
package Set_Ops is
new Red_Black_Trees.Generic_Bounded_Set_Operations
(Tree_Operations => Tree_Operations,
Set_Type => Tree_Types.Tree_Type,
Assign => Assign,
Insert_With_Hint => Insert_With_Hint,
Is_Less => Is_Less_Node_Node);
---------
-- "=" --
---------
function "=" (Left, Right : Set) return Boolean is
Lst : Count_Type;
Node : Count_Type := First (Left).Node;
ENode : Count_Type;
begin
if Length (Left) /= Length (Right) then
return False;
end if;
if Is_Empty (Left) then
return True;
end if;
Lst := Next (Left.Tree.all, Last (Left).Node);
while Node /= Lst loop
ENode := Find (Right, Left.Tree.Nodes (Node).Element).Node;
if ENode = 0 or else
Left.Tree.Nodes (Node).Element /= Right.Tree.Nodes (ENode).Element
then
return False;
end if;
Node := Next (Left.Tree.all, Node);
end loop;
return True;
end "=";
------------
-- Assign --
------------
procedure Assign (Target : in out Tree_Types.Tree_Type;
Source : Tree_Types.Tree_Type) is
procedure Append_Element (Source_Node : Count_Type);
procedure Append_Elements is
new Tree_Operations.Generic_Iteration (Append_Element);
--------------------
-- Append_Element --
--------------------
procedure Append_Element (Source_Node : Count_Type) is
SN : Node_Type renames Source.Nodes (Source_Node);
procedure Set_Element (Node : in out Node_Type);
pragma Inline (Set_Element);
function New_Node return Count_Type;
pragma Inline (New_Node);
procedure Insert_Post is
new Element_Keys.Generic_Insert_Post (New_Node);
procedure Unconditional_Insert_Sans_Hint is
new Element_Keys.Generic_Unconditional_Insert (Insert_Post);
procedure Unconditional_Insert_Avec_Hint is
new Element_Keys.Generic_Unconditional_Insert_With_Hint
(Insert_Post,
Unconditional_Insert_Sans_Hint);
procedure Allocate is
new Generic_Allocate (Set_Element);
--------------
-- New_Node --
--------------
function New_Node return Count_Type is
Result : Count_Type;
begin
Allocate (Target, Result);
return Result;
end New_Node;
-----------------
-- Set_Element --
-----------------
procedure Set_Element (Node : in out Node_Type) is
begin
Node.Element := SN.Element;
end Set_Element;
Target_Node : Count_Type;
-- Start of processing for Append_Element
begin
Unconditional_Insert_Avec_Hint
(Tree => Target,
Hint => 0,
Key => SN.Element,
Node => Target_Node);
end Append_Element;
-- Start of processing for Assign
begin
if Target'Address = Source'Address then
return;
end if;
if Target.Capacity < Source.Length then
raise Constraint_Error
with "Target capacity is less than Source length";
end if;
Tree_Operations.Clear_Tree (Target);
Append_Elements (Source);
end Assign;
procedure Assign (Target : in out Set; Source : Set) is
X : Count_Type;
begin
if Target.K /= Plain then
raise Constraint_Error
with "Can't modify part of container";
end if;
if Target'Address = Source'Address then
return;
end if;
if Target.Capacity < Length (Source) then
raise Storage_Error with "not enough capacity"; -- SE or CE? ???
end if;
if Source.K = Plain then
Assign (Target => Target.Tree.all, Source => Source.Tree.all);
else
declare
procedure Append_Element (Source_Node : Count_Type);
procedure Append_Element (Source_Node : Count_Type) is
SN : Node_Type renames Source.Tree.Nodes (Source_Node);
procedure Set_Element (Node : in out Node_Type);
pragma Inline (Set_Element);
function New_Node return Count_Type;
pragma Inline (New_Node);
procedure Insert_Post is
new Element_Keys.Generic_Insert_Post (New_Node);
procedure Unconditional_Insert_Sans_Hint is
new Element_Keys.Generic_Unconditional_Insert (Insert_Post);
procedure Unconditional_Insert_Avec_Hint is
new Element_Keys.Generic_Unconditional_Insert_With_Hint
(Insert_Post,
Unconditional_Insert_Sans_Hint);
procedure Allocate is
new Generic_Allocate (Set_Element);
--------------
-- New_Node --
--------------
function New_Node return Count_Type is
Result : Count_Type;
begin
Allocate (Target.Tree.all, Result);
return Result;
end New_Node;
-----------------
-- Set_Element --
-----------------
procedure Set_Element (Node : in out Node_Type) is
begin
Node.Element := SN.Element;
end Set_Element;
Target_Node : Count_Type;
-- Start of processing for Append_Element
begin
Unconditional_Insert_Avec_Hint
(Tree => Target.Tree.all,
Hint => 0,
Key => SN.Element,
Node => Target_Node);
end Append_Element;
begin
Tree_Operations.Clear_Tree (Target.Tree.all);
X := Source.First;
while X /= Next (Source.Tree.all, Source.Last) loop
Append_Element (X);
X := Next (Source.Tree.all, X);
end loop;
end;
end if;
end Assign;
-------------
-- Ceiling --
-------------
function Ceiling (Container : Set; Item : Element_Type) return Cursor is
begin
if Container.K = Part then
if Container.Length = 0 then
return No_Element;
end if;
if Item < Container.Tree.Nodes (Container.First).Element then
return (Node => Container.First);
end if;
if Container.Tree.Nodes (Container.Last).Element < Item then
return No_Element;
end if;
end if;
declare
Node : constant Count_Type :=
Element_Keys.Ceiling (Container.Tree.all, Item);
begin
if Node = 0 then
return No_Element;
end if;
return (Node => Node);
end;
end Ceiling;
-----------
-- Clear --
-----------
procedure Clear (Container : in out Tree_Types.Tree_Type) is
begin
Tree_Operations.Clear_Tree (Container);
end Clear;
procedure Clear (Container : in out Set) is
begin
if Container.K /= Plain then
raise Constraint_Error
with "Can't modify part of container";
end if;
Clear (Container.Tree.all);
end Clear;
-----------
-- Color --
-----------
function Color (Node : Node_Type) return Red_Black_Trees.Color_Type is
begin
return Node.Color;
end Color;
--------------
-- Contains --
--------------
function Contains
(Container : Set;
Item : Element_Type) return Boolean
is
begin
return Find (Container, Item) /= No_Element;
end Contains;
----------
-- Copy --
----------
function Copy (Source : Set; Capacity : Count_Type := 0) return Set is
Node : Count_Type := 1;
N : Count_Type;
Cu : Cursor;
Target : Set (Count_Type'Max (Source.Capacity, Capacity));
begin
if Length (Source) > 0 then
Target.Tree.Length := Source.Tree.Length;
Target.Tree.Root := Source.Tree.Root;
Target.Tree.First := Source.Tree.First;
Target.Tree.Last := Source.Tree.Last;
Target.Tree.Free := Source.Tree.Free;
while Node <= Source.Capacity loop
Target.Tree.Nodes (Node).Element :=
Source.Tree.Nodes (Node).Element;
Target.Tree.Nodes (Node).Parent :=
Source.Tree.Nodes (Node).Parent;
Target.Tree.Nodes (Node).Left :=
Source.Tree.Nodes (Node).Left;
Target.Tree.Nodes (Node).Right :=
Source.Tree.Nodes (Node).Right;
Target.Tree.Nodes (Node).Color :=
Source.Tree.Nodes (Node).Color;
Target.Tree.Nodes (Node).Has_Element :=
Source.Tree.Nodes (Node).Has_Element;
Node := Node + 1;
end loop;
while Node <= Target.Capacity loop
N := Node;
Formal_Ordered_Sets.Free (Tree => Target.Tree.all, X => N);
Node := Node + 1;
end loop;
if Source.K = Part then
Node := Target.Tree.First;
while Node /= Source.First loop
Cu := (Node => Node);
Node := Next (Target.Tree.all, Node);
Delete (Target, Cu);
end loop;
Node := Next (Target.Tree.all, Source.Last);
while Node /= 0 loop
Cu := (Node => Node);
Node := Next (Target.Tree.all, Node);
Delete (Target, Cu);
end loop;
end if;
Node := 1;
end if;
return Target;
end Copy;
------------
-- Delete --
------------
procedure Delete (Container : in out Set; Position : in out Cursor) is
begin
if Container.K /= Plain then
raise Constraint_Error
with "Can't modify part of container";
end if;
if not Has_Element (Container, Position) then
raise Constraint_Error with "Position cursor has no element";
end if;
pragma Assert (Vet (Container.Tree.all, Position.Node),
"bad cursor in Delete");
Tree_Operations.Delete_Node_Sans_Free (Container.Tree.all,
Position.Node);
Formal_Ordered_Sets.Free (Container.Tree.all, Position.Node);
Position := No_Element;
end Delete;
procedure Delete (Container : in out Set; Item : Element_Type) is
X : constant Count_Type := Element_Keys.Find (Container.Tree.all, Item);
begin
if Container.K /= Plain then
raise Constraint_Error
with "Can't modify part of container";
end if;
if X = 0 then
raise Constraint_Error with "attempt to delete element not in set";
end if;
Tree_Operations.Delete_Node_Sans_Free (Container.Tree.all, X);
Formal_Ordered_Sets.Free (Container.Tree.all, X);
end Delete;
------------------
-- Delete_First --
------------------
procedure Delete_First (Container : in out Set) is
Tree : Tree_Types.Tree_Type renames Container.Tree.all;
X : constant Count_Type := Tree.First;
begin
if Container.K /= Plain then
raise Constraint_Error
with "Can't modify part of container";
end if;
if X /= 0 then
Tree_Operations.Delete_Node_Sans_Free (Tree, X);
Formal_Ordered_Sets.Free (Tree, X);
end if;
end Delete_First;
-----------------
-- Delete_Last --
-----------------
procedure Delete_Last (Container : in out Set) is
Tree : Tree_Types.Tree_Type renames Container.Tree.all;
X : constant Count_Type := Tree.Last;
begin
if Container.K /= Plain then
raise Constraint_Error
with "Can't modify part of container";
end if;
if X /= 0 then
Tree_Operations.Delete_Node_Sans_Free (Tree, X);
Formal_Ordered_Sets.Free (Tree, X);
end if;
end Delete_Last;
----------------
-- Difference --
----------------
procedure Difference (Target : in out Set; Source : Set) is
begin
if Target.K /= Plain then
raise Constraint_Error
with "Can't modify part of container";
end if;
if Source.K = Plain then
Set_Ops.Set_Difference (Target.Tree.all, Source.Tree.all);
else
declare
Tgt : Count_Type := Target.Tree.First;
Src : Count_Type := Source.First;
begin
if Target'Address = Source'Address then
if Target.Tree.Busy > 0 then
raise Program_Error with
"attempt to tamper with cursors (container is busy)";
end if;
Clear (Target.Tree.all);
return;
end if;
if Source.Length = 0 then
return;
end if;
if Target.Tree.Busy > 0 then
raise Program_Error with
"attempt to tamper with cursors (container is busy)";
end if;
loop
if Tgt = 0 then
return;
end if;
if Src = Next (Source.Tree.all, Source.Last) then
return;
end if;
if Target.Tree.Nodes (Tgt).Element <
Source.Tree.Nodes (Src).Element then
Tgt := Next (Target.Tree.all, Tgt);
elsif Source.Tree.Nodes (Src).Element <
Target.Tree.Nodes (Tgt).Element then
Src := Next (Source.Tree.all, Src);
else
declare
X : constant Count_Type := Tgt;
begin
Tgt := Next (Target.Tree.all, Tgt);
Delete_Node_Sans_Free (Target.Tree.all, X);
Formal_Ordered_Sets.Free (Target.Tree.all, X);
end;
Src := Next (Source.Tree.all, Src);
end if;
end loop;
end;
end if;
end Difference;
function Difference (Left, Right : Set) return Set is
begin
if Left'Address = Right'Address then
return Empty_Set;
end if;
if Length (Left) = 0 then
return Empty_Set;
end if;
if Length (Right) = 0 then
return Left.Copy;
end if;
return S : Set (Length (Left)) do
if Left.K = Plain and Right.K = Plain then
Assign (S.Tree.all,
Set_Ops.Set_Difference (Left.Tree.all, Right.Tree.all));
else
declare
Tree : Tree_Types.Tree_Type renames S.Tree.all;
L_Node : Count_Type := First (Left).Node;
R_Node : Count_Type := First (Right).Node;
L_Last : constant Count_Type := Next (Left.Tree.all,
Last (Left).Node);
R_Last : constant Count_Type := Next (Right.Tree.all,
Last (Right).Node);
Dst_Node : Count_Type;
begin
loop
if L_Node = L_Last then
return;
end if;
if R_Node = R_Last then
while L_Node /= L_Last loop
Insert_With_Hint
(Dst_Set => Tree,
Dst_Hint => 0,
Src_Node => Left.Tree.Nodes (L_Node),
Dst_Node => Dst_Node);
L_Node := Next (Left.Tree.all, L_Node);
end loop;
return;
end if;
if Left.Tree.Nodes (L_Node).Element <
Right.Tree.Nodes (R_Node).Element then
Insert_With_Hint
(Dst_Set => Tree,
Dst_Hint => 0,
Src_Node => Left.Tree.Nodes (L_Node),
Dst_Node => Dst_Node);
L_Node := Next (Left.Tree.all, L_Node);
elsif Right.Tree.Nodes (R_Node).Element <
Left.Tree.Nodes (L_Node).Element then
R_Node := Next (Right.Tree.all, R_Node);
else
L_Node := Next (Left.Tree.all, L_Node);
R_Node := Next (Right.Tree.all, R_Node);
end if;
end loop;
end;
end if;
end return;
end Difference;
-------------
-- Element --
-------------
function Element (Container : Set; Position : Cursor) return Element_Type is
begin
if not Has_Element (Container, Position) then
raise Constraint_Error with "Position cursor has no element";
end if;
pragma Assert (Vet (Container.Tree.all, Position.Node),
"bad cursor in Element");
declare
N : Tree_Types.Nodes_Type renames Container.Tree.Nodes;
begin
return N (Position.Node).Element;
end;
end Element;
-------------------------
-- Equivalent_Elements --
-------------------------
function Equivalent_Elements (Left, Right : Element_Type) return Boolean is
begin
if Left < Right
or else Right < Left
then
return False;
else
return True;
end if;
end Equivalent_Elements;
---------------------
-- Equivalent_Sets --
---------------------
function Equivalent_Sets (Left, Right : Set) return Boolean is
function Is_Equivalent_Node_Node
(L, R : Node_Type) return Boolean;
pragma Inline (Is_Equivalent_Node_Node);
function Is_Equivalent is
new Tree_Operations.Generic_Equal (Is_Equivalent_Node_Node);
-----------------------------
-- Is_Equivalent_Node_Node --
-----------------------------
function Is_Equivalent_Node_Node (L, R : Node_Type) return Boolean is
begin
if L.Element < R.Element then
return False;
elsif R.Element < L.Element then
return False;
else
return True;
end if;
end Is_Equivalent_Node_Node;
-- Start of processing for Equivalent_Sets
begin
if Left.K = Plain and Right.K = Plain then
return Is_Equivalent (Left.Tree.all, Right.Tree.all);
end if;
if Left'Address = Right'Address then
return True;
end if;
if Length (Left) /= Length (Right) then
return False;
end if;
if Length (Left) = 0 then
return True;
end if;
declare
L_Node : Count_Type;
R_Node : Count_Type;
L_Last : constant Count_Type := Next (Left.Tree.all,
Last (Left).Node);
begin
L_Node := First (Left).Node;
R_Node := First (Right).Node;
while L_Node /= L_Last loop
if not Is_Equivalent_Node_Node (Left.Tree.Nodes (L_Node),
Right.Tree.Nodes (R_Node)) then
return False;
end if;
L_Node := Next (Left.Tree.all, L_Node);
R_Node := Next (Right.Tree.all, R_Node);
end loop;
return True;
end;
end Equivalent_Sets;
-------------
-- Exclude --
-------------
procedure Exclude (Container : in out Set; Item : Element_Type) is
X : constant Count_Type := Element_Keys.Find (Container.Tree.all, Item);
begin
if Container.K /= Plain then
raise Constraint_Error
with "Can't modify part of container";
end if;
if X /= 0 then
Tree_Operations.Delete_Node_Sans_Free (Container.Tree.all, X);
Formal_Ordered_Sets.Free (Container.Tree.all, X);
end if;
end Exclude;
----------
-- Find --
----------
function Find (Container : Set; Item : Element_Type) return Cursor is
begin
if Container.K = Part then
if Container.Length = 0 then
return No_Element;
end if;
if Item < Container.Tree.Nodes (Container.First).Element or
Container.Tree.Nodes (Container.Last).Element < Item then
return No_Element;
end if;
end if;
declare
Node : constant Count_Type :=
Element_Keys.Find (Container.Tree.all, Item);
begin
if Node = 0 then
return No_Element;
end if;
return (Node => Node);
end;
end Find;
-----------
-- First --
-----------
function First (Container : Set) return Cursor is
begin
if Length (Container) = 0 then
return No_Element;
end if;
if Container.K = Plain then
return (Node => Container.Tree.First);
else
return (Node => Container.First);
end if;
end First;
-------------------
-- First_Element --
-------------------
function First_Element (Container : Set) return Element_Type is
Fst : constant Count_Type := First (Container).Node;
begin
if Fst = 0 then
raise Constraint_Error with "set is empty";
end if;
declare
N : Tree_Types.Nodes_Type renames Container.Tree.Nodes;
begin
return N (Fst).Element;
end;
end First_Element;
-----------
-- Floor --
-----------
function Floor (Container : Set; Item : Element_Type) return Cursor is
begin
if Container.K = Part then
if Container.Length = 0 then
return No_Element;
end if;
if Item < Container.Tree.Nodes (Container.First).Element then
return No_Element;
end if;
if Container.Tree.Nodes (Container.Last).Element < Item then
return (Node => Container.Last);
end if;
end if;
declare
Node : constant Count_Type :=
Element_Keys.Floor (Container.Tree.all, Item);
begin
if Node = 0 then
return No_Element;
end if;
return (Node => Node);
end;
end Floor;
----------
-- Free --
----------
procedure Free
(Tree : in out Tree_Types.Tree_Type;
X : Count_Type)
is
begin
Tree.Nodes (X).Has_Element := False;
Tree_Operations.Free (Tree, X);
end Free;
----------------------
-- Generic_Allocate --
----------------------
procedure Generic_Allocate
(Tree : in out Tree_Types.Tree_Type'Class;
Node : out Count_Type)
is
procedure Allocate is
new Tree_Operations.Generic_Allocate (Set_Element);
begin
Allocate (Tree, Node);
Tree.Nodes (Node).Has_Element := True;
end Generic_Allocate;
------------------
-- Generic_Keys --
------------------
package body Generic_Keys is
-----------------------
-- Local Subprograms --
-----------------------
function Is_Greater_Key_Node
(Left : Key_Type;
Right : Node_Type) return Boolean;
pragma Inline (Is_Greater_Key_Node);
function Is_Less_Key_Node
(Left : Key_Type;
Right : Node_Type) return Boolean;
pragma Inline (Is_Less_Key_Node);
--------------------------
-- Local Instantiations --
--------------------------
package Key_Keys is
new Red_Black_Trees.Generic_Bounded_Keys
(Tree_Operations => Tree_Operations,
Key_Type => Key_Type,
Is_Less_Key_Node => Is_Less_Key_Node,
Is_Greater_Key_Node => Is_Greater_Key_Node);
-------------
-- Ceiling --
-------------
function Ceiling (Container : Set; Key : Key_Type) return Cursor is
begin
if Container.K = Part then
if Container.Length = 0 then
return No_Element;
end if;
if Key < Generic_Keys.Key
(Container.Tree.Nodes (Container.First).Element) then
return (Node => Container.First);
end if;
if Generic_Keys.Key
(Container.Tree.Nodes (Container.Last).Element) < Key then
return No_Element;
end if;
end if;
declare
Node : constant Count_Type :=
Key_Keys.Ceiling (Container.Tree.all, Key);
begin
if Node = 0 then
return No_Element;
end if;
return (Node => Node);
end;
end Ceiling;
--------------
-- Contains --
--------------
function Contains (Container : Set; Key : Key_Type) return Boolean is
begin
return Find (Container, Key) /= No_Element;
end Contains;
------------
-- Delete --
------------
procedure Delete (Container : in out Set; Key : Key_Type) is
begin
if Container.K /= Plain then
raise Constraint_Error
with "Can't modify part of container";
end if;
declare
X : constant Count_Type := Key_Keys.Find (Container.Tree.all, Key);
begin
if X = 0 then
raise Constraint_Error with "attempt to delete key not in set";
end if;
Delete_Node_Sans_Free (Container.Tree.all, X);
Formal_Ordered_Sets.Free (Container.Tree.all, X);
end;
end Delete;
-------------
-- Element --
-------------
function Element (Container : Set; Key : Key_Type) return Element_Type is
begin
if Container.K = Part then
if Container.Length = 0 or else
(Key < Generic_Keys.Key
(Container.Tree.Nodes (Container.First).Element) or
Generic_Keys.Key
(Container.Tree.Nodes (Container.Last).Element) < Key) then
raise Constraint_Error with "key not in set";
end if;
end if;
declare
Node : constant Count_Type :=
Key_Keys.Find (Container.Tree.all, Key);
begin
if Node = 0 then
raise Constraint_Error with "key not in set";
end if;
declare
N : Tree_Types.Nodes_Type renames Container.Tree.Nodes;
begin
return N (Node).Element;
end;
end;
end Element;
---------------------
-- Equivalent_Keys --
---------------------
function Equivalent_Keys (Left, Right : Key_Type) return Boolean is
begin
if Left < Right
or else Right < Left
then
return False;
else
return True;
end if;
end Equivalent_Keys;
-------------
-- Exclude --
-------------
procedure Exclude (Container : in out Set; Key : Key_Type) is
begin
if Container.K /= Plain then
raise Constraint_Error
with "Can't modify part of container";
end if;
declare
X : constant Count_Type := Key_Keys.Find (Container.Tree.all, Key);
begin
if X /= 0 then
Delete_Node_Sans_Free (Container.Tree.all, X);
Formal_Ordered_Sets.Free (Container.Tree.all, X);
end if;
end;
end Exclude;
----------
-- Find --
----------
function Find (Container : Set; Key : Key_Type) return Cursor is
begin
if Container.K = Part then
if Container.Length = 0 or else
(Key < Generic_Keys.Key
(Container.Tree.Nodes (Container.First).Element) or
Generic_Keys.Key
(Container.Tree.Nodes (Container.Last).Element) < Key) then
return No_Element;
end if;
end if;
declare
Node : constant Count_Type := Key_Keys.Find (Container.Tree.all,
Key);
begin
if Node = 0 then
return No_Element;
end if;
return (Node => Node);
end;
end Find;
-----------
-- Floor --
-----------
function Floor (Container : Set; Key : Key_Type) return Cursor is
begin
if Container.K = Part then
if Container.Length = 0 or else
Key < Generic_Keys.Key
(Container.Tree.Nodes (Container.First).Element) then
return No_Element;
end if;
if Generic_Keys.Key
(Container.Tree.Nodes (Container.Last).Element) < Key then
return (Node => Container.Last);
end if;
end if;
declare
Node : constant Count_Type :=
Key_Keys.Floor (Container.Tree.all, Key);
begin
if Node = 0 then
return No_Element;
end if;
return (Node => Node);
end;
end Floor;
-------------------------
-- Is_Greater_Key_Node --
-------------------------
function Is_Greater_Key_Node
(Left : Key_Type;
Right : Node_Type) return Boolean
is
begin
return Key (Right.Element) < Left;
end Is_Greater_Key_Node;
----------------------
-- Is_Less_Key_Node --
----------------------
function Is_Less_Key_Node
(Left : Key_Type;
Right : Node_Type) return Boolean
is
begin
return Left < Key (Right.Element);
end Is_Less_Key_Node;
---------
-- Key --
---------
function Key (Container : Set; Position : Cursor) return Key_Type is
begin
if not Has_Element (Container, Position) then
raise Constraint_Error with
"Position cursor has no element";
end if;
pragma Assert (Vet (Container.Tree.all, Position.Node),
"bad cursor in Key");
declare
N : Tree_Types.Nodes_Type renames Container.Tree.Nodes;
begin
return Key (N (Position.Node).Element);
end;
end Key;
-------------
-- Replace --
-------------
procedure Replace
(Container : in out Set;
Key : Key_Type;
New_Item : Element_Type)
is
Node : constant Count_Type := Key_Keys.Find (Container.Tree.all, Key);
begin
if Container.K /= Plain then
raise Constraint_Error
with "Can't modify part of container";
end if;
if not Has_Element (Container, (Node => Node)) then
raise Constraint_Error with
"attempt to replace key not in set";
end if;
Replace_Element (Container.Tree.all, Node, New_Item);
end Replace;
-----------------------------------
-- Update_Element_Preserving_Key --
-----------------------------------
procedure Update_Element_Preserving_Key
(Container : in out Set;
Position : Cursor;
Process : not null access procedure (Element : in out Element_Type))
is
Tree : Tree_Types.Tree_Type renames Container.Tree.all;
begin
if Container.K /= Plain then
raise Constraint_Error
with "Can't modify part of container";
end if;
if not Has_Element (Container, Position) then
raise Constraint_Error with
"Position cursor has no element";
end if;
pragma Assert (Vet (Container.Tree.all, Position.Node),
"bad cursor in Update_Element_Preserving_Key");
declare
N : Tree_Types.Nodes_Type renames Container.Tree.Nodes;
E : Element_Type renames N (Position.Node).Element;
K : constant Key_Type := Key (E);
B : Natural renames Tree.Busy;
L : Natural renames Tree.Lock;
begin
B := B + 1;
L := L + 1;
begin
Process (E);
exception
when others =>
L := L - 1;
B := B - 1;
raise;
end;
L := L - 1;
B := B - 1;
if Equivalent_Keys (K, Key (E)) then
return;
end if;
end;
declare
X : constant Count_Type := Position.Node;
begin
Tree_Operations.Delete_Node_Sans_Free (Tree, X);
Formal_Ordered_Sets.Free (Tree, X);
end;
raise Program_Error with "key was modified";
end Update_Element_Preserving_Key;
end Generic_Keys;
-----------------
-- Has_Element --
-----------------
function Has_Element (Container : Set; Position : Cursor) return Boolean is
begin
if Position.Node = 0 then
return False;
end if;
if not Container.Tree.Nodes (Position.Node).Has_Element then
return False;
end if;
if Container.K = Plain then
return True;
end if;
declare
Elt : constant Element_Type :=
Container.Tree.Nodes (Position.Node).Element;
begin
if Elt < Container.Tree.Nodes (Container.First).Element or
Container.Tree.Nodes (Container.Last).Element < Elt then
return False;
end if;
return True;
end;
end Has_Element;
-------------
-- Include --
-------------
procedure Include (Container : in out Set; New_Item : Element_Type) is
Position : Cursor;
Inserted : Boolean;
begin
Insert (Container, New_Item, Position, Inserted);
if not Inserted then
if Container.Tree.Lock > 0 then
raise Program_Error with
"attempt to tamper with cursors (set is locked)";
end if;
declare
N : Tree_Types.Nodes_Type renames Container.Tree.Nodes;
begin
N (Position.Node).Element := New_Item;
end;
end if;
end Include;
------------
-- Insert --
------------
procedure Insert
(Container : in out Set;
New_Item : Element_Type;
Position : out Cursor;
Inserted : out Boolean)
is
begin
if Container.K /= Plain then
raise Constraint_Error
with "Can't modify part of container";
end if;
Insert_Sans_Hint
(Container.Tree.all,
New_Item,
Position.Node,
Inserted);
end Insert;
procedure Insert
(Container : in out Set;
New_Item : Element_Type)
is
Position : Cursor;
Inserted : Boolean;
begin
Insert (Container, New_Item, Position, Inserted);
if not Inserted then
raise Constraint_Error with
"attempt to insert element already in set";
end if;
end Insert;
----------------------
-- Insert_Sans_Hint --
----------------------
procedure Insert_Sans_Hint
(Container : in out Tree_Types.Tree_Type;
New_Item : Element_Type;
Node : out Count_Type;
Inserted : out Boolean)
is
procedure Set_Element (Node : in out Node_Type);
function New_Node return Count_Type;
pragma Inline (New_Node);
procedure Insert_Post is
new Element_Keys.Generic_Insert_Post (New_Node);
procedure Conditional_Insert_Sans_Hint is
new Element_Keys.Generic_Conditional_Insert (Insert_Post);
procedure Allocate is
new Generic_Allocate (Set_Element);
--------------
-- New_Node --
--------------
function New_Node return Count_Type is
Result : Count_Type;
begin
Allocate (Container, Result);
return Result;
end New_Node;
-----------------
-- Set_Element --
-----------------
procedure Set_Element (Node : in out Node_Type) is
begin
Node.Element := New_Item;
end Set_Element;
-- Start of processing for Insert_Sans_Hint
begin
Conditional_Insert_Sans_Hint
(Container,
New_Item,
Node,
Inserted);
end Insert_Sans_Hint;
----------------------
-- Insert_With_Hint --
----------------------
procedure Insert_With_Hint
(Dst_Set : in out Tree_Types.Tree_Type;
Dst_Hint : Count_Type;
Src_Node : Node_Type;
Dst_Node : out Count_Type)
is
Success : Boolean;
pragma Unreferenced (Success);
procedure Set_Element (Node : in out Node_Type);
function New_Node return Count_Type;
pragma Inline (New_Node);
procedure Insert_Post is
new Element_Keys.Generic_Insert_Post (New_Node);
procedure Insert_Sans_Hint is
new Element_Keys.Generic_Conditional_Insert (Insert_Post);
procedure Local_Insert_With_Hint is
new Element_Keys.Generic_Conditional_Insert_With_Hint
(Insert_Post,
Insert_Sans_Hint);
procedure Allocate is
new Generic_Allocate (Set_Element);
--------------
-- New_Node --
--------------
function New_Node return Count_Type is
Result : Count_Type;
begin
Allocate (Dst_Set, Result);
return Result;
end New_Node;
-----------------
-- Set_Element --
-----------------
procedure Set_Element (Node : in out Node_Type) is
begin
Node.Element := Src_Node.Element;
end Set_Element;
-- Start of processing for Insert_With_Hint
begin
Local_Insert_With_Hint
(Dst_Set,
Dst_Hint,
Src_Node.Element,
Dst_Node,
Success);
end Insert_With_Hint;
------------------
-- Intersection --
------------------
procedure Intersection (Target : in out Set; Source : Set) is
begin
if Target.K /= Plain then
raise Constraint_Error
with "Can't modify part of container";
end if;
if Source.K = Plain then
Set_Ops.Set_Intersection (Target.Tree.all, Source.Tree.all);
else
declare
Tgt : Count_Type := Target.First;
Src : Count_Type := Source.First;
S_Last : constant Count_Type :=
Next (Source.Tree.all, Source.Last);
begin
if Target'Address = Source'Address then
return;
end if;
if Target.Tree.Busy > 0 then
raise Program_Error with
"attempt to tamper with cursors (container is busy)";
end if;
if Source.Length = 0 then
Clear (Target);
return;
end if;
while Tgt /= 0
and then Src /= S_Last
loop
if Target.Tree.Nodes (Tgt).Element <
Source.Tree.Nodes (Src).Element then
declare
X : constant Count_Type := Tgt;
begin
Tgt := Next (Target.Tree.all, Tgt);
Delete_Node_Sans_Free (Target.Tree.all, X);
Formal_Ordered_Sets.Free (Target.Tree.all, X);
end;
elsif Source.Tree.Nodes (Src).Element <
Target.Tree.Nodes (Tgt).Element then
Src := Next (Source.Tree.all, Src);
else
Tgt := Next (Target.Tree.all, Tgt);
Src := Next (Source.Tree.all, Src);
end if;
end loop;
while Tgt /= 0 loop
declare
X : constant Count_Type := Tgt;
begin
Tgt := Next (Target.Tree.all, Tgt);
Delete_Node_Sans_Free (Target.Tree.all, X);
Formal_Ordered_Sets.Free (Target.Tree.all, X);
end;
end loop;
end;
end if;
end Intersection;
function Intersection (Left, Right : Set) return Set is
begin
if Left'Address = Right'Address then
return Left.Copy;
end if;
return S : Set (Count_Type'Min (Length (Left), Length (Right))) do
if Left.K = Plain and Right.K = Plain then
Assign (S.Tree.all, Set_Ops.Set_Intersection
(Left.Tree.all, Right.Tree.all));
return;
end if;
if Length (Left) = 0 or Length (Right) = 0 then
return;
end if;
declare
L_Node : Count_Type := First (Left).Node;
R_Node : Count_Type := First (Right).Node;
L_Last : constant Count_Type :=
Next (Left.Tree.all, Last (Left).Node);
R_Last : constant Count_Type :=
Next (Right.Tree.all, Last (Right).Node);
Dst_Node : Count_Type;
begin
loop
if L_Node = L_Last or R_Node = R_Last then
return;
end if;
if Left.Tree.Nodes (L_Node).Element <
Right.Tree.Nodes (R_Node).Element then
L_Node := Next (Left.Tree.all, L_Node);
elsif Right.Tree.Nodes (R_Node).Element <
Left.Tree.Nodes (L_Node).Element then
R_Node := Next (Right.Tree.all, R_Node);
else
Insert_With_Hint
(Dst_Set => S.Tree.all,
Dst_Hint => 0,
Src_Node => Left.Tree.Nodes (L_Node),
Dst_Node => Dst_Node);
L_Node := Next (Left.Tree.all, L_Node);
R_Node := Next (Right.Tree.all, R_Node);
end if;
end loop;
end;
end return;
end Intersection;
--------------
-- Is_Empty --
--------------
function Is_Empty (Container : Set) return Boolean is
begin
return Length (Container) = 0;
end Is_Empty;
-----------------------------
-- Is_Greater_Element_Node --
-----------------------------
function Is_Greater_Element_Node
(Left : Element_Type;
Right : Node_Type) return Boolean
is
begin
-- Compute e > node same as node < e
return Right.Element < Left;
end Is_Greater_Element_Node;
--------------------------
-- Is_Less_Element_Node --
--------------------------
function Is_Less_Element_Node
(Left : Element_Type;
Right : Node_Type) return Boolean
is
begin
return Left < Right.Element;
end Is_Less_Element_Node;
-----------------------
-- Is_Less_Node_Node --
-----------------------
function Is_Less_Node_Node (L, R : Node_Type) return Boolean is
begin
return L.Element < R.Element;
end Is_Less_Node_Node;
---------------
-- Is_Subset --
---------------
function Is_Subset (Subset : Set; Of_Set : Set) return Boolean is
begin
if Subset.K = Plain and Of_Set.K = Plain then
return Set_Ops.Set_Subset (Subset.Tree.all,
Of_Set => Of_Set.Tree.all);
end if;
if Subset'Address = Of_Set'Address then
return True;
end if;
if Length (Subset) > Length (Of_Set) then
return False;
end if;
declare
Subset_Node : Count_Type := First (Subset).Node;
Set_Node : Count_Type := First (Of_Set).Node;
Subset_Last : constant Count_Type :=
Next (Subset.Tree.all, Last (Subset).Node);
Set_Last : constant Count_Type :=
Next (Of_Set.Tree.all, Last (Of_Set).Node);
begin
loop
if Set_Node = Set_Last then
return Subset_Node = 0;
end if;
if Subset_Node = Subset_Last then
return True;
end if;
if Subset.Tree.Nodes (Subset_Node).Element <
Of_Set.Tree.Nodes (Set_Node).Element then
return False;
end if;
if Of_Set.Tree.Nodes (Set_Node).Element <
Subset.Tree.Nodes (Subset_Node).Element then
Set_Node := Next (Of_Set.Tree.all, Set_Node);
else
Set_Node := Next (Of_Set.Tree.all, Set_Node);
Subset_Node := Next (Subset.Tree.all, Subset_Node);
end if;
end loop;
end;
end Is_Subset;
-------------
-- Iterate --
-------------
procedure Iterate
(Container : Set;
Process :
not null access procedure (Container : Set; Position : Cursor))
is
procedure Process_Node (Node : Count_Type);
pragma Inline (Process_Node);
procedure Local_Iterate is
new Tree_Operations.Generic_Iteration (Process_Node);
procedure Local_Iterate_Between is
new Iterate_Between (Process_Node);
------------------
-- Process_Node --
------------------
procedure Process_Node (Node : Count_Type) is
begin
Process (Container, (Node => Node));
end Process_Node;
T : Tree_Types.Tree_Type renames Container.Tree.all;
B : Natural renames T.Busy;
-- Start of prccessing for Iterate
begin
B := B + 1;
begin
if Container.K = Plain then
Local_Iterate (T);
return;
end if;
if Container.Length = 0 then
return;
end if;
Local_Iterate_Between (T, Container.First, Container.Last);
exception
when others =>
B := B - 1;
raise;
end;
B := B - 1;
end Iterate;
---------------------
-- Iterate_Between --
---------------------
procedure Iterate_Between (Tree : Tree_Types.Tree_Type;
From : Count_Type;
To : Count_Type) is
FElt : constant Element_Type := Tree.Nodes (From).Element;
TElt : constant Element_Type := Tree.Nodes (To).Element;
procedure Iterate (P : Count_Type);
-------------
-- Iterate --
-------------
procedure Iterate (P : Count_Type) is
X : Count_Type := P;
begin
while X /= 0 loop
if Tree.Nodes (X).Element < FElt then
X := Tree.Nodes (X).Right;
elsif TElt < Tree.Nodes (X).Element then
X := Tree.Nodes (X).Left;
else
Iterate (Tree.Nodes (X).Left);
Process (X);
X := Tree.Nodes (X).Right;
end if;
end loop;
end Iterate;
begin
Iterate (Tree.Root);
end Iterate_Between;
----------
-- Last --
----------
function Last (Container : Set) return Cursor is
begin
if Length (Container) = 0 then
return No_Element;
end if;
if Container.K = Plain then
return (Node => Container.Tree.Last);
end if;
return (Node => Container.Last);
end Last;
------------------
-- Last_Element --
------------------
function Last_Element (Container : Set) return Element_Type is
begin
if Last (Container).Node = 0 then
raise Constraint_Error with "set is empty";
end if;
declare
N : Tree_Types.Nodes_Type renames Container.Tree.Nodes;
begin
return N (Last (Container).Node).Element;
end;
end Last_Element;
----------
-- Left --
----------
function Left (Container : Set; Position : Cursor) return Set is
Lst : Count_Type;
Fst : constant Count_Type := First (Container).Node;
L : Count_Type := 0;
C : Count_Type := Fst;
begin
while C /= Position.Node loop
if C = Last (Container).Node or C = 0 then
raise Constraint_Error with
"Position cursor has no element";
end if;
Lst := C;
C := Next (Container.Tree.all, C);
L := L + 1;
end loop;
if L = 0 then
return (Capacity => Container.Capacity,
K => Part,
Tree => Container.Tree,
Length => 0,
First => 0,
Last => 0);
else
return (Capacity => Container.Capacity,
K => Part,
Tree => Container.Tree,
Length => L,
First => Fst,
Last => Lst);
end if;
end Left;
--------------
-- Left_Son --
--------------
function Left_Son (Node : Node_Type) return Count_Type is
begin
return Node.Left;
end Left_Son;
------------
-- Length --
------------
function Length (Container : Set) return Count_Type is
begin
if Container.K = Plain then
return Container.Tree.Length;
else
return Container.Length;
end if;
end Length;
----------
-- Move --
----------
procedure Move (Target : in out Set; Source : in out Set) is
S : Tree_Types.Tree_Type renames Source.Tree.all;
N : Tree_Types.Nodes_Type renames S.Nodes;
X : Count_Type;
begin
if Target.K /= Plain or Source.K /= Plain then
raise Constraint_Error
with "Can't modify part of container";
end if;
if Target'Address = Source'Address then
return;
end if;
if Target.Capacity < Length (Source) then
raise Constraint_Error with -- ???
"Source length exceeds Target capacity";
end if;
if S.Busy > 0 then
raise Program_Error with
"attempt to tamper with cursors of Source (list is busy)";
end if;
Clear (Target);
loop
X := S.First;
exit when X = 0;
Insert (Target, N (X).Element); -- optimize???
Tree_Operations.Delete_Node_Sans_Free (S, X);
Formal_Ordered_Sets.Free (S, X);
end loop;
end Move;
----------
-- Next --
----------
function Next_Unchecked
(Container : Set;
Position : Count_Type) return Count_Type is
begin
if Container.K = Part and then
(Container.Length = 0 or Position = Container.Last) then
return 0;
end if;
return Tree_Operations.Next (Container.Tree.all, Position);
end Next_Unchecked;
function Next (Container : Set; Position : Cursor) return Cursor is
begin
if Position = No_Element then
return No_Element;
end if;
if not Has_Element (Container, Position) then
raise Constraint_Error;
end if;
pragma Assert (Vet (Container.Tree.all, Position.Node),
"bad cursor in Next");
return (Node => Next_Unchecked (Container, Position.Node));
end Next;
procedure Next (Container : Set; Position : in out Cursor) is
begin
Position := Next (Container, Position);
end Next;
-------------
-- Overlap --
-------------
function Overlap (Left, Right : Set) return Boolean is
begin
if Left.K = Plain and Right.K = Plain then
return Set_Ops.Set_Overlap (Left.Tree.all, Right.Tree.all);
end if;
if Length (Left) = 0 or Length (Right) = 0 then
return False;
end if;
declare
L_Node : Count_Type := First (Left).Node;
R_Node : Count_Type := First (Right).Node;
L_Last : constant Count_Type :=
Next (Left.Tree.all, Last (Left).Node);
R_Last : constant Count_Type :=
Next (Right.Tree.all, Last (Right).Node);
begin
if Left'Address = Right'Address then
return True;
end if;
loop
if L_Node = L_Last
or else R_Node = R_Last
then
return False;
end if;
if Left.Tree.Nodes (L_Node).Element <
Right.Tree.Nodes (R_Node).Element then
L_Node := Next (Left.Tree.all, L_Node);
elsif Right.Tree.Nodes (R_Node).Element <
Left.Tree.Nodes (L_Node).Element then
R_Node := Next (Right.Tree.all, R_Node);
else
return True;
end if;
end loop;
end;
end Overlap;
------------
-- Parent --
------------
function Parent (Node : Node_Type) return Count_Type is
begin
return Node.Parent;
end Parent;
--------------
-- Previous --
--------------
function Previous (Container : Set; Position : Cursor) return Cursor is
begin
if Position = No_Element then
return No_Element;
end if;
if not Has_Element (Container, Position) then
raise Constraint_Error;
end if;
pragma Assert (Vet (Container.Tree.all, Position.Node),
"bad cursor in Previous");
if Container.K = Part and then
(Container.Length = 0 or Position.Node = Container.First) then
return No_Element;
end if;
declare
Tree : Tree_Types.Tree_Type renames Container.Tree.all;
Node : constant Count_Type :=
Tree_Operations.Previous (Tree, Position.Node);
begin
if Node = 0 then
return No_Element;
end if;
return (Node => Node);
end;
end Previous;
procedure Previous (Container : Set; Position : in out Cursor) is
begin
Position := Previous (Container, Position);
end Previous;
-------------------
-- Query_Element --
-------------------
procedure Query_Element
(Container : in out Set;
Position : Cursor;
Process : not null access procedure (Element : Element_Type))
is
begin
if Container.K /= Plain then
raise Constraint_Error
with "Can't modify part of container";
end if;
if not Has_Element (Container, Position) then
raise Constraint_Error with "Position cursor has no element";
end if;
pragma Assert (Vet (Container.Tree.all, Position.Node),
"bad cursor in Query_Element");
declare
T : Tree_Types.Tree_Type renames Container.Tree.all;
B : Natural renames T.Busy;
L : Natural renames T.Lock;
begin
B := B + 1;
L := L + 1;
begin
Process (T.Nodes (Position.Node).Element);
exception
when others =>
L := L - 1;
B := B - 1;
raise;
end;
L := L - 1;
B := B - 1;
end;
end Query_Element;
----------
-- Read --
----------
procedure Read
(Stream : not null access Root_Stream_Type'Class;
Container : out Set)
is
procedure Read_Element (Node : in out Node_Type);
pragma Inline (Read_Element);
procedure Allocate is
new Generic_Allocate (Read_Element);
procedure Read_Elements is
new Tree_Operations.Generic_Read (Allocate);
------------------
-- Read_Element --
------------------
procedure Read_Element (Node : in out Node_Type) is
begin
Element_Type'Read (Stream, Node.Element);
end Read_Element;
-- Start of processing for Read
Result : Tree_Type_Access;
begin
if Container.K /= Plain then
raise Constraint_Error;
end if;
if Container.Tree = null then
Result := new Tree_Types.Tree_Type (Container.Capacity);
else
Result := Container.Tree;
end if;
Read_Elements (Stream, Result.all);
Container.Tree := Result;
end Read;
procedure Read
(Stream : not null access Root_Stream_Type'Class;
Item : out Cursor)
is
begin
raise Program_Error with "attempt to stream set cursor";
end Read;
-------------
-- Replace --
-------------
procedure Replace (Container : in out Set; New_Item : Element_Type) is
begin
if Container.K /= Plain then
raise Constraint_Error
with "Can't modify part of container";
end if;
declare
Node : constant Count_Type :=
Element_Keys.Find (Container.Tree.all, New_Item);
begin
if Node = 0 then
raise Constraint_Error with
"attempt to replace element not in set";
end if;
if Container.Tree.Lock > 0 then
raise Program_Error with
"attempt to tamper with cursors (set is locked)";
end if;
Container.Tree.Nodes (Node).Element := New_Item;
end;
end Replace;
---------------------
-- Replace_Element --
---------------------
procedure Replace_Element
(Tree : in out Tree_Types.Tree_Type;
Node : Count_Type;
Item : Element_Type)
is
pragma Assert (Node /= 0);
function New_Node return Count_Type;
pragma Inline (New_Node);
procedure Local_Insert_Post is
new Element_Keys.Generic_Insert_Post (New_Node);
procedure Local_Insert_Sans_Hint is
new Element_Keys.Generic_Conditional_Insert (Local_Insert_Post);
procedure Local_Insert_With_Hint is
new Element_Keys.Generic_Conditional_Insert_With_Hint
(Local_Insert_Post,
Local_Insert_Sans_Hint);
NN : Tree_Types.Nodes_Type renames Tree.Nodes;
--------------
-- New_Node --
--------------
function New_Node return Count_Type is
N : Node_Type renames NN (Node);
begin
N.Element := Item;
N.Color := Red;
N.Parent := 0;
N.Right := 0;
N.Left := 0;
return Node;
end New_Node;
Hint : Count_Type;
Result : Count_Type;
Inserted : Boolean;
-- Start of processing for Insert
begin
if Item < NN (Node).Element
or else NN (Node).Element < Item
then
null;
else
if Tree.Lock > 0 then
raise Program_Error with
"attempt to tamper with cursors (set is locked)";
end if;
NN (Node).Element := Item;
return;
end if;
Hint := Element_Keys.Ceiling (Tree, Item);
if Hint = 0 then
null;
elsif Item < NN (Hint).Element then
if Hint = Node then
if Tree.Lock > 0 then
raise Program_Error with
"attempt to tamper with cursors (set is locked)";
end if;
NN (Node).Element := Item;
return;
end if;
else
pragma Assert (not (NN (Hint).Element < Item));
raise Program_Error with "attempt to replace existing element";
end if;
Tree_Operations.Delete_Node_Sans_Free (Tree, Node); -- Checks busy-bit
Local_Insert_With_Hint
(Tree => Tree,
Position => Hint,
Key => Item,
Node => Result,
Inserted => Inserted);
pragma Assert (Inserted);
pragma Assert (Result = Node);
end Replace_Element;
procedure Replace_Element
(Container : in out Set;
Position : Cursor;
New_Item : Element_Type)
is
begin
if Container.K /= Plain then
raise Constraint_Error
with "Can't modify part of container";
end if;
if not Has_Element (Container, Position) then
raise Constraint_Error with
"Position cursor has no element";
end if;
pragma Assert (Vet (Container.Tree.all, Position.Node),
"bad cursor in Replace_Element");
Replace_Element (Container.Tree.all, Position.Node, New_Item);
end Replace_Element;
---------------------
-- Reverse_Iterate --
---------------------
procedure Reverse_Iterate
(Container : Set;
Process :
not null access procedure (Container : Set; Position : Cursor))
is
procedure Process_Node (Node : Count_Type);
pragma Inline (Process_Node);
procedure Local_Reverse_Iterate is
new Tree_Operations.Generic_Reverse_Iteration (Process_Node);
------------------
-- Process_Node --
------------------
procedure Process_Node (Node : Count_Type) is
begin
Process (Container, (Node => Node));
end Process_Node;
T : Tree_Types.Tree_Type renames Container.Tree.all;
B : Natural renames T.Busy;
-- Start of processing for Reverse_Iterate
begin
B := B + 1;
begin
if Container.K = Plain then
Local_Reverse_Iterate (T);
return;
end if;
if Container.Length = 0 then
return;
end if;
declare
Node : Count_Type := Container.Last;
First : constant Count_Type :=
Previous (Container.Tree.all, Container.First);
begin
while Node /= First loop
Process_Node (Node);
Node := Previous (Container.Tree.all, Node);
end loop;
end;
exception
when others =>
B := B - 1;
raise;
end;
B := B - 1;
end Reverse_Iterate;
-----------
-- Right --
-----------
function Right (Container : Set; Position : Cursor) return Set is
Lst : Count_Type;
L : Count_Type := 0;
C : Count_Type := Position.Node;
begin
if C = 0 then
return (Capacity => Container.Capacity,
K => Part,
Tree => Container.Tree,
Length => 0,
First => 0,
Last => 0);
end if;
if Container.K = Plain then
Lst := 0;
else
Lst := Next (Container.Tree.all, Container.Last);
end if;
if C = Lst then
raise Constraint_Error with
"Position cursor has no element";
end if;
while C /= Lst loop
if C = 0 then
raise Constraint_Error with
"Position cursor has no element";
end if;
C := Next (Container.Tree.all, C);
L := L + 1;
end loop;
return (Capacity => Container.Capacity,
K => Part,
Tree => Container.Tree,
Length => L,
First => Position.Node,
Last => Last (Container).Node);
end Right;
---------------
-- Right_Son --
---------------
function Right_Son (Node : Node_Type) return Count_Type is
begin
return Node.Right;
end Right_Son;
---------------
-- Set_Color --
---------------
procedure Set_Color
(Node : in out Node_Type;
Color : Red_Black_Trees.Color_Type)
is
begin
Node.Color := Color;
end Set_Color;
--------------
-- Set_Left --
--------------
procedure Set_Left (Node : in out Node_Type; Left : Count_Type) is
begin
Node.Left := Left;
end Set_Left;
----------------
-- Set_Parent --
----------------
procedure Set_Parent (Node : in out Node_Type; Parent : Count_Type) is
begin
Node.Parent := Parent;
end Set_Parent;
---------------
-- Set_Right --
---------------
procedure Set_Right (Node : in out Node_Type; Right : Count_Type) is
begin
Node.Right := Right;
end Set_Right;
------------------
-- Strict_Equal --
------------------
function Strict_Equal (Left, Right : Set) return Boolean is
LNode : Count_Type := First (Left).Node;
RNode : Count_Type := First (Right).Node;
begin
if Length (Left) /= Length (Right) then
return False;
end if;
while LNode = RNode loop
if LNode = 0 then
return True;
end if;
if Left.Tree.Nodes (LNode).Element /=
Right.Tree.Nodes (RNode).Element then
exit;
end if;
LNode := Next_Unchecked (Left, LNode);
RNode := Next_Unchecked (Right, RNode);
end loop;
return False;
end Strict_Equal;
--------------------------
-- Symmetric_Difference --
--------------------------
procedure Symmetric_Difference (Target : in out Set; Source : Set) is
begin
if Target.K /= Plain then
raise Constraint_Error
with "Can't modify part of container";
end if;
if Source.K = Plain then
Set_Ops.Set_Symmetric_Difference (Target.Tree.all, Source.Tree.all);
return;
end if;
if Source.Length = 0 then
return;
end if;
declare
Tgt : Count_Type := Target.First;
Src : Count_Type := Source.First;
SLast : constant Count_Type := Next (Source.Tree.all, Source.Last);
New_Tgt_Node : Count_Type;
begin
if Target.Tree.Busy > 0 then
raise Program_Error with
"attempt to tamper with cursors (container is busy)";
end if;
if Target'Address = Source'Address then
Clear (Target);
return;
end if;
loop
if Tgt = 0 then
while Src /= SLast loop
Insert_With_Hint
(Dst_Set => Target.Tree.all,
Dst_Hint => 0,
Src_Node => Source.Tree.Nodes (Src),
Dst_Node => New_Tgt_Node);
Src := Next (Source.Tree.all, Src);
end loop;
return;
end if;
if Src = SLast then
return;
end if;
if Target.Tree.Nodes (Tgt).Element <
Source.Tree.Nodes (Src).Element then
Tgt := Next (Target.Tree.all, Tgt);
elsif Source.Tree.Nodes (Src).Element <
Target.Tree.Nodes (Tgt).Element then
Insert_With_Hint
(Dst_Set => Target.Tree.all,
Dst_Hint => Tgt,
Src_Node => Source.Tree.Nodes (Src),
Dst_Node => New_Tgt_Node);
Src := Next (Source.Tree.all, Src);
else
declare
X : constant Count_Type := Tgt;
begin
Tgt := Next (Target.Tree.all, Tgt);
Delete_Node_Sans_Free (Target.Tree.all, X);
Formal_Ordered_Sets.Free (Target.Tree.all, X);
end;
Src := Next (Source.Tree.all, Src);
end if;
end loop;
end;
end Symmetric_Difference;
function Symmetric_Difference (Left, Right : Set) return Set is
begin
if Left'Address = Right'Address then
return Empty_Set;
end if;
if Length (Right) = 0 then
return Left.Copy;
end if;
if Length (Left) = 0 then
return Right.Copy;
end if;
return S : Set (Length (Left) + Length (Right)) do
if Left.K = Plain and Right.K = Plain then
Assign (S.Tree.all,
Set_Ops.Set_Symmetric_Difference (Left.Tree.all,
Right.Tree.all));
return;
end if;
declare
Tree : Tree_Types.Tree_Type renames S.Tree.all;
L_Node : Count_Type := First (Left).Node;
R_Node : Count_Type := First (Right).Node;
L_Last : constant Count_Type :=
Next (Left.Tree.all, Last (Left).Node);
R_Last : constant Count_Type :=
Next (Right.Tree.all, Last (Right).Node);
Dst_Node : Count_Type;
begin
loop
if L_Node = L_Last then
while R_Node /= R_Last loop
Insert_With_Hint
(Dst_Set => Tree,
Dst_Hint => 0,
Src_Node => Right.Tree.Nodes (R_Node),
Dst_Node => Dst_Node);
R_Node := Next (Right.Tree.all, R_Node);
end loop;
return;
end if;
if R_Node = R_Last then
while L_Node /= L_Last loop
Insert_With_Hint
(Dst_Set => Tree,
Dst_Hint => 0,
Src_Node => Left.Tree.Nodes (L_Node),
Dst_Node => Dst_Node);
L_Node := Next (Left.Tree.all, L_Node);
end loop;
return;
end if;
if Left.Tree.Nodes (L_Node).Element <
Right.Tree.Nodes (R_Node).Element then
Insert_With_Hint
(Dst_Set => Tree,
Dst_Hint => 0,
Src_Node => Left.Tree.Nodes (L_Node),
Dst_Node => Dst_Node);
L_Node := Next (Left.Tree.all, L_Node);
elsif Right.Tree.Nodes (R_Node).Element <
Left.Tree.Nodes (L_Node).Element then
Insert_With_Hint
(Dst_Set => Tree,
Dst_Hint => 0,
Src_Node => Right.Tree.Nodes (R_Node),
Dst_Node => Dst_Node);
R_Node := Next (Right.Tree.all, R_Node);
else
L_Node := Next (Left.Tree.all, L_Node);
R_Node := Next (Right.Tree.all, R_Node);
end if;
end loop;
end;
end return;
end Symmetric_Difference;
------------
-- To_Set --
------------
function To_Set (New_Item : Element_Type) return Set is
Node : Count_Type;
Inserted : Boolean;
begin
return S : Set (Capacity => 1) do
Insert_Sans_Hint (S.Tree.all, New_Item, Node, Inserted);
pragma Assert (Inserted);
end return;
end To_Set;
-----------
-- Union --
-----------
procedure Union (Target : in out Set; Source : Set) is
begin
if Target.K /= Plain then
raise Constraint_Error
with "Can't modify part of container";
end if;
if Source.K = Plain then
Set_Ops.Set_Union (Target.Tree.all, Source.Tree.all);
return;
end if;
if Source.Length = 0 then
return;
end if;
declare
Hint : Count_Type := 0;
procedure Process (Node : Count_Type);
pragma Inline (Process);
procedure Iterate is new Iterate_Between (Process);
-------------
-- Process --
-------------
procedure Process (Node : Count_Type) is
begin
Insert_With_Hint
(Dst_Set => Target.Tree.all,
Dst_Hint => Hint,
Src_Node => Source.Tree.Nodes (Node),
Dst_Node => Hint);
end Process;
-- Start of processing for Union
begin
if Target'Address = Source'Address then
return;
end if;
if Target.Tree.Busy > 0 then
raise Program_Error with
"attempt to tamper with cursors (container is busy)";
end if;
Iterate (Source.Tree.all, Source.First, Source.Last);
end;
end Union;
function Union (Left, Right : Set) return Set is
begin
if Left'Address = Right'Address then
return Left.Copy;
end if;
if Length (Left) = 0 then
return Right.Copy;
end if;
if Length (Right) = 0 then
return Left.Copy;
end if;
return S : Set (Length (Left) + Length (Right)) do
S.Assign (Source => Left);
S.Union (Right);
end return;
end Union;
-----------
-- Write --
-----------
procedure Write
(Stream : not null access Root_Stream_Type'Class;
Container : Set)
is
procedure Write_Element
(Stream : not null access Root_Stream_Type'Class;
Node : Node_Type);
pragma Inline (Write_Element);
procedure Write_Elements is
new Tree_Operations.Generic_Write (Write_Element);
-------------------
-- Write_Element --
-------------------
procedure Write_Element
(Stream : not null access Root_Stream_Type'Class;
Node : Node_Type)
is
begin
Element_Type'Write (Stream, Node.Element);
end Write_Element;
-- Start of processing for Write
begin
Write_Elements (Stream, Container.Tree.all);
end Write;
procedure Write
(Stream : not null access Root_Stream_Type'Class;
Item : Cursor)
is
begin
raise Program_Error with "attempt to stream set cursor";
end Write;
end Ada.Containers.Formal_Ordered_Sets;
|