This file is indexed.

/usr/include/deal.II/grid/tria.h is in libdeal.ii-dev 8.1.0-6ubuntu1.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

   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
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
3020
3021
3022
3023
3024
3025
3026
3027
3028
3029
3030
3031
3032
3033
3034
3035
3036
3037
3038
3039
3040
3041
3042
3043
3044
3045
3046
3047
3048
3049
3050
3051
3052
3053
3054
3055
3056
3057
3058
3059
3060
3061
3062
3063
3064
3065
3066
3067
3068
3069
3070
3071
3072
3073
3074
3075
3076
3077
3078
3079
3080
3081
3082
3083
3084
3085
3086
3087
3088
3089
3090
3091
3092
3093
3094
3095
3096
3097
3098
3099
3100
3101
3102
3103
3104
3105
3106
3107
3108
3109
3110
3111
3112
3113
3114
3115
3116
3117
3118
3119
3120
3121
3122
3123
3124
3125
3126
3127
3128
3129
3130
3131
3132
3133
3134
3135
3136
3137
3138
3139
3140
3141
3142
3143
3144
3145
3146
3147
3148
3149
3150
3151
3152
3153
3154
3155
3156
3157
3158
3159
3160
3161
3162
3163
3164
3165
3166
3167
3168
3169
3170
3171
3172
3173
3174
3175
3176
3177
3178
3179
3180
3181
3182
3183
3184
3185
3186
3187
3188
3189
3190
3191
3192
3193
3194
3195
3196
3197
3198
3199
3200
3201
3202
3203
3204
3205
3206
3207
3208
3209
3210
3211
3212
3213
3214
3215
3216
3217
3218
3219
3220
3221
3222
3223
3224
3225
3226
3227
3228
3229
3230
3231
3232
3233
3234
3235
3236
3237
3238
3239
3240
3241
3242
3243
3244
3245
3246
3247
3248
3249
3250
3251
3252
3253
3254
3255
3256
3257
3258
3259
3260
3261
3262
3263
3264
3265
3266
3267
3268
3269
3270
3271
3272
3273
3274
3275
3276
3277
3278
3279
3280
3281
3282
3283
3284
3285
3286
3287
3288
3289
3290
3291
3292
3293
3294
3295
3296
3297
3298
3299
3300
3301
3302
3303
3304
3305
3306
3307
3308
3309
3310
3311
3312
3313
3314
3315
3316
3317
3318
3319
3320
3321
3322
3323
3324
3325
3326
3327
3328
3329
3330
3331
3332
3333
3334
3335
3336
3337
3338
3339
3340
3341
3342
3343
3344
3345
3346
3347
3348
3349
3350
3351
3352
3353
3354
3355
3356
3357
3358
3359
3360
3361
3362
3363
3364
3365
3366
3367
3368
3369
3370
3371
3372
3373
3374
3375
3376
3377
3378
3379
3380
3381
3382
3383
3384
3385
3386
3387
3388
3389
3390
3391
3392
3393
3394
3395
3396
3397
3398
3399
3400
3401
3402
3403
3404
3405
3406
3407
3408
3409
3410
3411
3412
3413
3414
3415
3416
3417
3418
3419
3420
3421
3422
3423
3424
3425
3426
3427
3428
3429
3430
3431
3432
3433
3434
3435
3436
3437
3438
3439
3440
3441
3442
3443
3444
3445
3446
3447
3448
3449
3450
3451
3452
3453
3454
3455
3456
3457
3458
3459
3460
3461
3462
3463
3464
3465
3466
3467
3468
3469
3470
3471
3472
3473
3474
3475
3476
3477
3478
3479
3480
3481
3482
3483
3484
3485
3486
3487
3488
3489
3490
3491
3492
3493
3494
3495
3496
3497
3498
3499
3500
3501
3502
3503
3504
3505
3506
3507
3508
3509
3510
3511
3512
3513
3514
3515
3516
3517
3518
3519
3520
3521
3522
3523
3524
3525
3526
3527
3528
3529
3530
3531
3532
3533
3534
3535
3536
3537
3538
3539
3540
3541
3542
3543
3544
3545
3546
3547
3548
3549
3550
3551
3552
3553
3554
3555
3556
3557
3558
3559
3560
3561
3562
3563
3564
3565
3566
3567
3568
3569
3570
3571
3572
3573
3574
3575
3576
3577
3578
3579
3580
3581
3582
3583
3584
3585
3586
3587
3588
3589
3590
3591
3592
3593
3594
3595
3596
3597
3598
3599
3600
3601
3602
3603
3604
3605
3606
3607
3608
3609
3610
3611
3612
3613
3614
3615
3616
3617
3618
3619
3620
3621
3622
3623
3624
3625
3626
3627
3628
3629
3630
3631
3632
3633
3634
3635
3636
3637
3638
3639
3640
3641
3642
3643
3644
3645
3646
3647
3648
3649
3650
3651
3652
3653
3654
3655
3656
3657
3658
3659
3660
3661
3662
3663
3664
3665
3666
3667
3668
3669
3670
3671
3672
3673
3674
3675
3676
3677
3678
3679
3680
3681
3682
3683
3684
3685
3686
3687
3688
3689
3690
3691
3692
3693
3694
3695
3696
3697
3698
3699
3700
3701
3702
3703
3704
3705
3706
3707
3708
3709
3710
3711
3712
3713
3714
3715
3716
3717
3718
3719
3720
3721
3722
3723
3724
3725
3726
3727
3728
3729
3730
3731
3732
3733
3734
3735
3736
3737
3738
3739
3740
3741
3742
3743
3744
3745
3746
3747
3748
3749
3750
3751
3752
3753
3754
3755
3756
3757
3758
3759
3760
3761
3762
3763
3764
3765
3766
3767
3768
3769
3770
3771
3772
3773
3774
3775
3776
3777
3778
3779
3780
3781
3782
3783
3784
3785
3786
3787
3788
3789
3790
3791
3792
3793
3794
3795
3796
3797
3798
3799
3800
3801
3802
3803
3804
3805
3806
3807
3808
3809
3810
3811
3812
3813
3814
3815
3816
3817
3818
3819
3820
3821
3822
3823
3824
3825
3826
3827
3828
3829
3830
3831
3832
3833
3834
3835
3836
3837
3838
3839
3840
3841
3842
3843
3844
3845
3846
3847
3848
3849
3850
3851
3852
3853
3854
3855
3856
3857
3858
3859
3860
3861
3862
3863
3864
3865
3866
3867
3868
3869
3870
3871
3872
3873
// ---------------------------------------------------------------------
// $Id: tria.h 31641 2013-11-13 16:40:04Z bangerth $
//
// Copyright (C) 1998 - 2013 by the deal.II authors
//
// This file is part of the deal.II library.
//
// The deal.II library is free software; you can use it, redistribute
// it, and/or modify it under the terms of the GNU Lesser General
// Public License as published by the Free Software Foundation; either
// version 2.1 of the License, or (at your option) any later version.
// The full text of the license can be found in the file LICENSE at
// the top level of the deal.II distribution.
//
// ---------------------------------------------------------------------

#ifndef __deal2__tria_h
#define __deal2__tria_h


#include <deal.II/base/config.h>
#include <deal.II/base/point.h>
#include <deal.II/base/subscriptor.h>
#include <deal.II/base/smartpointer.h>
#include <deal.II/base/geometry_info.h>
#include <deal.II/base/std_cxx1x/function.h>
#include <deal.II/grid/tria_iterator_selector.h>
#include <deal.II/grid/tria_faces.h>
#include <deal.II/grid/tria_levels.h>

#include <boost/signals2.hpp>
#include <boost/serialization/vector.hpp>
#include <boost/serialization/map.hpp>
#include <boost/serialization/split_member.hpp>

#include <vector>
#include <list>
#include <map>


DEAL_II_NAMESPACE_OPEN

template <int dim, int spacedim> class Boundary;
template <int dim, int spacedim> class StraightBoundary;

template <int, int, int> class TriaAccessor;
template <int spacedim> class TriaAccessor<0,1,spacedim>;

namespace internal
{
  namespace Triangulation
  {
    template <int dim> class TriaLevel;
    template <int dim> class TriaFaces;

    template <typename> class TriaObjects;

    /**
     * Forward declaration of a class into
     * which we put much of the
     * implementation of the Triangulation
     * class. See the .cc file for more
     * information.
     */
    struct Implementation;
  }

  namespace TriaAccessor
  {
    struct Implementation;
  }
}

template <int dim, int spacedim> class DoFHandler;
namespace hp
{
  template <int dim, int spacedim> class DoFHandler;
}
template <int dim, int spacedim> class MGDoFHandler;


/*------------------------------------------------------------------------*/

/**
 * Structure which is passed to Triangulation::create_triangulation. It
 * contains all data needed to construct a cell, namely the indices of the
 * vertices and the material indicator.
 *
 * This structure is also used to represent data for faces and edge as part of
 * the SubCellData class. In that case the #vertices array needs to represent
 * the vertices of a face or edge of a cell listed in the argument to
 * Triangulation::create_triangulation that denotes the cells. It can be used
 * to attach boundary indicators to faces.
 *
 * @ingroup grid
 */
template <int structdim>
struct CellData
{
  /**
   * Indices of the vertices of
   * this cell.
   */
  unsigned int vertices[GeometryInfo<structdim>::vertices_per_cell];

  /**
   * Material or boundary indicator
   * of this cell. The material_id
   * may be used to denote
   * different coefficients, etc.
   *
   * Note that if this object is part of a
   * SubCellData object, then it represents
   * a face or edge of a cell. In this case
   * one should use the field boundary_id
   * instead of material_id.
   */
  union
  {
    types::boundary_id boundary_id;
    types::material_id material_id;
  };

  /**
   * Default constructor. Sets the vertex indices to invalid values and the boundary or material
   * id the default value (zero).
   */
  CellData ();
};



/**
 *  Structure to be passed to Triangulation::create_triangulation function to
 *  describe boundary information.
 *
 *  This structure is the same for all dimensions, since we use an input
 *  function which is the same for all dimensions. The content of objects
 *  of this structure varies with the dimensions, however.
 *
 *  Since in one dimension, there is no boundary information apart
 *  from the two end points of the interval, this structure does not contain
 *  anything and exists only for consistency, to allow a common interface
 *  for all space dimensions. All fields should always be empty.
 *
 *  Boundary data in 2D consists
 *  of a list of lines which belong to a given boundary component. A
 *  boundary component is a list of lines which are given a common
 *  number describing the boundary condition to hold on this part of the
 *  boundary. The triangulation creation function gives lines not in this
 *  list either the boundary indicator zero (if on the boundary) or
 *  numbers::internal_face_boundary_id (if in the interior). Explicitely giving a
 *  line the indicator numbers::internal_face_boundary_id will result in an error, as well as giving
 *  an interior line a boundary indicator.
 *
 * @ingroup grid
 */
struct SubCellData
{
  /**
   * Each record of this vector describes
   * a line on the boundary and its boundary
   * indicator.
   */
  std::vector<CellData<1> > boundary_lines;

  /**
   * Each record of this vector describes
   * a quad on the boundary and its boundary
   * indicator.
   */
  std::vector<CellData<2> > boundary_quads;

  /**
   * This function checks whether the vectors
   * which may not be used in a given
   * dimension are really empty. I.e.,
   * whether the <tt>boundary_*</tt> arrays are
   * empty when in one space dimension
   * and whether the @p boundary_quads
   * array is empty when in two dimensions.
   *
   * Since this structure is the same for all
   * dimensions, the actual dimension has
   * to be given as a parameter.
   */
  bool check_consistency (const unsigned int dim) const;
};


/*------------------------------------------------------------------------*/


namespace internal
{
  /**
   * A namespace for classes internal to the
   * triangulation classes and helpers.
   */
  namespace Triangulation
  {

    /**
     * Cache class used to store the number of used and active elements
     * (lines or quads etc) within the levels of a triangulation. This
     * is only the declaration of the template, concrete instantiations
     * are below.
     *
     * In the old days, whenever one wanted to access one of these
     * numbers, one had to perform a loop over all lines, e.g., and count
     * the elements until we hit the end iterator. This is time consuming
     * and since access to the number of lines etc is a rather frequent
     * operation, this was not an optimal solution.
     *
     * @author Wolfgang Bangerth, 1999
     */
    template <int dim>
    struct NumberCache
    {
    };

    /**
     * Cache class used to store the number of used and active elements
     * (lines or quads etc) within the levels of a triangulation. This
     * specialization stores the numbers of lines.
     *
     * In the old days, whenever one wanted to access one of these
     * numbers, one had to perform a loop over all lines, e.g., and count
     * the elements until we hit the end iterator. This is time consuming
     * and since access to the number of lines etc is a rather frequent
     * operation, this was not an optimal solution.
     *
     * @author Wolfgang Bangerth, 1999
     */
    template <>
    struct NumberCache<1>
    {
      /**
       * The number of levels on
       * which we have used
       * objects.
       */
      unsigned int n_levels;

      /**
       * Number of used lines in the whole
       * triangulation.
       */
      unsigned int n_lines;

      /**
       * Array holding the number of used
       * lines on each level.
       */
      std::vector<unsigned int> n_lines_level;

      /**
       * Number of active lines in the
       * whole triangulation.
       */
      unsigned int n_active_lines;

      /**
       * Array holding the number of active
       * lines on each level.
       */
      std::vector<unsigned int> n_active_lines_level;

      /**
       * Constructor. Set values to zero
       * by default.
       */
      NumberCache ();

      /**
       * Determine an estimate for the
       * memory consumption (in bytes)
       * of this object.
       */
      std::size_t memory_consumption () const;

      /**
       * Read or write the data of this object to or
       * from a stream for the purpose of serialization
       */
      template <class Archive>
      void serialize (Archive &ar,
                      const unsigned int version);
    };


    /**
     * Cache class used to store the number of used and active elements
     * (lines or quads etc) within the levels of a triangulation. This
     * specialization stores the numbers of quads. Due to the inheritance
     * from the base class NumberCache<1>, the numbers of lines
     * are also within this class.
     *
     * In the old days, whenever one wanted to access one of these
     * numbers, one had to perform a loop over all lines, e.g., and count
     * the elements until we hit the end iterator. This is time consuming
     * and since access to the number of lines etc is a rather frequent
     * operation, this was not an optimal solution.
     *
     * @author Wolfgang Bangerth, 1999
     */
    template <>
    struct NumberCache<2> : public NumberCache<1>
    {
      /**
       * Number of used quads in the whole
       * triangulation.
       */
      unsigned int n_quads;

      /**
       * Array holding the number of used
       * quads on each level.
       */
      std::vector<unsigned int> n_quads_level;

      /**
       * Number of active quads in the
       * whole triangulation.
       */
      unsigned int n_active_quads;

      /**
       * Array holding the number of active
       * quads on each level.
       */
      std::vector<unsigned int> n_active_quads_level;

      /**
       * Constructor. Set values to zero
       * by default.
       */
      NumberCache ();

      /**
       * Determine an estimate for the
       * memory consumption (in bytes)
       * of this object.
       */
      std::size_t memory_consumption () const;

      /**
       * Read or write the data of this object to or
       * from a stream for the purpose of serialization
       */
      template <class Archive>
      void serialize (Archive &ar,
                      const unsigned int version);
    };


    /**
     * Cache class used to store the number of used and active elements
     * (lines or quads etc) within the levels of a triangulation. This
     * specialization stores the numbers of hexes. Due to the inheritance
     * from the base class NumberCache<2>, the numbers of lines
     * and quads are also within this class.
     *
     * In the old days, whenever one wanted to access one of these
     * numbers, one had to perform a loop over all lines, e.g., and count
     * the elements until we hit the end . This is time consuming
     * and since access to the number of lines etc is a rather frequent
     * operation, this was not an optimal solution.
     *
     * @author Wolfgang Bangerth, 1999
     */
    template <>
    struct NumberCache<3> : public NumberCache<2>
    {
      /**
       * Number of used hexes in the whole
       * triangulation.
       */
      unsigned int n_hexes;

      /**
       * Array holding the number of used
       * hexes on each level.
       */
      std::vector<unsigned int> n_hexes_level;

      /**
       * Number of active hexes in the
       * whole triangulation.
       */
      unsigned int n_active_hexes;

      /**
       * Array holding the number of active
       * hexes on each level.
       */
      std::vector<unsigned int> n_active_hexes_level;

      /**
       * Constructor. Set values to zero
       * by default.
       */
      NumberCache ();

      /**
       * Determine an estimate for the
       * memory consumption (in bytes)
       * of this object.
       */
      std::size_t memory_consumption () const;

      /**
       * Read or write the data of this object to or
       * from a stream for the purpose of serialization
       */
      template <class Archive>
      void serialize (Archive &ar,
                      const unsigned int version);
    };
  }
}


/*------------------------------------------------------------------------*/


/**
 *  Triangulations denote a hierarchy of levels of elements which together
 *  form a @p dim -dimensional manifold in @p spacedim spatial dimensions
 *  (if spacedim is not specified it takes the default value @p spacedim=dim).
 *
 *  Thus, for example, an object of type @p Triangulation<1,1> (or simply
 *  @p Triangulation<1> since @p spacedim==dim by default) is used to represent
 *  and handle the usual one-dimensional triangulation used in the finite
 *  element method (so, segments on a straight line). On the other hand,
 *  objects such as @p Triangulation<1,2> or @p Triangulation<2,3> (that
 *  are associated with curves in 2D or surfaces in 3D)
 *  are the ones one wants to use in the boundary element method.
 *
 *  This class is written to be as independent of the dimension as possible
 *  (thus the complex construction of the dealii::internal::Triangulation::TriaLevel
 *  classes) to allow code-sharing, to allow reducing the need to mirror
 *  changes in the code for one dimension to the code for other
 *  dimensions. Nonetheless, some of the functions are dependent of the
 *  dimension and there only exist specialized versions for distinct
 *  dimensions.
 *
 *
 *  <h3>Structure and iterators</h3>
 *
 *  The actual data structure of a Triangulation object is rather complex
 *  and quite inconvenient if one attempted to operate on it directly, since
 *  data is spread over quite a lot of arrays and other places. However,
 *  there are ways powerful enough to work on these data structures
 *  without knowing their exact relations. This is done through the
 *  concept of iterators (see the STL documentation and TriaIterator).
 *  In order to make things as easy and dimension independent as possible,
 *  use of class local typedefs is made, see below.
 *
 *  The Triangulation class provides iterator which enable looping over all
 *  cells without knowing the exact representation used to
 *  describe them. Their names are typedefs imported from the Iterators
 *  class (thus making them local types to this class) and are as follows:
 *
 *  <ul>
 *  <li> <tt>cell_iterator</tt>: loop over all cells used in the Triangulation
 *  <li> <tt>active_cell_iterator</tt>: loop over all active cells
 *  </ul>
 *
 *  For <tt>dim==1</tt>, these iterators are mapped as follows:
 *  @code
 *    typedef line_iterator        cell_iterator;
 *    typedef active_line_iterator active_cell_iterator;
 *  @endcode
 *  while for @p dim==2 we have the additional face iterator:
 *  @code
 *    typedef quad_iterator        cell_iterator;
 *    typedef active_quad_iterator active_cell_iterator;
 *
*    typedef line_iterator        face_iterator;
 *    typedef active_line_iterator active_face_iterator;
 *  @endcode
 *
 *  By using the cell iterators, you can write code independent of
 *  the spatial dimension. The same applies for substructure iterators,
 *  where a substructure is defined as a face of a cell. The face of a
 *  cell is a vertex in 1D and a line in 2D; however, vertices are
 *  handled in a different way and therefore lines have no faces.
 *
 *  The Triangulation class offers functions like begin_active() which gives
 *  you an iterator to the first active cell. There are quite a lot of functions
 *  returning iterators. Take a look at the class doc to get an overview.
 *
 *  Usage of these iterators works mostly like with the STL iterators. Some
 *  examples taken from the Triangulation source code follow (notice that in the last
 *  two examples the template parameter @p spacedim has been omitted, so it takes
 *  the default value <code>dim</code>).
 *  <ul>
 *  <li> <em>Counting the number of cells on a specific level</em>
 *    @code
 *     template <int dim, int spacedim>
 *     int Triangulation<dim, spacedim>::n_cells (const int level) const {
 *        cell_iterator cell = begin (level),
 *                      endc = end(level);
 *        int n=0;
 *        for (; cell!=endc; ++cell)
 *          ++n;
 *        return n;
 *      };
 *    @endcode
 *    Another way which uses the STL @p distance function would be to write
 *    @code
 *      template <int dim>
 *      int Triangulation<dim>::n_cells (const int level) const {
 *        int n=0;
 *        distance (begin(level),
 *                  (level == levels.size()-1 ?
 *                   cell_iterator(end()) :
 *                   begin (level+1)),
 *                  n);
 *        return n;
 *      };
 *    @endcode
 *
 *  <li> <em>Refining all cells of a triangulation</em>
 *    @code
 *      template <int dim>
 *      void Triangulation<dim>::refine_global () {
 *        active_cell_iterator cell = begin_active(),
 *                             endc = end();
 *
 *        for (; cell != endc; ++cell)
 *          cell->set_refine_flag ();
 *        execute_coarsening_and_refinement ();
 *      };
 *    @endcode
 *  </ul>
 *
 *
 *  <h3>Usage</h3>
 *
 *  Usage of a Triangulation is mainly done through the use of iterators.
 *  An example probably shows best how to use it:
 *  @code
 *  void main () {
 *    Triangulation<2> tria;
 *
 *    // read in a coarse grid file
 *
 *                                     // we want to log the
 *                                     // refinement history
 *    ofstream history ("mesh.history");
 *
 *                                     // refine first cell
 *    tria.begin_active()->set_refine_flag();
 *    tria.save_refine_flags (history);
 *    tria.execute_coarsening_and_refinement ();
 *
 *                                     // refine first active cell
 *                                     // on coarsest level
 *    tria.begin_active()->set_refine_flag ();
 *    tria.save_refine_flags (history);
 *    tria.execute_coarsening_and_refinement ();
 *
 *    Triangulation<2>::active_cell_iterator cell;
 *    for (int i=0; i<17; ++i)
 *      {
 *                                         // refine the presently
 *                                         // second last cell 17
 *                                         // times
 *        cell = tria.last_active(tria.n_levels()-1);
 *        --cell;
 *        cell->set_refine_flag ();
 *        tria.save_refine_flags (history);
 *        tria.execute_coarsening_and_refinement ();
 *      };
 *                                       // output the grid
 *    ofstream out("grid.1");
 *    GridOut::write_gnuplot (tria, out);
 *  };
 *  @endcode
 *
 *
 *  <h3>Creating a triangulation</h3>
 *
 *  There are several possibilities to create a triangulation:
 *  <ul>
 *    <li> The most common domains, such as hypercubes (i.e. lines, squares,
 *       cubes, etc), hyper-balls (circles, balls, ...) and some other, more
 *       weird domains such as the L-shape region and higher dimensional
 *       generalizations and others, are provided by the GridGenerator
 *       class which takes a triangulation and fills it by a division
 *       of the required domain.
 *
 *     <li> Reading in a triangulation: By using an object of the GridIn
 *        class, you can read in fairly general triangulations. See there for
 *        more information. The mentioned class uses the interface described
 *        directly below to transfer the data into the triangulation.
 *
 *     <li> Explicitly creating a triangulation: you can create a triangulation
 *        by providing a list of vertices and a list of cells. Each such cell
 *        consists of a vector storing the indices of the vertices of this cell
 *        in the vertex list. To see how this works, you can take a look at the
 *        GridIn<dim>::read_* functions. The appropriate function to be
 *        called is create_triangulation().
 *
 *        Creating the hierarchical information needed for this
 *        library from cells storing only vertex information can be
 *        quite a complex task.  For example in 2D, we have to create
 *        lines between vertices (but only once, though there are two
 *        cells which link these two vertices) and we have to create
 *        neighborhood information. Grids being read in should
 *        therefore not be too large, reading refined grids would be
 *        inefficient (although there is technically no problem in
 *        reading grids with several 10.000 or 100.000 cells; the
 *        library can handle this without much problems). Apart from
 *        the performance aspect, refined grids do not lend too well
 *        to multigrid algorithms, since solving on the coarsest level
 *        is expensive. It is wiser in any case to read in a grid as
 *        coarse as possible and then do the needed refinement steps.
 *
 *        It is your duty to guarantee that cells have the correct orientation.
 *        To guarantee this, in the input vector keeping the cell list, the
 *        vertex indices for each cell have to be in a defined order, see the
 *        documentation of GeometryInfo<dim>. In one dimension, the first vertex
 *        index must refer to that vertex with the lower coordinate value. In 2D
 *        and 3D, the corresponding conditions are not easy to verify and no
 *        full attempt to do so is made.
 *        If you violate this condition, you may end up with matrix entries
 *        having the wrong sign (clockwise vertex numbering, which results in
 *        a negative area element) of with wrong matrix elements (twisted
 *        quadrilaterals, i.e. two vertices interchanged; this results in
 *        a wrong area element).
 *
 *        There are more subtle conditions which must be imposed upon
 *        the vertex numbering within cells. They do not only hold for
 *        the data read from an UCD or any other input file, but also
 *        for the data passed to create_triangulation().
 *        See the documentation for the GridIn class
 *        for more details on this, and above all to the
 *        GridReordering class that explains many of the
 *        problems and an algorithm to reorder cells such that they
 *        satisfy the conditions outlined above.
 *
 *     <li> Copying a triangulation: when computing on time dependent meshes
 *        or when using adaptive refinement, you will often want to create a
 *        new triangulation to be the same as another one. This is facilitated
 *        by the @p copy_triangulation function.
 *
 *        It is guaranteed that vertex, line or cell numbers in the two
 *        triangulations are the same and that two iterators walking on the
 *        two triangulations visit matching cells if they are incremented in
 *        parallel. It may be conceivable to implement a clean-up in the copy
 *        operation, which eliminates holes of unused memory, re-joins
 *        scattered data and so on. In principle this would be a useful
 *        operation but guaranteeing some parallelism in the two triangulations
 *        seems more important since usually data will have to be transferred
 *        between the grids.
 *   </ul>
 *
 *   Finally, there is a special function for folks who like bad grids:
 *   distort_random(). It moves all the vertices in the
 *   grid a bit around by a random value, leaving behind a distorted mesh.
 *   Note that you should apply this function to the final mesh, since
 *   refinement smoothes the mesh a bit.
 *
 *   The function will make sure that vertices on restricted faces (hanging
 *   nodes) will end up in the correct place, i.e. in the middle of the two
 *   other vertices of the mother line, and the analogue in higher space
 *   dimensions (vertices on the boundary are not corrected, so don't distort
 *   boundary vertices in more than two space dimension, i.e. in dimensions
 *   where boundary vertices can be hanging nodes). Applying the algorithm
 *   has another drawback related to the
 *   placement of cells, however: the children of a cell will not occupy the
 *   same region of the domain as the mother cell does. While this is the
 *   usual behavior with cells at the boundary, here you may get into trouble
 *   when using multigrid algorithms or when transferring solutions from coarse
 *   to fine grids and back. In general, the use of this function is only safe
 *   if you only use the most refined level of the triangulation for
 *   computations.
 *
 *
 *
 *   <h3>Refinement and coarsening of a triangulation</h3>
 *
 *   Refinement of a triangulation may be done through several ways. The most
 *   low-level way is directly through iterators: let @p i be an iterator to
 *   an active cell (i.e. the cell pointed to has no children), then the
 *   function call <tt>i->set_refine_flag()</tt> marks the respective cell for
 *   refinement. Marking non-active cells results in an error.
 *
 *   After all the cells you wanted to mark for refinement, call
 *   execute_coarsening_and_refinement() to actually perform
 *   the refinement. This function itself first calls the
 *   @p prepare_coarsening_and_refinement function to regularize the resulting
 *   triangulation: since a face between two adjacent cells may only
 *   be subdivided once (i.e. the levels of two adjacent cells may
 *   differ by one at most; it is not possible to have a cell refined
 *   twice while the neighboring one is not refined), some additional
 *   cells are flagged for refinement to smooth the grid. This
 *   enlarges the number of resulting cells but makes the grid more
 *   regular, thus leading to better approximation properties and,
 *   above all, making the handling of data structures and algorithms
 *   much much easier. To be honest, this is mostly an algorithmic
 *   step than one needed by the finite element method.
 *
 *   To coarsen a grid, the same way as above is possible by using
 *   <tt>i->set_coarsen_flag</tt> and calling execute_coarsening_and_refinement().
 *
 *   The reason for first coarsening, then refining is that the
 *   refinement usually adds some additional cells to keep the triangulation
 *   regular and thus satisfies all refinement requests, while the coarsening
 *   does not delete cells not requested for; therefore the refinement will
 *   often revert some effects of coarsening while the opposite is not true.
 *   The stated order of coarsening before refinement will thus normally
 *   lead to a result closer to the intended one.
 *
 *   Marking cells for refinement 'by hand' through iterators is one way to
 *   produce a new grid, especially if you know what kind of grid you are
 *   looking for, e.g. if you want to have a grid successively refined
 *   towards the boundary or always at the center (see the example programs,
 *   they do exactly these things). There are more advanced functions,
 *   however, which are more suitable for automatic generation of hierarchical
 *   grids in the context of a posteriori error estimation and adaptive finite
 *   elements. These functions can be found in the GridRefinement class.
 *
 *
 *   <h3>Smoothing of a triangulation</h3>
 *
 *   Some degradation of approximation properties has been observed
 *   for grids which are too unstructured. Therefore,
 *   prepare_coarsening_and_refinement() which is automatically called
 *   by execute_coarsening_and_refinement() can do some
 *   smoothing of the triangulation. Note that mesh smoothing is only
 *   done for two or more space dimensions, no smoothing is available
 *   at present for one spatial dimension. In the following, let
 *   <tt>execute_*</tt> stand for execute_coarsening_and_refinement().
 *
 *   For the purpose of smoothing, the
 *   Triangulation constructor takes an argument specifying whether a
 *   smoothing step shall be performed on the grid each time <tt>execute_*</tt>
 *   is called. The default is that such a step not be done, since this results
 *   in additional cells being produced, which may not be necessary in all
 *   cases. If switched on, calling <tt>execute_*</tt> results in
 *   flagging additional cells for refinement to avoid
 *   vertices as the ones mentioned. The algorithms for both regularization
 *   and smoothing of triangulations are described below in the section on
 *   technical issues. The reason why this parameter must be given to the
 *   constructor rather than to <tt>execute_*</tt> is that it would result
 *   in algorithmic problems if you called <tt>execute_*</tt> once without
 *   and once with smoothing, since then in some refinement steps would need
 *   to be refined twice.
 *
 *   The parameter taken by the constructor is an integer which may be
 *   composed bitwise by the constants defined in the enum
 *   #MeshSmoothing (see there for the possibilities).
 *
 *   @note While it is possible to pass all of the flags in #MeshSmoothing to
 *   objects of type parallel::distributed::Triangulation, it is not always
 *   possible to honor all of these smoothing options if they would require
 *   knowledge of refinement/coarsening flags on cells not locally owned by
 *   this processor. As a consequence, for some of these flags, the ultimate
 *   number of cells of the parallel triangulation may depend on the number of
 *   processors into which it is partitioned.
 *
 *
 *   <h3>Material and boundary information</h3>
 *
 *   Each cell, face or edge stores information denoting the
 *   material or the part of the boundary that an object
 *   belongs to. The material of a cell may be used
 *   during matrix generation in order to implement different
 *   coefficients in different parts of the domain. It is not used by
 *   functions of the grid and dof handling libraries.
 *
 *   This material_id may be set upon construction of a
 *   triangulation (through the CellData data structure), or later
 *   through use of cell iterators. For a typical use of this
 *   functionality, see the step-28 tutorial
 *   program. The functions of the GridGenerator namespace typically
 *   set the material ID of all cells to zero. When reading a
 *   triangulation, the material id must be specified in the input
 *   file (UCD format) or is otherwise set to zero. Material IDs are
 *   inherited by child cells from their parent upon mesh refinement.
 *
 *   Boundary indicators on lower dimensional objects (these have no
 *   material id) indicate the number of a boundary component. These
 *   are used for two purposes: First, they specify a boundary
 *   curve. When a cell is refined, a function can be used to place
 *   new vertices on this curve. See the section on boundary
 *   approximation below. Furthermore, the weak formulation of the
 *   partial differential equation may have different boundary
 *   conditions on different parts of the boundary. The boundary
 *   indicator can be used in creating the matrix or the right hand
 *   side vector to indicate these different parts of the model (this
 *   use is like the material id of cells).

 *   Boundary indicators may be in the range from zero to
 *   numbers::internal_face_boundary_id-1. The value
 *   numbers::internal_face_boundary_id is reserved to denote interior lines (in 2D)
 *   and interior lines and quads (in 3D), which do not have a
 *   boundary indicator. This way, a program can easily
 *   determine, whether such an object is at the boundary or not.
 *   Material indicators may be in the range from zero to numbers::invalid_material_id-1.
 *
 *   Lines in two dimensions and quads in three dimensions inherit their
 *   boundary indicator to their children upon refinement. You should therefore
 *   make sure that if you have different boundary parts, the different parts
 *   are separated by a vertex (in 2D) or a line (in 3D) such that each boundary
 *   line or quad has a unique boundary indicator.
 *
 *   By default (unless otherwise specified during creation of a
 *   triangulation), all parts of the boundary have boundary indicator
 *   zero. As a historical wart, this isn't true for 1d meshes, however: For
 *   these, leftmost vertices have boundary indicator zero while rightmost
 *   vertices have boundary indicator one. In either case, the boundary
 *   indicator of a face can be changed using a call of the kind
 *   <code>cell-@>face(1)-@>set_boundary_indicator(42);</code>.
 *
 *   @see @ref GlossBoundaryIndicator "Glossary entry on boundary indicators"
 *
 *
 *   <h3>History of a triangulation</h3>
 *
 *   It is possible to reconstruct a grid from its refinement history, which
 *   can be stored and loaded through the @p save_refine_flags and
 *   @p load_refine_flags functions. Normally, the code will look like this:
 *   @code
 *                                 // open output file
 *     ofstream history("mesh.history");
 *                                 // do 10 refinement steps
 *     for (int step=0; step<10; ++step) {
 *       ...;
 *       // flag cells according to some criterion
 *       ...;
 *       tria.save_refine_flags (history);
 *       tria.execute_coarsening_and_refinement ();
 *     };
 *   @endcode
 *
 *   If you want to re-create the grid from the stored information, you write:
 *   @code
 *                                 // open input file
 *     ifstream history("mesh.history");
 *                                 // do 10 refinement steps
 *     for (int step=0; step<10; ++step) {
 *       tria.load_refine_flags (history);
 *       tria.execute_coarsening_and_refinement ();
 *     };
 *   @endcode
 *
 *   The same scheme is employed for coarsening and the coarsening flags.
 *
 *   You may write other information to the output file between different sets
 *   of refinement information, as long as you read it upon re-creation of the
 *   grid. You should make sure that the other information in the new
 *   triangulation which is to be created from the saved flags, matches that of
 *   the old triangulation, for example the smoothing level; if not, the
 *   cells actually created from the flags may be other ones, since smoothing
 *   adds additional cells, but their number may be depending on the smoothing
 *   level.
 *
 *   There actually are two sets of <tt>save_*_flags</tt> and <tt>load_*_flags</tt> functions.
 *   One takes a stream as argument and reads/writes the information from/to the
 *   stream, thus enabling storing flags to files. The other set takes an
 *   argument of type <tt>vector<bool></tt>. This enables the user to temporarily store
 *   some flags, e.g. if another function needs them, and restore them
 *   afterwards.
 *
 *
 *   <h3>User flags and data</h3>
 *
 *   A triangulation offers one bit per line, quad, etc for user flags.
 *   This field can be
 *   accessed as all other data using iterators. Normally, this user flag is
 *   used if an algorithm walks over all cells and needs information whether
 *   another cell, e.g. a neighbor, has already been processed.
 *   See @ref GlossUserFlags "the glossary for more information".
 *
 *   There is another set of user data, which can be either an
 *   <tt>unsigned int</tt> or a <tt>void *</tt>, for
 *   each line, quad, etc. You can access these through
 *   the functions listed under <tt>User data</tt> in
 *   the accessor classes.
 *   Again, see @ref GlossUserData "the glossary for more information".
 *
 *   The value of these user indices or pointers is @p NULL by default. Note that
 *   the pointers are not inherited to children upon
 *   refinement. Still, after a remeshing they are available on all
 *   cells, where they were set on the previous mesh.
 *
 *   The usual warning about the missing type safety of @p void pointers are
 *   obviously in place here; responsibility for correctness of types etc
 *   lies entirely with the user of the pointer.
 *
 *   @note User pointers and user indices are stored in the same
 *   place. In order to avoid unwanted conversions, Triangulation
 *   checks which one of them is in use and does not allow access to
 *   the other one, until clear_user_data() has been called.
 *
 *
 *   <h3>Boundary approximation</h3>
 *
 *   You can specify a boundary function for each boundary
 *   component. If a new vertex is created on a side or face at the
 *   boundary, this function is used to compute where it will be
 *   placed. The boundary indicator of the face will be used to
 *   determine the proper component. See Boundary for the
 *   details. Usage with the Triangulation object is then like this
 *   (let @p Ball be a class derived from Boundary<tt><2></tt>):
 *
 *   @code
 *     void main () {
 *       Triangulation<2> tria;
 *                                        // set the boundary function
 *                                        // for all boundaries with
 *                                        // boundary indicator 0
 *       Ball ball;
 *       tria.set_boundary (0, ball);
 *
 *       // read some coarse grid
 *
 *
 *       Triangulation<2>::active_cell_iterator cell, endc;
 *       for (int i=0; i<8; ++i)
 *         {
 *           cell = tria.begin_active();
 *           endc = tria.end();
 *
 *                                            // refine all
 *                                            // boundary cells
 *           for (; cell!=endc; ++cell)
 *             if (cell->at_boundary())
 *               cell->set_refine_flag();
 *
 *           tria.execute_coarsening_and_refinement();
 *         };
 *     };
 *   @endcode
 *
 *   You should take note of one caveat: if you have concave
 *   boundaries, you must make sure that a new boundary vertex does
 *   not lie too much inside the cell which is to be refined. The
 *   reason is that the center vertex is placed at the point which is
 *   the arithmetic mean of the vertices of the original cell.
 *   Therefore if your new boundary vertex is too near the center of
 *   the old quadrilateral or hexahedron, the distance to the midpoint
 *   vertex will become too small, thus generating distorted
 *   cells. This issue is discussed extensively in
 *   @ref GlossDistorted "distorted cells".
 *
 *
 *   <h3>Getting notice when a triangulation changes</h3>
 *
 *   There are cases where one object would like to know whenever a triangulation
 *   is being refined, copied, or modified in a number of other ways. This
 *   could of course be achieved if, in your user code, you tell every
 *   such object whenever you are about to refine the triangulation, but this
 *   will get tedious and is error prone. The Triangulation class implements
 *   a more elegant way to achieve this: signals.
 *
 *   In essence, a signal is an object (a member of the Triangulation class)
 *   that another object can connect to. A connection is in essence that
 *   the connecting object passes a function object taking a certain number
 *   and kind of arguments. Whenever the owner of the signal wants to
 *   indicate a certain kind of event, it 'triggers' the signal, which in
 *   turn means that all connections of the signal are triggered: in other
 *   word, the function objects are executed and can take the action that
 *   is necessary.
 *
 *   As a simple example, the following code will print something to the
 *   output every time the triangulation has just been refined:
 *   @code
 *     void f() {
 *       std::cout << "Triangulation has been refined." << std::endl;
 *     }
 *
 *     void f() {
 *       Triangulation<dim> triangulation;
 *       // fill it somehow
 *       triangulation.signals.post_refinement.connect (&f);
 *       triangulation.refine_global (2);
 *   @endcode
 *   This code will produce output twice, once for each refinement cycle.
 *
 *   A more interesting application would be the following, akin to what
 *   the FEValues class does. This class stores a pointer to a triangulation
 *   and also an iterator to the cell last handled (so that it can compare
 *   the current cell with the previous one and, for example, decide that
 *   there is no need to re-compute the Jacobian matrix if the new cell
 *   is a simple translation of the previous one). However, whenever the
 *   triangulation is modified, the iterator to the previously handled
 *   cell needs to be invalidated since it now no longer points to any
 *   useful cell (or, at the very least, points to something that may not
 *   necessarily resemble the cells previously handled). The code would
 *   look something like this (the real code has some more error checking
 *   and has to handle the case that subsequent cells might actually belong to
 *   different triangulation, but that is of no concern to us here):
 *   @code
 *     template <int dim>
 *     class FEValues {
 *         Triangulation<dim>::active_cell_iterator current_cell, previous_cell;
 *       public:
 *         void reinit (Triangulation<dim>::active_cell_iterator &cell);
 *         void invalidate_previous_cell ();
 *     };
 *
 *     template <int dim>
 *     void
 *     FEValues<dim>::reinit (Triangulation<dim>::active_cell_iterator &cell) {
 *       if (previous_cell.status() != valid)
 *         {
 *           // previous_cell has not been set. set it now, and register
 *           // with the triangulation that we want to be informed about
 *           // mesh refinement
 *           previous_cell = current_cell;
 *           previous_cell.get_tria().signals.post_refinement
 *             .connect (std_cxx1x::bind (&FEValues<dim>::invalidate_previous_cell,
 *                                        std_cxx1x::ref (*this)));
 *         }
 *       else
 *         previous_cell = current_cell;
 *
 *       current_cell = cell;
 *       ... do something with the cell...
 *     }
 *
 *
 *     template <int dim>
 *     void
 *     FEValues<dim>::invalidate_previous_cell () {
 *       previous_cell = Triangulation<dim>::active_cell_iterator();
 *     }
 *   @endcode
 *   Here, whenever the triangulation is refined, it triggers the post-refinement
 *   signal which calls the function object attached to it. This function object
 *   is the member function <code>FEValues<dim>::invalidate_previous_cell</code>
 *   where we have bound the single argument (the <code>this</code> pointer of
 *   a member function that otherwise takes no arguments) to the <code>this</code>
 *   pointer of the FEValues object. Note how here there is no need for the code
 *   that owns the triangulation and the FEValues object to inform the latter if
 *   the former is refined. (In practice, the function would want to connect to
 *   some of the other signals that the triangulation offers as well, in particular
 *   to creation and deletion signals.)
 *
 *   The Triangulation class has a variety of signals that indicate different
 *   actions by which the triangulation can modify itself and potentially
 *   require follow-up action elsewhere:
 *   - creation: This signal is triggered whenever the
 *     Triangulation::create_triangulation or Triangulation::copy_triangulation
 *     is called. This signal is also triggered when loading a
 *     triangulation from an archive via Triangulation::load.
 *   - pre-refinement: This signal is triggered at the beginning
 *     of execution of the Triangulation::execute_coarsening_and_refinement
 *     function (which is itself called by other functions such as
 *     Triangulation::refine_global). At the time this signal is triggered,
 *     the triangulation is still unchanged.
 *   - post-refinement: This signal is triggered at the end
 *     of execution of the Triangulation::execute_coarsening_and_refinement
 *     function when the triangulation has reached its final state
 *   - copy: This signal is triggered whenever the triangulation owning
 *     the signal is copied by another triangulation using
 *     Triangulation::copy_triangulation (i.e. it is triggered on the <i>old</i>
 *     triangulation, but the new one is passed as a argument).
 *   - clear: This signal is triggered whenever the Triangulation::clear
 *     function is called. This signal is also triggered when loading a
 *     triangulation from an archive via Triangulation::load as the previous
 *     content of the triangulation is first destroyed.
 *   - any_change: This is a catch-all signal that is triggered whenever the
 *     create, post_refinement, or clear signals are triggered. In effect, it
 *     can be used to indicate to an object connected to the signal that the
 *     triangulation has been changed, whatever the exact cause of the change.
 *
 *
 *   <h3>Serializing (loading or storing) triangulations</h3>
 *
 *   Like many other classes in deal.II, the Triangulation class can stream
 *   its contents to an archive using BOOST's serialization facilities. The
 *   data so stored can later be retrieved again from the archive to restore
 *   the contents of this object. This facility is frequently used to save the
 *   state of a program to disk for possible later resurrection, often in the
 *   context of checkpoint/restart strategies for long running computations or
 *   on computers that aren't very reliable (e.g. on very large clusters where
 *   individual nodes occasionally fail and then bring down an entire MPI
 *   job).
 *
 *   For technical reasons, writing and restoring a Triangulation object is
 *   not-trivial. The primary reason is that unlike many other objects,
 *   triangulations rely on many other objects to which they store pointers or
 *   with which they interace; for example, triangulations store pointers to
 *   objects describing boundaries and manifolds, and they have signals that
 *   store pointers to other objects so they can be notified of changes in the
 *   triangulation (see the section on signals in this introduction). As
 *   objects that are re-loaded at a later time do not usually end up at the
 *   same location in memory as they were when they were saved, dealing with
 *   pointers to other objects is difficult.
 *
 *   For these reasons, saving a triangulation to an archive does not store
 *   all information, but only certain parts. More specifically, the
 *   information that is stored is everything that defines the mesh such as
 *   vertex locations, vertex indices, how vertices are connected to cells,
 *   boundary indicators, subdomain ids, material ids, etc. On the other hand,
 *   the following information is not stored:
 *   - signals
 *   - pointers to boundary objects previously set using
 *     Triangulation::set_boundary
 *   On the other hand, since these are objects that are usually set in
 *   user code, they can typically easily be set again in that part of your
 *   code in which you re-load triangulations.
 *
 *   In a sense, this approach to serialization means that re-loading a
 *   triangulation is more akin to calling the
 *   Triangulation::create_triangulation function and filling it with some
 *   additional content, as that function also does not touch the signals and
 *   boundary objects that belong to this triangulation. In keeping with this
 *   analogy, the Triangulation::load function also triggers the same kinds of
 *   signal as Triangulation::create_triangulation.
 *
 *
 *   <h3>Technical details</h3>
 *
 *   <h4>Algorithms for mesh regularization and smoothing upon refinement</h4>
 *
 *   We chose an inductive point of view: since upon creation of the
 *   triangulation all cells are on the same level, all regularity assumptions
 *   regarding the maximum difference in level of cells sharing a common face,
 *   edge or vertex hold. Since we use the regularization and smoothing in
 *   each step of the mesh history, when coming to the point of refining it
 *   further the assumptions also hold.
 *
 *   The regularization and smoothing is done in the
 *   @p prepare_coarsening_and_refinement function, which is called by
 *   @p execute_coarsening_and_refinement at the very beginning.  It
 *   decides which additional cells to flag for refinement by looking
 *   at the old grid and the refinement flags for each cell.
 *
 *   <ul>
 *   <li> <em>Regularization:</em> The algorithm walks over all cells checking
 *     whether the present cell is flagged for refinement and a neighbor of the
 *     present cell is refined once less than the present one. If so, flag the
 *     neighbor for refinement. Because of the induction above, there may be no
 *     neighbor with level two less than the present one.
 *
 *     The neighbor thus flagged for refinement may induce more cells which need
 *     to be refined. However, such cells which need additional refinement always
 *     are on one level lower than the present one, so we can get away with only
 *     one sweep over all cells if we do the loop in the reverse way, starting
 *     with those on the highest level. This way, we may flag additional cells
 *     on lower levels, but if these induce more refinement needed, this is
 *     performed later on when we visit them in out backward running loop.
 *
 *   <li> <em>Smoothing:</em>
 *     <ul>
 *     <li> @p limit_level_difference_at_vertices:
 *       First a list is set up which stores for each vertex
 *       the highest level one of the adjacent cells belongs to. Now, since we did
 *       smoothing in the previous refinement steps also, each cell may only have
 *       vertices with levels at most one greater than the level of the present
 *       cell.
 *
 *       However, if we store the level plus one for cells marked for refinement,
 *       we may end up with cells which have vertices of level two greater than
 *       the cells level. We need to refine this cell also, and need thus also
 *       update the levels of its vertices. This itself may lead to cells needing
 *       refinement, but these are on lower levels, as above, which is why we
 *       may do all kinds of additional flagging in one loop only.
 *
 *     <li> @p eliminate_unrefined_islands:
 *       For each cell we count the number of neighbors which are refined or
 *       flagged for refinement. If this exceeds the number of neighbors
 *       which are not refined and not flagged for refinement, then the current
 *       cell is flagged for
 *       refinement. Since this may lead to cells on the same level which also
 *       will need refinement, we will need additional loops of regularization
 *       and smoothing over all cells until nothing changes any more.
 *
 *     <li> <tt>eliminate_refined_*_islands</tt>:
 *       This one does much the same as the above one, but for coarsening. If
 *       a cell is flagged for refinement or if all of its children are active
 *       and if the number of neighbors which are either active and not flagged
 *       for refinement, or not active but all children flagged for coarsening
 *       equals the total number of neighbors, then this cell's children
 *       are flagged for coarsening or (if this cell was flagged for refinement)
 *       the refine flag is cleared.
 *
 *       For a description of the distinction between the two versions of the
 *       flag see above in the section about mesh smoothing in the general part
 *       of this classes description.
 *
 *       The same applies as above: several loops may be necessary.
 *     </ul>
 *   </ul>
 *
 *   Regularization and smoothing are a bit complementary in that we check
 *   whether we need to set additional refinement flags when being on a cell
 *   flagged for refinement (regularization) or on a cell not flagged for
 *   refinement. This makes readable programming easier.
 *
 *   All the described algorithms apply only for more than one space dimension,
 *   since for one dimension no restrictions apply. It may be necessary to
 *   apply some smoothing for multigrid algorithms, but this has to be decided
 *   upon later.
 *
 *
 *   <h3>Warning</h3>
 *
 *   It seems impossible to preserve @p constness of a triangulation through
 *   iterator usage. Thus, if you declare pointers to a @p const triangulation
 *   object, you should be well aware that you might involuntarily alter the
 *   data stored in the triangulation.
 *
 * @ingroup grid aniso
 * @author Wolfgang Bangerth, 1998; Ralf Hartmann, 2005
 */
template <int dim, int spacedim=dim>
class Triangulation : public Subscriptor
{
private:

  /**
   * An internal typedef to make
   * the definition of the iterator
   * classes simpler.
   */
  typedef dealii::internal::Triangulation::Iterators<dim, spacedim> IteratorSelector;

public:
  /**
   * Default boundary object. This is used
   * for those boundaries for which no
   * boundary object has been explicitly
   * set using set_boundary().
   */
  static const StraightBoundary<dim,spacedim> straight_boundary;

  /**
   * Declare some symbolic names
   * for mesh smoothing
   * algorithms. The meaning of
   * these flags is documented in
   * the Triangulation class.
   */
  enum MeshSmoothing
  {
    /**
     * No mesh smoothing at all, except that meshes have to remain one-irregular.
     */
    none                               = 0x0,
    /**
     *     It can be shown, that degradation of approximation occurs if the
     *     triangulation contains vertices which are member of cells with levels
     *     differing by more than one. One such example is the following:
     *
     *     @image html limit_level_difference_at_vertices.png ""
     *
     *     It would seem that in two space dimensions, the maximum jump in levels
     *     between cells sharing a common vertex is two (as in the example
     *     above). However, this is not true if more than four cells meet at a
     *     vertex. It is not uncommon that a coarse (initial) mesh contains
     *     vertices at which six or even eight cells meet, when small features of
     *     the domain have to be resolved even on the coarsest mesh. In that case,
     *     the maximum difference in levels is three or four, respectively. The
     *     problem gets even worse in three space dimensions.
     *
     *     Looking at an interpolation of the second derivative of the finite
     *     element solution (assuming bilinear finite elements), one sees that the
     *     numerical solution is almost totally wrong, compared with the true
     *     second derivative. Indeed, on regular meshes, there exist sharp
     *     estimations that the H<sup>2</sup>-error is only of order one, so we should not be
     *     surprised; however, the numerical solution may show a value for the
     *     second derivative which may be a factor of ten away from the true
     *     value. These problems are located on the small cell adjacent to the
     *     center vertex, where cells of non-subsequent levels meet, as well as on
     *     the upper and right neighbor of this cell (but with a less degree of
     *     deviation from the true value).
     *
     *     If the smoothing indicator given to the constructor contains the bit for
     *     #limit_level_difference_at_vertices, situations as the above one are
     *     eliminated by also marking the lower left cell for refinement.
     *
     *     In case of anisotropic refinement, the level of a cell is not linked to
     *     the refinement of a cell as directly as in case of isotropic
     *     refinement. Furthermore, a cell can be strongly refined in one
     *     direction and not or at least much less refined in another. Therefore,
     *     it is very difficult to decide, which cases should be excluded from the
     *     refinement process. As a consequence, when using anisotropic
     *     refinement, the #limit_level_difference_at_vertices flag must not be
     *     set. On the other hand, the implementation of multigrid methods in
     *     deal.II requires that this bit be set.
     */
    limit_level_difference_at_vertices = 0x1,
    /**
     *     Single cells which are not refined and are surrounded by cells which are
     *     refined usually also lead to a sharp decline in approximation properties
     *     locally. The reason is that the nodes on the faces between unrefined and
     *     refined cells are not real degrees of freedom but carry constraints. The
     *     patch without additional degrees of freedom is thus significantly larger
     *     then the unrefined cell itself. If in the parameter passed to the
     *     constructor the bit for #eliminate_unrefined_islands is set, all cells
     *     which are not flagged for refinement but which are surrounded by more
     *     refined cells than unrefined cells are flagged for refinement. Cells
     *     which are not yet refined but flagged for that are accounted for the
     *     number of refined neighbors. Cells on the boundary are not accounted for
     *     at all. An unrefined island is, by this definition
     *     also a cell which (in 2D) is surrounded by three refined cells and one
     *     unrefined one, or one surrounded by two refined cells, one unrefined one
     *     and is at the boundary on one side. It is thus not a true island, as the
     *     name of the flag may indicate. However, no better name came to mind to
     *     the author by now.
      */
    eliminate_unrefined_islands        = 0x2,
    /**
     *     A triangulation of patch level 1 consists of patches, i.e. of
     *     cells that are refined once. This flag ensures that a mesh of
     *     patch level 1 is still of patch level 1 after coarsening and
     *     refinement. It is, however, the user's responsibility to ensure
     *     that the mesh is of patch level 1 before calling
     *     Triangulation::execute_coarsening_and_refinement() the first time. The easiest
     *     way to achieve this is by calling global_refine(1) straight
     *     after creation of the triangulation.  It follows that if at
     *     least one of the children of a cell is or will be refined than
     *     all children need to be refined. If the #patch_level_1 flag
     *     is set, than the flags #eliminate_unrefined_islands,
     *     #eliminate_refined_inner_islands and
     *     #eliminate_refined_boundary_islands will be ignored as they will
     *     be fulfilled automatically.
     */
    patch_level_1                      = 0x4,
    /**
     *     Each coarse grid cell is refined at least once, i.e. the
     *     triangulation might have active cells on level 1 but not on
     *     level 0. This flag ensures that a mesh which has
     *     coarsest_level_1 has still coarsest_level_1 after coarsening
     *     and refinement. It is, however, the user's responsibility to
     *     ensure that the mesh has coarsest_level_1 before calling
     *     execute_coarsening_and_refinement the first time. The easiest
     *     way to achieve this is by calling global_refine(1) straight
     *     after creation of the triangulation. It follows that active
     *     cells on level 1 may not be coarsenend.
     *
     *     The main use of this flag is to ensure that each cell has at least one
     *     neighbor in each coordinate direction (i.e. each cell has at least a
     *     left or right, and at least an upper or lower neighbor in 2d). This is
     *     a necessary precondition for some algorihms that compute finite
     *     differences between cells. The DerivativeApproximation class is one of
     *     these algorithms that require that a triangulation is coarsest_level_1
     *     unless all cells already have at least one neighbor in each coordinate
     *     direction on the coarsest level.
     */
    coarsest_level_1                   = 0x8,
    /**
     *     This flag is not included in @p maximum_smoothing. The flag is
     *     concerned with the following case: consider the case that an
     *     unrefined and a refined cell share a common face and that one
     *     of the children of the refined cell along the common face is
     *     flagged for further refinement. In that case, the resulting
     *     mesh would have more than one hanging node along one or more of
     *     the edges of the triangulation, a situation that is not
     *     allowed. Consequently, in order to perform the refinement, the
     *     coarser of the two original cells is also going to be refined.
     *
     *     However, in many cases it is sufficient to refine the coarser
     *     of the two original cells in an anisotropic way to avoid the
     *     case of multiple hanging vertices on a single edge. Doing only
     *     the minimal anisotropic refinement can save cells and degrees
     *     of freedom. By specifying this flag, the library can produce
     *     these anisotropic refinements.
     *
     *     The flag is not included by default since it may lead to
     *     anisotropically refined meshes even though no cell has ever
     *     been refined anisotropically explicitly by a user command. This
     *     surprising fact may lead to programs that do the wrong thing
     *     since they are not written for the additional cases that can
     *     happen with anisotropic meshes, see the discussion in the
     *     introduction to step-30.
     */
    allow_anisotropic_smoothing        = 0x10,
    /**
     *     This algorithm seeks for isolated cells which are refined or flagged
     *     for refinement. This definition is unlike that for
     *     #eliminate_unrefined_islands, which would mean that an island is
     *     defined as a cell which
     *     is refined but more of its neighbors are not refined than are refined.
     *     For example, in 2D, a cell's refinement would be reverted if at most
     *     one of its neighbors is also refined (or refined but flagged for
     *     coarsening).
     *
     *     The reason for the change in definition of an island is, that this
     *     option would be a bit dangerous, since if you consider a
     *     chain of refined cells (e.g. along a kink in the solution), the cells
     *     at the two ends would be coarsened, after which the next outermost cells
     *     would need to be coarsened. Therefore, only one loop of flagging cells
     *     like this could be done to avoid eating up the whole chain of refined
     *     cells (`chain reaction'...).
     *
     *     This algorithm also takes into account cells which are not actually
     *     refined but are flagged for refinement. If necessary, it takes away the
     *     refinement flag.
     *
     *     Actually there are two versions of this flag,
     *     #eliminate_refined_inner_islands and #eliminate_refined_boundary_islands.
     *     There first eliminates islands defined by the definition above which are
     *     in the interior of the domain, while the second eliminates only those
     *     islands if the cell is at the boundary. The reason for this split of
     *     flags is that one often wants to eliminate such islands in the interior
     *     while those at the boundary may well be wanted, for example if one
     *     refines the mesh according to a criterion associated with a boundary
     *     integral or if one has rough boundary data.
     */
    eliminate_refined_inner_islands    = 0x100,
    /**
     * The result of this flag is very similar to
     * #eliminate_refined_inner_islands. See the documentation there.
     */
    eliminate_refined_boundary_islands = 0x200,
    /**
     *     This flag prevents the occurrence of unrefined islands. In more detail:
     *     It prohibits the coarsening of a cell if 'most of the neighbors' will
     *     be refined after the step.
     */
    do_not_produce_unrefined_islands   = 0x400,

    /**
     *     This flag sums up all smoothing algorithms which may be performed upon
     *     refinement by flagging some more cells for refinement.
     */
    smoothing_on_refinement            = (limit_level_difference_at_vertices |
                                          eliminate_unrefined_islands),
    /**
     *     This flag sums up all smoothing algorithms which may be performed upon
     *     coarsening by flagging some more cells for coarsening.
     */
    smoothing_on_coarsening            = (eliminate_refined_inner_islands |
                                          eliminate_refined_boundary_islands |
                                          do_not_produce_unrefined_islands),

    /**
     *     This flag includes all the above ones and therefore combines all
     *     smoothing algorithms implemented with the exception of
     *     anisotropic smoothening.
     */
    maximum_smoothing                  = 0xffff ^ allow_anisotropic_smoothing
  };

  typedef TriaIterator      <CellAccessor<dim,spacedim>         > cell_iterator;
  typedef TriaActiveIterator<CellAccessor<dim,spacedim>         > active_cell_iterator;

  typedef TriaIterator      <TriaAccessor<dim-1, dim, spacedim> > face_iterator;
  typedef TriaActiveIterator<TriaAccessor<dim-1, dim, spacedim> > active_face_iterator;

  typedef typename IteratorSelector::line_iterator        line_iterator;
  typedef typename IteratorSelector::active_line_iterator active_line_iterator;

  typedef typename IteratorSelector::quad_iterator        quad_iterator;
  typedef typename IteratorSelector::active_quad_iterator active_quad_iterator;

  typedef typename IteratorSelector::hex_iterator        hex_iterator;
  typedef typename IteratorSelector::active_hex_iterator active_hex_iterator;

  /**
   *  Base class for refinement listeners.
   *  Other classes, which need to be
   *  informed about refinements of the
   *  Triangulation,
   *  can be derived from
   *  RefinementListener.
   *
   * @note The use of this class has been
   * superseded by the signals mechanism.
   * See the general documentation of the
   * Triangulation class for more information.
   *
   * @deprecated
   */
  class RefinementListener
  {
  public:
    /**
     * Destructor. Does nothing, but is
     * declared virtual because this
     * class also has virtual functions.
     *
     * @note The use of this class has been
     * superseded by the signals mechanism.
     * See the general documentation of the
     * Triangulation class for more information.
     *
     * @deprecated
     */
    virtual ~RefinementListener ();

    /**
     * Before refinement is actually
     * performed, the triangulation class
     * calls this method on all objects
     * derived from this class and
     * registered with the triangulation.
     *
     * @note The use of this class has been
     * superseded by the signals mechanism.
     * See the general documentation of the
     * Triangulation class for more information.
     *
     * @deprecated
     */
    virtual
    void
    pre_refinement_notification (const Triangulation<dim, spacedim> &tria);

    /**
     * After refinement is actually
     * performed, the triangulation class
     * calls this method on all objects
     * derived from this class and
     * registered with the triangulation.
     *
     * @note The use of this class has been
     * superseded by the signals mechanism.
     * See the general documentation of the
     * Triangulation class for more information.
     *
     * @deprecated
     */
    virtual
    void
    post_refinement_notification (const Triangulation<dim, spacedim> &tria);

    /**
     * At the end of a call to
     * copy_triangulation() the
     * Triangulation class calls this
     * method on all objects derived from
     * this class and registered with the
     * original Triangulation @p old_tria
     * so that they might subscribe to the
     * copied one @p new_tria as well, if
     * that is desired. By default this
     * method does nothing, a different
     * behavior has to be implemented in
     * derived classes.
     *
     * @note The use of this class has been
     * superseded by the signals mechanism.
     * See the general documentation of the
     * Triangulation class for more information.
     *
     * @deprecated
     */
    virtual
    void
    copy_notification (const Triangulation<dim, spacedim> &old_tria,
                       const Triangulation<dim, spacedim> &new_tria);

    /**
     * At the end of a call to
     * create_triangulation() the
     * Triangulation class calls this
     * method on all objects derived from
     * this class and registered with the
     * current Triangulation object. By
     * default this method does nothing,
     * a different behavior has to be
     * implemented in derived classes.
     *
     * @note The use of this class has been
     * superseded by the signals mechanism.
     * See the general documentation of the
     * Triangulation class for more information.
     *
     * @deprecated
     */
    virtual
    void
    create_notification (const Triangulation<dim, spacedim> &tria);
  };

  /**
   * A structure that is used as an
   * exception object by the
   * create_triangulation() function to
   * indicate which cells among the coarse
   * mesh cells are inverted or severely
   * distorted (see the entry on
   * @ref GlossDistorted "distorted cells"
   * in the glossary).
   *
   * Objects of this kind are
   * thrown by the
   * create_triangulation() and
   * execute_coarsening_and_refinement()
   * functions, and they can be
   * caught in user code if this
   * condition is to be
   * ignored. Note, however, that
   * such exceptions are only
   * produced if the necessity for
   * this check was indicated when
   * calling the constructor of the
   * Triangulation class.
   *
   * A cell is called
   * <i>deformed</i> if the
   * determinant of the Jacobian of
   * the mapping from reference
   * cell to real cell is negative
   * at least at one vertex. This
   * computation is done using the
   * GeometryInfo::jacobian_determinants_at_vertices
   * function.
   */
  struct DistortedCellList : public dealii::ExceptionBase
  {
    /**
     * Destructor. Empty, but needed
     * for the sake of exception
     * specification, since the base
     * class has this exception
     * specification and the
     * automatically generated
     * destructor would have a
     * different one due to member
     * objects.
     */
    virtual ~DistortedCellList () throw();

    /**
     * A list of those cells
     * among the coarse mesh
     * cells that are deformed or
     * whose children are
     * deformed.
     */
    std::list<typename Triangulation<dim,spacedim>::cell_iterator>
    distorted_cells;
  };


  /**
   * Make the dimension available
   * in function templates.
   */
  static const unsigned int dimension = dim;

  /**
   * Make the space-dimension available
   * in function templates.
   */
  static const unsigned int space_dimension = spacedim;

  /**
   *  Create an empty
   *  triangulation. Do not create
   *  any cells.
   *
   * @param smooth_grid Determines
   * the level of smoothness of the
   * mesh size function that should
   * be enforced upon mesh
   * refinement.
   *
   * @param
   * check_for_distorted_cells
   * Determines whether the
   * triangulation should check
   * whether any of the cells that
   * are created by
   * create_triangulation() or
   * execute_coarsening_and_refinement()
   * are distorted (see
   * @ref GlossDistorted "distorted cells").
   * If set, these two
   * functions may throw an
   * exception if they encounter
   * distorted cells.
   */
  Triangulation (const MeshSmoothing smooth_grid = none,
                 const bool check_for_distorted_cells = false);

  /**
   *  Copy constructor.
   *
   *  You should really use the @p
   *  copy_triangulation function,
   *  so we declare this function
   *  but let it throw an internal
   *  error. The reason for this is
   *  that we may want to use
   *  triangulation objects in
   *  collections. However, C++
   *  containers require that the
   *  objects stored in them are
   *  copyable, so we need to
   *  provide a copy
   *  constructor. On the other
   *  hand, copying triangulations
   *  is so expensive that we do
   *  not want such objects copied
   *  by accident, for example in
   *  compiler-generated temporary
   *  objects. By defining a copy
   *  constructor but throwing an
   *  error, we satisfy the formal
   *  requirements of containers,
   *  but at the same time disallow
   *  actual copies. Finally,
   *  through the exception, one
   *  easily finds the places where
   *  code has to be changed to
   *  avoid copies.
   */
  Triangulation (const Triangulation<dim, spacedim> &t);

  /**
   *  Delete the object and all levels of
   *  the hierarchy.
   */
  virtual ~Triangulation ();

  /**
   * Reset this triangulation into a
   * virgin state by deleting all data.
   *
   * Note that this operation is only
   * allowed if no subscriptions to this
   * object exist any more, such as
   * DoFHandler objects using it.
   */
  virtual void clear ();

  /**
   * Sets the mesh smoothing to @p
   * mesh_smoothing. This overrides
   * the MeshSmoothing given to the
   * constructor. It is allowed to
   * call this function only if
   * the triangulation is empty.
   */
  virtual void set_mesh_smoothing (const MeshSmoothing mesh_smoothing);

  /**
   * If @p dim==spacedim, assign a boundary
   * object to a certain part of the
   * boundary of a the triangulation. If a
   * face with boundary number @p number is
   * refined, this object is used to find
   * the location of new vertices on the
   * boundary (see the results section of step-49
   * for a more in-depth discussion of this, with examples).
   * It is also used for
   * non-linear (i.e.: non-Q1)
   * transformations of cells to the unit
   * cell in shape function calculations.
   *
   * If @p dim!=spacedim the boundary object
   * is in fact the exact manifold that the
   * triangulation is approximating (for
   * example a circle approximated by a
   * polygon triangulation). As above, the
   * refinement is made in such a way that
   * the new points are located on the exact
   * manifold.
   *
   * Numbers of boundary objects correspond
   * to material numbers of faces at the
   * boundary, for instance the material id
   * in a UCD input file. They are not
   * necessarily consecutive but must be in
   * the range 0-(types::boundary_id-1).
   * Material IDs on boundaries are also
   * called boundary indicators and are
   * accessed with accessor functions
   * of that name.
   *
   * The @p boundary_object is not copied
   * and MUST persist until the
   * triangulation is destroyed. This is
   * also true for triangulations generated
   * from this one by @p
   * copy_triangulation.
   *
   * It is possible to remove or replace
   * the boundary object during the
   * lifetime of a non-empty
   * triangulation. Usually, this is done
   * before the first refinement and is
   * dangerous afterwards. Removal of a
   * boundary object is done by
   * <tt>set_boundary(number)</tt>,
   * i.e. the function of same name but
   * only one argument. This operation then
   * replaces the boundary object given
   * before by a straight boundary
   * approximation.
   *
   * @ingroup boundary
   *
   * @see @ref GlossBoundaryIndicator "Glossary entry on boundary indicators"
   */
  void set_boundary (const types::boundary_id   number,
                     const Boundary<dim,spacedim> &boundary_object);

  /**
   * Reset those parts of the boundary with
   * the given number to use a straight
   * boundary approximation. This is the
   * default state of a triangulation, and
   * undoes assignment of a different
   * boundary object by the function of
   * same name and two arguments.
   *
   * @ingroup boundary
   *
   * @see @ref GlossBoundaryIndicator "Glossary entry on boundary indicators"
   */
  void set_boundary (const types::boundary_id number);

  /**
   * Return a constant reference to
   * a boundary object used for
   * this triangulation.  Number is
   * the same as in
   * @p set_boundary
   *
   * @ingroup boundary
   *
   * @see @ref GlossBoundaryIndicator "Glossary entry on boundary indicators"
   */
  const Boundary<dim,spacedim> &get_boundary (const types::boundary_id number) const;

  /**
   * Returns a vector containing
   * all boundary indicators
   * assigned to boundary faces of
   * this Triangulation
   * object. Note, that each
   * boundary indicator is reported
   * only once. The size of the
   * return vector will represent
   * the number of different
   * indicators (which is greater
   * or equal one).
   *
   * @ingroup boundary
   *
   * @see @ref GlossBoundaryIndicator "Glossary entry on boundary indicators"
   */
  std::vector<types::boundary_id> get_boundary_indicators() const;

  /**
   *  Copy a triangulation. This
   *  operation is not cheap, so
   *  you should be careful with
   *  using this. We do not
   *  implement this function as a
   *  copy constructor, since it
   *  makes it easier to maintain
   *  collections of triangulations
   *  if you can assign them values
   *  later on.
   *
   *  Keep in mind that this
   *  function also copies the
   *  pointer to the boundary
   *  descriptor previously set by
   *  the @p set_boundary
   *  function. You must therefore
   *  also guarantee that the
   *  boundary objects has a
   *  lifetime at least as long as
   *  the copied triangulation.
   *
   *  This triangulation must be
   *  empty beforehand.
   *
   *  The function is made
   *  @p virtual since some
   *  derived classes might want to
   *  disable or extend the
   *  functionality of this
   *  function.
   *
   *  @note Calling this function triggers
   *  the 'copy' signal on old_tria, i.e.
   *  the triangulation being copied <i>from</i>.
   *  It also triggers the 'create' signal of
   *  the current triangulation.
   *  See the section on signals in the
   *  general documentation for more information.
   *
   *  @note The list of connections to
   *  signals is not copied from the old
   *  to the new triangulation since
   *  these connections were established
   *  to monitor how the old triangulation
   *  changes, not how any triangulation
   *  it may be copied to changes.
   */
  virtual void copy_triangulation (const Triangulation<dim, spacedim> &old_tria);

  /**
   * Create a triangulation from a
   * list of vertices and a list of
   * cells, each of the latter
   * being a list of <tt>1<<dim</tt>
   * vertex indices. The
   * triangulation must be empty
   * upon calling this function and
   * the cell list should be useful
   * (connected domain, etc.).
   *
   * Material data for the cells is
   * given within the @p cells
   * array, while boundary
   * information is given in the
   * @p subcelldata field.
   *
   * The numbering of vertices
   * within the @p cells array is
   * subject to some constraints;
   * see the general class
   * documentation for this.
   *
   * For conditions when this
   * function can generate a valid
   * triangulation, see the
   * documentation of this class,
   * and the GridIn and
   * GridReordering class.
   *
   * If the
   * <code>check_for_distorted_cells</code>
   * flag was specified upon
   * creation of this object, at
   * the very end of its operation,
   * the current function walks
   * over all cells and verifies
   * that none of the cells is
   * deformed (see the entry on
   * @ref GlossDistorted "distorted cells"
   in the glossary), where
   * we call a cell deformed if the
   * determinant of the Jacobian of
   * the mapping from reference
   * cell to real cell is negative
   * at least at one of the
   * vertices (this computation is
   * done using the
   * GeometryInfo::jacobian_determinants_at_vertices
   * function). If there are
   * deformed cells, this function
   * throws an exception of kind
   * DistortedCellList. Since this
   * happens after all data
   * structures have been set up,
   * you can catch and ignore this
   * exception if you know what you
   * do -- for example, it may be
   * that the determinant is zero
   * (indicating that you have
   * collapsed edges in a cell) but
   * that this is ok because you
   * didn't intend to integrate on
   * this cell anyway. On the other
   * hand, deformed cells are often
   * a sign of a mesh that is too
   * coarse to resolve the geometry
   * of the domain, and in this
   * case ignoring the exception is
   * probably unwise.
   *
   * @note This function is used in step-14 .
   *
   * @note This function triggers the create
   * signal after doing its work. See the
   * section on signals in the general
   * documentation of this class.
   *
   * @note The check for distorted
   * cells is only done if
   * dim==spacedim, as otherwise
   * cells can legitimately be
   * twisted if the manifold they
   * describe is twisted.
   */
  virtual void create_triangulation (const std::vector<Point<spacedim> >    &vertices,
                                     const std::vector<CellData<dim> > &cells,
                                     const SubCellData                 &subcelldata);

  /**
   * For backward compatibility,
   * only. This function takes the
   * cell data in the ordering as
   * requested by deal.II versions
   * up to 5.2, converts it to the
   * new (lexicographic) ordering
   * and calls
   * create_triangulation().
   *
   * @note This function internally
   * calls create_triangulation and
   * therefore can throw the same
   * exception as the other
   * function.
   */
  virtual void create_triangulation_compatibility (
    const std::vector<Point<spacedim> >    &vertices,
    const std::vector<CellData<dim> > &cells,
    const SubCellData                 &subcelldata);

  /**
   * Revert or flip the
   * direction_flags of a
   * dim<spacedim triangulation,
   * see @ref GlossDirectionFlag .
   *
   * This function throws an
   * exception if dim equals
   * spacedim.
  */
  void flip_all_direction_flags();

  /**
   * Distort the grid by randomly
   * moving around all the vertices
   * of the grid.  The direction of
   * moving is random, while the
   * length of the shift vector has
   * a value of @p factor times
   * the minimal length of the
   * active lines adjacent to this
   * vertex. Note that @p factor
   * should obviously be well below
   * <tt>0.5</tt>.
   *
   * If @p keep_boundary is set to
   * @p true (which is the
   * default), then boundary
   * vertices are not moved.
   *
   * @deprecated Use GridTools::distort_random instead.
   */
  void distort_random (const double factor,
                       const bool   keep_boundary=true) DEAL_II_DEPRECATED;


  /**
   *  @name Mesh refinement
   */
  /*@{*/
  /**
   *  Flag all active cells for
   *  refinement.  This will refine
   *  all cells of all levels which
   *  are not already refined
   *  (i.e. only cells are refined
   *  which do not yet have
   *  children). The cells are only
   *  flagged, not refined, thus
   *  you have the chance to save
   *  the refinement flags.
   */
  void set_all_refine_flags ();

  /**
   * Refine all cells @p times times, by
   * alternatingly calling
   * set_all_refine_flags and
   * execute_coarsening_and_refinement.
   *
   * The latter function may throw an
   * exception if it creates cells that are
   * distorted (see its documentation for
   * an explanation). This exception will
   * be propagated through this function if
   * that happens, and you may not get the
   * actual number of refinement steps in
   * that case.
   *
   * @note This function triggers the pre-
   * and post-refinement signals before
   * and after doing each individual refinement
   * cycle (i.e. more than once if
   * times > 1) . See the
   * section on signals in the general
   * documentation of this class.
   */
  void refine_global (const unsigned int times = 1);

  /**
   * Execute both refinement and
   * coarsening of the
   * triangulation.
   *
   * The function resets all refinement and
   * coarsening flags to false. It uses the
   * user flags for internal purposes. They
   * will therefore be overwritten by
   * undefined content.
   *
   * To allow user programs to fix
   * up these cells if that is
   * desired, this function after
   * completing all other work may
   * throw an exception of type
   * DistortedCellList that
   * contains a list of those cells
   * that have been refined and
   * have at least one child that
   * is distorted. The function
   * does not create such an
   * exception if no cells have
   * created distorted children.
   * Note that for the check for
   * distorted cells to happen, the
   * <code>check_for_distorted_cells</code>
   * flag has to be specified upon
   * creation of a triangulation
   * object.
   *
   * See the general docs for more
   * information.
   *
   * @note This function triggers the pre-
   * and post-refinement signals before
   * and after doing its work. See the
   * section on signals in the general
   * documentation of this class.
   *
   * @note If the boundary description is
   * sufficiently irregular, it can
   * happen that some of the
   * children produced by mesh
   * refinement are distorted (see
   * the extensive discussion on
   * @ref GlossDistorted "distorted cells").
   *
   * @note This function is
   * <tt>virtual</tt> to allow
   * derived classes to insert
   * hooks, such as saving
   * refinement flags and the like
   * (see e.g. the
   * PersistentTriangulation
   * class).
   */
  virtual void execute_coarsening_and_refinement ();

  /**
   * Do both preparation for
   * refinement and coarsening as
   * well as mesh smoothing.
   *
   * Regarding the refinement
   * process it fixes the closure
   * of the refinement in
   * <tt>dim>=2</tt> (make sure that no
   * two cells are adjacent with a
   * refinement level differing
   * with more than one), etc.  It
   * performs some mesh smoothing
   * if the according flag was
   * given to the constructor of
   * this class.  The function
   * returns whether additional
   * cells have been flagged for
   * refinement.
   *
   * See the general doc of this
   * class for more information on
   * smoothing upon refinement.
   *
   * Regarding the coarsening part,
   * flagging and deflagging cells
   * in preparation of the actual
   * coarsening step are done. This
   * includes deleting coarsen
   * flags from cells which may not
   * be deleted (e.g. because one
   * neighbor is more refined
   * than the cell), doing some
   * smoothing, etc.
   *
   * The effect is that only those
   * cells are flagged for
   * coarsening which will actually
   * be coarsened. This includes
   * the fact that all flagged
   * cells belong to parent cells
   * of which all children are
   * flagged.
   *
   * The function returns whether
   * some cells' flagging has been
   * changed in the process.
   *
   * This function uses the user
   * flags, so store them if you
   * still need them afterwards.
   */
  bool prepare_coarsening_and_refinement ();
  /** @} */

  /**
   *  @name Keeping up with what happens to a triangulation
   */
  /** @{ */

  /**
   *  Add a
   *  RefinementListener. Adding
   *  listeners to the
   *  Triangulation allows other
   *  classes to be informed when
   *  the Triangulation is refined.
   *
   * @note The use of this function has been
   * superseded by the signals mechanism.
   * See the general documentation of the
   * Triangulation class for more information.
   *
   * @deprecated
   */
  void add_refinement_listener (RefinementListener &listener) const DEAL_II_DEPRECATED;

  /**
   *  Remove a
   *  RefinementListener. When some
   *  class needs no longer to be
   *  informed about refinements,
   *  the listener should be
   *  removed from the
   *  Triangulation.
   *
   * @note The use of this function has been
   * superseded by the signals mechanism.
   * See the general documentation of the
   * Triangulation class for more information.
   *
   * @deprecated
   */
  void remove_refinement_listener (RefinementListener &listener) const DEAL_II_DEPRECATED;

  /**
   * A structure that has boost::signal objects for a number of actions that a
   * triangulation can do to itself. See the general documentation of the
   * Triangulation class for more information and for documentation of
   * the semantics of the member functions.
   *
   * For documentation on signals, see http://www.boost.org/doc/libs/release/libs/signals2 .
   **/
  struct Signals
  {
    boost::signals2::signal<void ()> create;
    boost::signals2::signal<void ()> pre_refinement;
    boost::signals2::signal<void ()> post_refinement;
    boost::signals2::signal<void (const Triangulation<dim, spacedim> &original_tria)> copy;
    boost::signals2::signal<void ()> clear;
    boost::signals2::signal<void ()> any_change;
  };

  /**
   * Signals for the various actions that a triangulation can do to itself.
   */
  mutable Signals signals;

  /*@}*/

  /**
   *  @name History of a triangulation
   */
  /*@{*/
  /**
   *  Save the addresses of the
   *  cells which are flagged for
   *  refinement to @p out.  For
   *  usage, read the general
   *  documentation for this class.
   */
  void save_refine_flags (std::ostream &out) const;

  /**
   * Same as above, but store the flags to
   * a bitvector rather than to a file.
   */
  void save_refine_flags (std::vector<bool> &v) const;

  /**
   *  Read the information stored by
   *  @p save_refine_flags.
   */
  void load_refine_flags (std::istream &in);

  /**
   *  Read the information stored by
   *  @p save_refine_flags.
   */
  void load_refine_flags (const std::vector<bool> &v);

  /**
   * Analogue to @p save_refine_flags.
   */
  void save_coarsen_flags (std::ostream &out) const;

  /**
   * Same as above, but store the flags to
   * a bitvector rather than to a file.
   */
  void save_coarsen_flags (std::vector<bool> &v) const;

  /**
   * Analogue to @p load_refine_flags.
   */
  void load_coarsen_flags (std::istream &out);

  /**
   * Analogue to @p load_refine_flags.
   */
  void load_coarsen_flags (const std::vector<bool> &v);

  /**
   * Return whether this triangulation has
   * ever undergone anisotropic (as opposed
   * to only isotropic) refinement.
   */
  bool get_anisotropic_refinement_flag() const;
  /*@}*/


  /**
   *  @name User data
   */
  /*@{*/
  /**
   *  Clear all user flags.
  *  See also @ref GlossUserFlags .
   */
  void clear_user_flags ();

  /**
   *  Save all user flags. See the general
   *  documentation for this class
   *  and the documentation for the
   *  @p save_refine_flags for more
   *  details.
  *  See also @ref GlossUserFlags .
   */
  void save_user_flags (std::ostream &out) const;

  /**
   *  Same as above, but store the flags to
   *  a bitvector rather than to a file.
   *  The output vector is resized if
   *  necessary.
  *  See also @ref GlossUserFlags .
   */
  void save_user_flags (std::vector<bool> &v) const;

  /**
   *  Read the information stored by
   *  @p save_user_flags.
  *  See also @ref GlossUserFlags .
   */
  void load_user_flags (std::istream &in);

  /**
   *  Read the information stored by
   *  @p save_user_flags.
  *  See also @ref GlossUserFlags .
   */
  void load_user_flags (const std::vector<bool> &v);

  /**
   *  Clear all user flags on lines.
  *  See also @ref GlossUserFlags .
   */
  void clear_user_flags_line ();

  /**
   * Save the user flags on lines.
  * See also @ref GlossUserFlags .
   */
  void save_user_flags_line (std::ostream &out) const;

  /**
   * Same as above, but store the flags to
   * a bitvector rather than to a file.
   * The output vector is resized if
   * necessary.
  * See also @ref GlossUserFlags .
   */
  void save_user_flags_line (std::vector<bool> &v) const;

  /**
   * Load the user flags located on lines.
  * See also @ref GlossUserFlags .
   */
  void load_user_flags_line (std::istream &in);

  /**
   * Load the user flags located on lines.
  * See also @ref GlossUserFlags .
   */
  void load_user_flags_line (const std::vector<bool> &v);

  /**
   *  Clear all user flags on quads.
  * See also @ref GlossUserFlags .
   */
  void clear_user_flags_quad ();

  /**
   * Save the user flags on quads.
  * See also @ref GlossUserFlags .
   */
  void save_user_flags_quad (std::ostream &out) const;

  /**
   * Same as above, but store the flags to
   * a bitvector rather than to a file.
   * The output vector is resized if
   * necessary.
  * See also @ref GlossUserFlags .
   */
  void save_user_flags_quad (std::vector<bool> &v) const;

  /**
   * Load the user flags located on quads.
  * See also @ref GlossUserFlags .
   */
  void load_user_flags_quad (std::istream &in);

  /**
   * Load the user flags located on quads.
  * See also @ref GlossUserFlags .
   */
  void load_user_flags_quad (const std::vector<bool> &v);


  /**
   * Clear all user flags on quads.
  * See also @ref GlossUserFlags .
   */
  void clear_user_flags_hex ();

  /**
   * Save the user flags on hexs.
  * See also @ref GlossUserFlags .
   */
  void save_user_flags_hex (std::ostream &out) const;

  /**
   * Same as above, but store the flags to
   * a bitvector rather than to a file.
   * The output vector is resized if
   * necessary.
  * See also @ref GlossUserFlags .
   */
  void save_user_flags_hex (std::vector<bool> &v) const;

  /**
   * Load the user flags located on hexs.
  * See also @ref GlossUserFlags .
   */
  void load_user_flags_hex (std::istream &in);

  /**
   * Load the user flags located on hexs.
  * See also @ref GlossUserFlags .
   */
  void load_user_flags_hex (const std::vector<bool> &v);

  /**
   * Clear all user pointers and
   * indices and allow the use of
   * both for next access.
  * See also @ref GlossUserData .
   */
  void clear_user_data ();

  /**
   * @deprecated User
   * clear_user_data() instead.
   *
   *  Clear all user pointers.
  *  See also @ref GlossUserData .
   */
  void clear_user_pointers () DEAL_II_DEPRECATED;

  /**
   * Save all user indices. The
   * output vector is resized if
   * necessary.
  * See also @ref GlossUserData .
   */
  void save_user_indices (std::vector<unsigned int> &v) const;

  /**
   * Read the information stored by
   * save_user_indices().
  * See also @ref GlossUserData .
   */
  void load_user_indices (const std::vector<unsigned int> &v);

  /**
   * Save all user pointers. The
   * output vector is resized if
   * necessary.
  * See also @ref GlossUserData .
   */
  void save_user_pointers (std::vector<void *> &v) const;

  /**
   * Read the information stored by
   * save_user_pointers().
  * See also @ref GlossUserData .
   */
  void load_user_pointers (const std::vector<void *> &v);

  /**
   * Save the user indices on
   * lines. The output vector is
   * resized if necessary.
  * See also @ref GlossUserData .
   */
  void save_user_indices_line (std::vector<unsigned int> &v) const;

  /**
   * Load the user indices located
   * on lines.
  * See also @ref GlossUserData .
   */
  void load_user_indices_line (const std::vector<unsigned int> &v);

  /**
   * Save the user indices on
   * quads. The output vector is
   * resized if necessary.
  * See also @ref GlossUserData .
   */
  void save_user_indices_quad (std::vector<unsigned int> &v) const;

  /**
   * Load the user indices located
   * on quads.
  * See also @ref GlossUserData .
   */
  void load_user_indices_quad (const std::vector<unsigned int> &v);

  /**
   * Save the user indices on
   * hexes. The output vector is
   * resized if necessary.
  * See also @ref GlossUserData .
   */
  void save_user_indices_hex (std::vector<unsigned int> &v) const;

  /**
   * Load the user indices located
   * on hexs.
  * See also @ref GlossUserData .
   */
  void load_user_indices_hex (const std::vector<unsigned int> &v);
  /**
   * Save the user indices on
   * lines. The output vector is
   * resized if necessary.
  * See also @ref GlossUserData .
   */
  void save_user_pointers_line (std::vector<void *> &v) const;

  /**
   * Load the user pointers located
   * on lines.
  * See also @ref GlossUserData .
   */
  void load_user_pointers_line (const std::vector<void *> &v);

  /**
   * Save the user pointers on
   * quads. The output vector is
   * resized if necessary.
  * See also @ref GlossUserData .
   */
  void save_user_pointers_quad (std::vector<void *> &v) const;

  /**
   * Load the user pointers located
   * on quads.
  * See also @ref GlossUserData .
   */
  void load_user_pointers_quad (const std::vector<void *> &v);

  /**
   * Save the user pointers on
   * hexes. The output vector is
   * resized if necessary.
  * See also @ref GlossUserData .
   */
  void save_user_pointers_hex (std::vector<void *> &v) const;

  /**
   * Load the user pointers located
   * on hexs.
  * See also @ref GlossUserData .
   */
  void load_user_pointers_hex (const std::vector<void *> &v);
  /*@}*/


  /**
   *  @name Cell iterator functions
   */
  /*@{*/
  /**
   *  Iterator to the first used cell
   *  on level @p level.
   */
  cell_iterator        begin       (const unsigned int level = 0) const;

  /**
   *  Iterator to the first active cell on level @p level. If the
   *  given level does not contain any active cells (i.e., all cells
   *  on this level are further refined, then this function returns
   *  <code>end_active(level)</code> so that loops of the kind
   *  @code
   *    for (cell=tria.begin_active(level); cell!=tria.end_active(level); ++cell)
   *      ...
   *  @endcode
   *  have zero iterations, as may be expected if there are no active
   *  cells on this level.
   */
  active_cell_iterator begin_active(const unsigned int level = 0) const;

  /**
   *  Iterator past the end; this
   *  iterator serves for comparisons of
   *  iterators with past-the-end or
   *  before-the-beginning states.
   */
  cell_iterator        end () const;

  /**
   * Return an iterator which is the first
   * iterator not on level. If @p level is
   * the last level, then this returns
   * <tt>end()</tt>.
   */
  cell_iterator        end (const unsigned int level) const;

  /**
   * Return an active iterator which is the first active iterator not
   * on the given level. If @p level is the last level, then this
   * returns <tt>end()</tt>.
   */
  active_cell_iterator end_active (const unsigned int level) const;


  /**
   *  Return an iterator pointing to the
   *  last used cell.
   */
  cell_iterator        last () const;

  /**
   *  Return an iterator pointing to the
   *  last active cell.
   */
  active_cell_iterator last_active () const;
  /*@}*/

  /*---------------------------------------*/
  /*---------------------------------------*/

  /**
   *  @name Face iterator functions
   */
  /*@{*/
  /**
   *  Iterator to the first used face.
   */
  face_iterator        begin_face       () const;

  /**
   *  Iterator to the first active
   *  face.
   */
  active_face_iterator begin_active_face() const;

  /**
   *  Iterator past the end; this
   *  iterator serves for comparisons of
   *  iterators with past-the-end or
   *  before-the-beginning states.
   */
  face_iterator        end_face () const;
  /*@}*/


  /*---------------------------------------*/

  /**
   * @name Information about the triangulation
   */
  /*@{*/

  /**
   * In the following, most
   * functions are provided in two
   * versions, with and without an
   * argument describing the
   * level. The versions with this
   * argument are only applicable
   * for objects describing the
   * cells of the present
   * triangulation. For example: in
   * 2D <tt>n_lines(level)</tt>
   * cannot be called, only
   * <tt>n_lines()</tt>, as lines
   * are faces in 2D and therefore
   * have no level.
   */

  /**
   *  Return total number of used lines,
   *  active or not.
   */
  unsigned int n_lines () const;

  /**
   *  Return total number of used lines,
   *  active or not on level @p level.
   */
  unsigned int n_lines (const unsigned int level) const;

  /**
   * Return total number of active lines.
   */
  unsigned int n_active_lines () const;

  /**
   *  Return total number of active lines,
   *  on level @p level.
   */
  unsigned int n_active_lines (const unsigned int level) const;

  /**
   *  Return total number of used quads,
   *  active or not.
   */
  unsigned int n_quads () const;

  /**
   *  Return total number of used quads,
   *  active or not on level @p level.
   */
  unsigned int n_quads (const unsigned int level) const;

  /**
   *  Return total number of active quads,
   *  active or not.
   */
  unsigned int n_active_quads () const;

  /**
   *  Return total number of active quads,
   *  active or not on level @p level.
   */
  unsigned int n_active_quads (const unsigned int level) const;

  /**
   *  Return total number of used
   *  hexahedra, active or not.
   */
  unsigned int n_hexs() const;

  /**
   *  Return total number of used
   *  hexahedra, active or not on level @p
   *  level.
   */
  unsigned int n_hexs(const unsigned int level) const;

  /**
   *  Return total number of active
   *  hexahedra, active or not.
   */
  unsigned int n_active_hexs() const;

  /**
   *  Return total number of active
   *  hexahedra, active or not on level @p
   *  level.
   */
  unsigned int n_active_hexs(const unsigned int level) const;

  /**
   *  Return total number of used cells,
   *  active or not.  Maps to
   *  <tt>n_lines()</tt> in one space
   *  dimension and so on.
   */
  unsigned int n_cells () const;

  /**
   *  Return total number of used cells,
   *  active or not, on level @p level.
   *  Maps to <tt>n_lines(level)</tt> in
   *  one space dimension and so on.
   */
  unsigned int n_cells (const unsigned int level) const;

  /**
   *  Return total number of active cells.
   *  Maps to <tt>n_active_lines()</tt> in
   *  one space dimension and so on.
   */
  unsigned int n_active_cells () const;

  /**
   * Return total number of active cells on
   * level @p level.  Maps to
   * <tt>n_active_lines(level)</tt> in one
   * space dimension and so on.
   */
  unsigned int n_active_cells (const unsigned int level) const;

  /**
   *  Return total number of used faces,
   *  active or not.  In 2D, the result
   *  equals n_lines(), while in 3D it
   *  equals n_quads(). Since there are no
   *  face objects in 1d, the function
   *  returns zero in 1d.
   */
  unsigned int n_faces () const;

  /**
   *  Return total number of active faces,
   *  active or not.  In 2D, the result
   *  equals n_active_lines(), while in 3D
   *  it equals n_active_quads(). Since
   *  there are no face objects in 1d, the
   *  function returns zero in 1d.
   */
  unsigned int n_active_faces () const;

  /**
   * Return number of levels in use. This
   * may be less than the number of levels
   * existing in the triangulation if by
   * coarsening the highest level was
   * completely depopulated. That level is
   * not removed, since it will most likely
   * be repopulated soon by the next
   * refinement process.
   */
  unsigned int n_levels () const;

  /**
   * Return the number of levels in use. This function is equivalent to
   * n_levels() for a serial Triangulation, but gives the maximum of
   * n_levels() over all processors for a parallel::distributed::Triangulation
   * and therefore can be larger than n_levels().
   */
  virtual unsigned int n_global_levels () const;

  /**
   * Return the total number of
   * vertices.  Some of them may
   * not be used, which usually
   * happens upon coarsening of a
   * triangulation when some
   * vertices are discarded, but we
   * do not want to renumber the
   * remaining ones, leading to
   * holes in the numbers of used
   * vertices.  You can get the
   * number of used vertices using
   * @p n_used_vertices function.
   */
  unsigned int n_vertices () const;

  /**
   * Return a constant reference to
   * all the vertices present in
   * this triangulation. Note that
   * not necessarily all vertices
   * in this array are actually
   * used; for example, if you
   * coarsen a mesh, then some
   * vertices are deleted, but
   * their positions in this array
   * are unchanged as the indices
   * of vertices are only allocated
   * once. You can find out about
   * which vertices are actually
   * used by the function
   * get_used_vertices().
   */
  const std::vector<Point<spacedim> > &
  get_vertices () const;

  /**
   * Return the number of vertices
   * that are presently in use,
   * i.e. belong to at least one
   * used element.
   */
  unsigned int n_used_vertices () const;

  /**
   * Return @p true if the vertex
   * with this @p index is used.
   */
  bool vertex_used (const unsigned int index) const;

  /**
   * Return a constant reference to
   * the array of @p bools
   * indicating whether an entry in
   * the vertex array is used or
   * not.
   */
  const std::vector<bool> &
  get_used_vertices () const;

  /**
   * Return the maximum number of
   * cells meeting at a common
   * vertex. Since this number is
   * an invariant under refinement,
   * only the cells on the coarsest
   * level are considered. The
   * operation is thus reasonably
   * fast. The invariance is only
   * true for sufficiently many
   * cells in the coarsest
   * triangulation (e.g. for a
   * single cell one would be
   * returned), so a minimum of
   * four is returned in two
   * dimensions, 8 in three
   * dimensions, etc, which is how
   * many cells meet if the
   * triangulation is refined.
   *
   * In one space dimension, two is
   * returned.
   */
  unsigned int max_adjacent_cells () const;

  /**
   * This function always returns
   * @p invalid_subdomain_id
   * but is there for compatibility
   * with the derived
   * @p parallel::distributed::Triangulation
   * class. For distributed parallel triangulations
   * this function returns the subdomain id
   * of those cells that are owned
   * by the current processor.
   */
  virtual types::subdomain_id locally_owned_subdomain () const;
  /*@}*/

  /**
   *  @name Internal information about the number of objects
   */
  /*@{*/

  /**
   * Total number of lines, used or
   * unused.
  *
  * @note This function really
  * exports internal information
  * about the triangulation. It
  * shouldn't be used in
  * applications. The function is
  * only part of the public
  * interface of this class
  * because it is used in some of
  * the other classes that build
  * very closely on it (in
  * particular, the DoFHandler
  * class).
   */
  unsigned int n_raw_lines () const;

  /**
   * Number of lines, used or
   * unused, on the given level.
  *
  * @note This function really
  * exports internal information
  * about the triangulation. It
  * shouldn't be used in
  * applications. The function is
  * only part of the public
  * interface of this class
  * because it is used in some of
  * the other classes that build
  * very closely on it (in
  * particular, the DoFHandler
  * class).
   */
  unsigned int n_raw_lines (const unsigned int level) const;

  /**
   * Total number of quads, used or
   * unused.
  *
  * @note This function really
  * exports internal information
  * about the triangulation. It
  * shouldn't be used in
  * applications. The function is
  * only part of the public
  * interface of this class
  * because it is used in some of
  * the other classes that build
  * very closely on it (in
  * particular, the DoFHandler
  * class).
   */
  unsigned int n_raw_quads () const;

  /**
   * Number of quads, used or
   * unused, on the given level.
  *
  * @note This function really
  * exports internal information
  * about the triangulation. It
  * shouldn't be used in
  * applications. The function is
  * only part of the public
  * interface of this class
  * because it is used in some of
  * the other classes that build
  * very closely on it (in
  * particular, the DoFHandler
  * class).
   */
  unsigned int n_raw_quads (const unsigned int level) const;

  /**
   * Total number of hexs, used or
   * unused.
  *
  * @note This function really
  * exports internal information
  * about the triangulation. It
  * shouldn't be used in
  * applications. The function is
  * only part of the public
  * interface of this class
  * because it is used in some of
  * the other classes that build
  * very closely on it (in
  * particular, the DoFHandler
  * class).
   */
  unsigned int n_raw_hexs () const;

  /**
   * Number of hexs, used or
   * unused, on the given level.
  *
  * @note This function really
  * exports internal information
  * about the triangulation. It
  * shouldn't be used in
  * applications. The function is
  * only part of the public
  * interface of this class
  * because it is used in some of
  * the other classes that build
  * very closely on it (in
  * particular, the DoFHandler
  * class).
   */
  unsigned int n_raw_hexs (const unsigned int level) const;

  /**
   * Number of cells, used or
   * unused, on the given level.
  *
  * @note This function really
  * exports internal information
  * about the triangulation. It
  * shouldn't be used in
  * applications. The function is
  * only part of the public
  * interface of this class
  * because it is used in some of
  * the other classes that build
  * very closely on it (in
  * particular, the DoFHandler
  * class).
   */
  unsigned int n_raw_cells (const unsigned int level) const;

  /**
   * Return total number of faces,
   * used or not. In 2d, the result
   * equals n_raw_lines(), while in 3d it
   * equals n_raw_quads().
  *
  * @note This function really
  * exports internal information
  * about the triangulation. It
  * shouldn't be used in
  * applications. The function is
  * only part of the public
  * interface of this class
  * because it is used in some of
  * the other classes that build
  * very closely on it (in
  * particular, the DoFHandler
  * class).
   */
  unsigned int n_raw_faces () const;

  /*@}*/

  /**
   * Determine an estimate for the
   * memory consumption (in bytes)
   * of this object.
   *
   * This function is made virtual,
   * since a triangulation object
   * might be accessed through a
   * pointer to this base class,
   * even if the actual object is a
   * derived class.
   */
  virtual std::size_t memory_consumption () const;

  /**
   * Write the data of this object to a
   * stream for the purpose of
   * serialization.
   *
   * @note This function does not save
   * <i>all</i> member variables of the
   * current triangulation. Rather, only
   * certain kinds of information are
   * stored. For more information see the
   * general documentation of this class.
   */
  template <class Archive>
  void save (Archive &ar,
             const unsigned int version) const;

  /**
   * Read the data of this object from a
   * stream for the purpose of
   * serialization. Throw away the previous
   * content.
   *
   * @note This function does not reset
   * <i>all</i> member variables of the
   * current triangulation to the ones of
   * the triangulation that was previously
   * stored to an archive. Rather, only
   * certain kinds of information are
   * loaded. For more information see the
   * general documentation of this class.
   *
   * @note This function calls the
   * Triangulation::clear() function and
   * consequently triggers the "clear"
   * signal. After loading all data from
   * the archive, it then triggers the
   * "create" signal. For more information
   * on signals, see the general
   * documentation of this class.
   */
  template <class Archive>
  void load (Archive &ar,
             const unsigned int version);

  BOOST_SERIALIZATION_SPLIT_MEMBER()

  /**
   *  @name Exceptions
   */
  /*@{*/
  /**
   *  Exception
   * @ingroup Exceptions
   */
  DeclException1 (ExcInvalidLevel,
                  int,
                  << "The given level " << arg1
                  << " is not in the valid range!");
  /**
   * The function raising this
   * exception can only operate on
   * an empty Triangulation, i.e.,
   * a Triangulation without grid
   * cells.
   *
   * @ingroup Exceptions
   */
  DeclException0 (ExcTriangulationNotEmpty);
  /**
   * Trying to re-read a grid, an error occurred.
   *
   * @ingroup Exceptions
   */
  DeclException0 (ExcGridReadError);
  /**
   * Exception
   * @ingroup Exceptions
   */
  DeclException0 (ExcFacesHaveNoLevel);
  /**
   * The triangulation level you
   * accessed is empty.
   *
   * @ingroup Exceptions
   */
  DeclException1 (ExcEmptyLevel,
                  int,
                  << "You tried to do something on level " << arg1
                  << ", but this level is empty.");
  /**
   * Exception
   * @ingroup Exceptions
   */
  DeclException0 (ExcNonOrientableTriangulation);
  /*@}*/
protected:
  /**
   *  Do some smoothing in the process
   *  of refining the triangulation. See
   *  the general doc of this class for
   *  more information about this.
   */
  MeshSmoothing                    smooth_grid;

  /**
   *  Write a bool vector to the given stream,
   *  writing a pre- and a postfix magic
   *  number. The vector is written in an
   *  almost binary format, i.e. the bool
   *  flags are packed but the data is written
   *  as ASCII text.
   *
   *  The flags are stored in a
   *  binary format: for each @p
   *  true, a @p 1 bit is stored, a
   *  @p 0 bit otherwise.  The bits
   *  are stored as <tt>unsigned
   *  char</tt>, thus avoiding
   *  endianess. They are written
   *  to @p out in plain text, thus
   *  amounting to 3.6 bits in the
   *  output per bits in the input
   *  on the average. Other
   *  information (magic numbers
   *  and number of elements of the
   *  input vector) is stored as
   *  plain text as well. The
   *  format should therefore be
   *  interplatform compatible.
   */
  static void write_bool_vector (const unsigned int       magic_number1,
                                 const std::vector<bool> &v,
                                 const unsigned int       magic_number2,
                                 std::ostream            &out);

  /**
   * Re-read a vector of bools previously
   * written by @p write_bool_vector and
   * compare with the magic numbers.
   */
  static void read_bool_vector (const unsigned int       magic_number1,
                                std::vector<bool>       &v,
                                const unsigned int       magic_number2,
                                std::istream            &in);

private:
  /**
   *  @name Cell iterator functions for internal use
   */
  /*@{*/
  /**
   * Declare a number of iterator types for
   * raw iterators, i.e., iterators that also
   * iterate over holes in the list of cells
   * left by cells that have been coarsened
   * away in previous mesh refinement cycles.
   *
   * Since users should never have
   * to access these internal
   * properties of how we store
   * data, these iterator types are
   * made private.
   */
  typedef TriaRawIterator   <CellAccessor<dim,spacedim>         > raw_cell_iterator;
  typedef TriaRawIterator   <TriaAccessor<dim-1, dim, spacedim> > raw_face_iterator;
  typedef typename IteratorSelector::raw_line_iterator            raw_line_iterator;
  typedef typename IteratorSelector::raw_quad_iterator            raw_quad_iterator;
  typedef typename IteratorSelector::raw_hex_iterator             raw_hex_iterator;

  /**
   *  Iterator to the first cell, used
   *  or not, on level @p level. If a level
   *  has no cells, a past-the-end iterator
   *  is returned.
   */
  raw_cell_iterator    begin_raw   (const unsigned int level = 0) const;

  /**
   * Return a raw iterator which is the first
   * iterator not on level. If @p level is
   * the last level, then this returns
   * <tt>end()</tt>.
   */
  raw_cell_iterator    end_raw (const unsigned int level) const;
  /*@}*/

  /*---------------------------------------*/

  /**
   *  @name Line iterator functions for internal use
   */
  /*@{*/

  /**
   *  Iterator to the first line, used or
   *  not, on level @p level. If a level
   *  has no lines, a past-the-end iterator
   *  is returned.
   *  If lines are no cells, i.e. for @p dim>1
   *  no @p level argument must be given.
   *  The same applies for all the other functions
   *  above, of course.
   */
  raw_line_iterator
  begin_raw_line   (const unsigned int level = 0) const;

  /**
   *  Iterator to the first used line
   *  on level @p level.
   */
  line_iterator
  begin_line       (const unsigned int level = 0) const;

  /**
   *  Iterator to the first active
   *  line on level @p level.
   */
  active_line_iterator
  begin_active_line(const unsigned int level = 0) const;

  /**
   *  Iterator past the end; this
   *  iterator serves for comparisons of
   *  iterators with past-the-end or
   *  before-the-beginning states.
   */
  line_iterator        end_line () const;
  /*@}*/

  /*---------------------------------------*/

  /**
   *  @name Quad iterator functions for internal use
   */
  /*@{
   */
  /**
   *  Iterator to the first quad, used or
   *  not, on the given level. If a level
   *  has no quads, a past-the-end iterator
   *  is returned.  If quads are no cells,
   *  i.e. for $dim>2$ no level argument
   *  must be given.

   */
  raw_quad_iterator
  begin_raw_quad   (const unsigned int level = 0) const;

  /**
   *  Iterator to the first used quad
   *  on level @p level.
   */
  quad_iterator
  begin_quad       (const unsigned int level = 0) const;

  /**
   *  Iterator to the first active
   *  quad on level @p level.
   */
  active_quad_iterator
  begin_active_quad (const unsigned int level = 0) const;

  /**
   *  Iterator past the end; this
   *  iterator serves for comparisons of
   *  iterators with past-the-end or
   *  before-the-beginning states.
   */
  quad_iterator
  end_quad () const;
  /*@}*/

  /*---------------------------------------*/

  /**
   *  @name Hex iterator functions for internal use
   */
  /*@{
   */
  /**
   *  Iterator to the first hex, used
   *  or not, on level @p level. If a level
   *  has no hexs, a past-the-end iterator
   *  is returned.
   */
  raw_hex_iterator
  begin_raw_hex   (const unsigned int level = 0) const;

  /**
   *  Iterator to the first used hex
   *  on level @p level.
   */
  hex_iterator
  begin_hex       (const unsigned int level = 0) const;

  /**
   *  Iterator to the first active
   *  hex on level @p level.
   */
  active_hex_iterator
  begin_active_hex (const unsigned int level = 0) const;

  /**
   *  Iterator past the end; this
   *  iterator serves for comparisons of
   *  iterators with past-the-end or
   *  before-the-beginning states.
   */
  hex_iterator
  end_hex () const;
  /*@}*/


  /**
   * The (public) function clear() will
   * only work when the triangulation is
   * not subscribed to by other users. The
   * clear_despite_subscriptions() function
   * now allows the triangulation being
   * cleared even when there are
   * subscriptions.
   *
   * Make sure, you know what you
   * do, when calling this
   * function, as its use is
   * reasonable in very rare cases,
   * only. For example, when the
   * subscriptions were for the
   * initially empty Triangulation
   * and the Triangulation object
   * wants to release its memory
   * before throwing an assertion
   * due to input errors (e.g. in
   * the create_triangulation()
   * function).
   */
  void clear_despite_subscriptions ();

  /**
   *  Refine all cells on all levels which
   *  were previously flagged for refinement.
   *
   *  Note, that this function uses
   *  the <tt>line->user_flags</tt>
   *  for <tt>dim=2,3</tt> and the
   *  <tt>quad->user_flags</tt> for
   *  <tt>dim=3</tt>.
   *
   *  The function returns a list
   *  of cells that have produced
   *  children that satisfy the
   *  criteria of
   *  @ref GlossDistorted "distorted cells"
   * if the
   * <code>check_for_distorted_cells</code>
   * flag was specified upon
   * creation of this object, at
   */
  DistortedCellList execute_refinement ();

  /**
   * Coarsen all cells which were flagged for
   * coarsening, or rather: delete all
   * children of those cells of which all
   * child cells are flagged for coarsening
   * and several other constraints hold (see
   * the general doc of this class).
   */
  void execute_coarsening ();

  /**
   * Make sure that either all or none of
   * the children of a cell are tagged for
   * coarsening.
   */
  void fix_coarsen_flags ();

  /**
   *  Array of pointers pointing to the
   *  objects storing the cell data on the
   *  different levels.
   */
  std::vector<dealii::internal::Triangulation::TriaLevel<dim>*> levels;

  /**
   *  Pointer to the faces of the triangulation. In 1d
   *  this contains nothing, in 2D it contains data
   *  concerning lines and in 3D quads and lines.  All of
   *  these have no level and are therefore treated
   *  separately.
   */
  dealii::internal::Triangulation::TriaFaces<dim> *faces;


  /**
   *  Array of the vertices of this
   *  triangulation.
   */
  std::vector<Point<spacedim> >              vertices;

  /**
   *  Array storing a bit-pattern which
   *  vertices are used.
   */
  std::vector<bool>                     vertices_used;

  /**
   *  Collection of boundary
   *  objects. We store only
   *  objects, which are not
   *  of type StraightBoundary.
   */
  std::map<types::boundary_id, SmartPointer<const Boundary<dim, spacedim> , Triangulation<dim, spacedim> > >  boundary;

  /**
   * Flag indicating whether
   * anisotropic refinement took
   * place.
   */
  bool                             anisotropic_refinement;


  /**
   * A flag that determines whether
   * we are to check for distorted
   * cells upon creation and
   * refinement of a mesh.
   */
  const bool check_for_distorted_cells;

  /**
   * Cache to hold the numbers of lines,
   * quads, hexes, etc. These numbers
   * are set at the end of the refinement
   * and coarsening functions and enable
   * faster access later on. In the old
   * days, whenever one wanted to access
   * one of these numbers, one had to
   * perform a loop over all lines, e.g.,
   * and count the elements until we hit
   * the end iterator. This is time
   * consuming and since access to the
   * number of lines etc is a rather
   * frequent operation, this was not
   * an optimal solution.
   */
  dealii::internal::Triangulation::NumberCache<dim> number_cache;

  /**
   * A map that relates the number of a
   * boundary vertex to the boundary
   * indicator. This field is only used in
   * 1d. We have this field because we
   * store boundary indicator information
   * with faces in 2d and higher where we
   * have space in the structures that
   * store data for faces, but in 1d there
   * is no such space for faces.
   *
   * The field is declared as a pointer for
   * a rather mundane reason: all other
   * fields of this class that can be
   * modified by the TriaAccessor hierarchy
   * are pointers, and so these accessor
   * classes store a const pointer to the
   * triangulation. We could no longer do
   * so for TriaAccessor<0,1,spacedim> if
   * this field (that can be modified by
   * TriaAccessor::set_boundary_indicator)
   * were not a pointer.
   */
  std::map<unsigned int, types::boundary_id> *vertex_to_boundary_id_map_1d;

  /**
   * A map that correlates each refinement listener that has been added
   * through the outdated RefinementListener interface via
   * add_refinement_listener(), with the new-style boost::signal
   * connections for each of the member function. We need to keep this
   * list around so that we can later terminate the connection again
   * when someone calls remove_refinement_listener().
   *
   * The data type is a multimap since, although this would be weird,
   * the same object may add itself multiple times as a listener.
   */
  mutable
  std::multimap<const RefinementListener *, std::vector<boost::signals2::connection> >
  refinement_listener_map;

  // make a couple of classes
  // friends
  template <int,int,int> friend class TriaAccessorBase;
  template <int,int,int> friend class TriaAccessor;
  friend class TriaAccessor<0, 1, spacedim>;

  friend class CellAccessor<dim, spacedim>;

  friend struct dealii::internal::TriaAccessor::Implementation;

  friend class hp::DoFHandler<dim,spacedim>;

  friend struct dealii::internal::Triangulation::Implementation;

  template <typename>
  friend class dealii::internal::Triangulation::TriaObjects;
};


#ifndef DOXYGEN


template <int structdim>
inline
CellData<structdim>::CellData ()
{
  for (unsigned int i=0; i<GeometryInfo<structdim>::vertices_per_cell; ++i)
    vertices[i] = numbers::invalid_unsigned_int;

  material_id = 0;
}



namespace internal
{
  namespace Triangulation
  {
    template <class Archive>
    void NumberCache<1>::serialize (Archive &ar,
                                    const unsigned int)
    {
      ar &n_levels;
      ar &n_lines &n_lines_level;
      ar &n_active_lines &n_active_lines_level;
    }


    template <class Archive>
    void NumberCache<2>::serialize (Archive &ar,
                                    const unsigned int version)
    {
      this->NumberCache<1>::serialize (ar, version);

      ar &n_quads &n_quads_level;
      ar &n_active_quads &n_active_quads_level;
    }


    template <class Archive>
    void NumberCache<3>::serialize (Archive &ar,
                                    const unsigned int version)
    {
      this->NumberCache<2>::serialize (ar, version);

      ar &n_hexes &n_hexes_level;
      ar &n_active_hexes &n_active_hexes_level;
    }

  }
}


template <int dim, int spacedim>
inline
bool
Triangulation<dim,spacedim>::vertex_used(const unsigned int index) const
{
  Assert (index < vertices_used.size(),
          ExcIndexRange(index, 0, vertices_used.size()));
  return vertices_used[index];
}



template <int dim, int spacedim>
inline
unsigned int Triangulation<dim, spacedim>::n_levels () const
{
  return number_cache.n_levels;
}

template <int dim, int spacedim>
inline
unsigned int Triangulation<dim, spacedim>::n_global_levels () const
{
  return number_cache.n_levels;
}


template <int dim, int spacedim>
inline
unsigned int
Triangulation<dim, spacedim>::n_vertices () const
{
  return vertices.size();
}



template <int dim, int spacedim>
inline
const std::vector<Point<spacedim> > &
Triangulation<dim, spacedim>::get_vertices () const
{
  return vertices;
}


template <int dim, int spacedim>
template <class Archive>
void
Triangulation<dim,spacedim>::save (Archive &ar,
                                   const unsigned int) const
{
  // as discussed in the documentation, do
  // not store the signals as well as
  // boundary and manifold descrption
  // but everything else
  ar &smooth_grid;
  ar &levels;
  ar &faces;
  ar &vertices;
  ar &vertices_used;

  ar &anisotropic_refinement;
  ar &number_cache;

  ar &check_for_distorted_cells;

  if (dim == 1)
    ar &vertex_to_boundary_id_map_1d;
}



template <int dim, int spacedim>
template <class Archive>
void
Triangulation<dim,spacedim>::load (Archive &ar,
                                   const unsigned int)
{
  // clear previous content. this also calls
  // the respective signal
  clear ();

  // as discussed in the documentation, do
  // not store the signals as well as
  // boundary and manifold description
  // but everything else
  ar &smooth_grid;
  ar &levels;
  ar &faces;
  ar &vertices;
  ar &vertices_used;

  ar &anisotropic_refinement;
  ar &number_cache;

  bool my_check_for_distorted_cells;
  ar &my_check_for_distorted_cells;

  Assert (my_check_for_distorted_cells == check_for_distorted_cells,
          ExcMessage ("The triangulation loaded into here must have the "
                      "same setting with regard to reporting distorted "
                      "cell as the one previously stored."));

  if (dim == 1)
    ar &vertex_to_boundary_id_map_1d;

  // trigger the create signal to indicate
  // that new content has been imported into
  // the triangulation
  signals.create();
}


/* -------------- declaration of explicit specializations ------------- */

template <> unsigned int Triangulation<1,1>::n_raw_lines (const unsigned int level) const;
template <> unsigned int Triangulation<1,1>::n_quads () const;
template <> unsigned int Triangulation<1,1>::n_quads (const unsigned int level) const;
template <> unsigned int Triangulation<1,1>::n_raw_quads (const unsigned int level) const;
template <> unsigned int Triangulation<2,2>::n_raw_quads (const unsigned int level) const;
template <> unsigned int Triangulation<1,1>::n_raw_hexs (const unsigned int level) const;
template <> unsigned int Triangulation<1,1>::n_active_quads (const unsigned int level) const;
template <> unsigned int Triangulation<1,1>::n_active_quads () const;
template <> unsigned int Triangulation<1,1>::max_adjacent_cells () const;


// -------------------------------------------------------------------
// -- Explicit specializations for codimension one grids


template <> unsigned int Triangulation<1,2>::n_raw_lines (const unsigned int level) const;
template <> unsigned int Triangulation<1,2>::n_quads () const;
template <> unsigned int Triangulation<1,2>::n_quads (const unsigned int level) const;
template <> unsigned int Triangulation<1,2>::n_raw_quads (const unsigned int level) const;
template <> unsigned int Triangulation<2,3>::n_raw_quads (const unsigned int level) const;
template <> unsigned int Triangulation<1,2>::n_raw_hexs (const unsigned int level) const;
template <> unsigned int Triangulation<1,2>::n_active_quads (const unsigned int level) const;
template <> unsigned int Triangulation<1,2>::n_active_quads () const;
template <> unsigned int Triangulation<1,2>::max_adjacent_cells () const;

// -------------------------------------------------------------------
// -- Explicit specializations for codimension two grids


template <> unsigned int Triangulation<1,3>::n_raw_lines (const unsigned int level) const;
template <> unsigned int Triangulation<1,3>::n_quads () const;
template <> unsigned int Triangulation<1,3>::n_quads (const unsigned int level) const;
template <> unsigned int Triangulation<1,3>::n_raw_quads (const unsigned int level) const;
template <> unsigned int Triangulation<2,3>::n_raw_quads (const unsigned int level) const;
template <> unsigned int Triangulation<1,3>::n_raw_hexs (const unsigned int level) const;
template <> unsigned int Triangulation<1,3>::n_active_quads (const unsigned int level) const;
template <> unsigned int Triangulation<1,3>::n_active_quads () const;
template <> unsigned int Triangulation<1,3>::max_adjacent_cells () const;


// -------------------------------------------------------------------




#endif // DOXYGEN

DEAL_II_NAMESPACE_CLOSE

// Include tria_accessor.h here, so that it is possible for an end user to
// use the iterators of Triangulation<dim> directly without the need to
// include tria_accessor.h separately. (Otherwise the iterators are an
// 'opaque' or 'incomplete' type.)
#include <deal.II/grid/tria_accessor.h>

#endif