This file is indexed.

/usr/include/deal.II/grid/tria_accessor.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
// ---------------------------------------------------------------------
// $Id: tria_accessor.h 30264 2013-08-09 12:37:28Z maier $
//
// 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_accessor_h
#define __deal2__tria_accessor_h


#include <deal.II/base/config.h>
#include <deal.II/base/exceptions.h>
#include <deal.II/base/geometry_info.h>
#include <deal.II/base/point.h>
#include <deal.II/grid/tria_iterator_base.h>
#include <deal.II/grid/tria_iterator_selector.h>
#include <deal.II/grid/cell_id.h>

#include <utility>


DEAL_II_NAMESPACE_OPEN

template <int dim, int spacedim> class Triangulation;
template <typename Accessor> class TriaRawIterator;
template <typename Accessor> class TriaIterator;
template <typename Accessor> class TriaActiveIterator;

template <int dim, int spacedim> class Boundary;


namespace internal
{
  namespace Triangulation
  {
    template <int dim> class TriaObject;
    template <typename G> class TriaObjects;
    struct Implementation;
  }

  namespace TriaAccessor
  {
    struct Implementation;

    /**
     * Implementation of a type with
     * which to store the level of an
     * accessor object. We only need
     * it for the case that
     * <tt>structdim ==
     * dim</tt>. Otherwise, an empty
     * object is sufficient.
     */
    template <int structdim, int dim> struct PresentLevelType
    {
      struct type
      {
        /**
         * Default constructor.
         */
        type ()
        {}

        /**
         * Dummy
         * constructor. Only
         * level zero is allowed.
         */
        type (const int level)
        {
          Assert (level == 0, ExcInternalError());
          (void)level; // removes -Wunused-parameter warning in optimized mode
        }

        /**
         * Dummy conversion
         * operator. Returns
         * level zero.
         */
        operator int () const
        {
          return 0;
        }

        void operator ++ () const
        {
          Assert (false, ExcInternalError());
        }

        void operator -- () const
        {
          Assert (false, ExcInternalError());
        }
      };
    };


    /**
     * Implementation of a type with
     * which to store the level of an
     * accessor object. We only need
     * it for the case that
     * <tt>structdim ==
     * dim</tt>. Otherwise, an empty
     * object is sufficient.
     */
    template <int dim> struct PresentLevelType<dim,dim>
    {
      typedef int type;
    };

  }
}
template <int structdim, int dim, int spacedim> class TriaAccessor;
template <int dim, int spacedim>                class TriaAccessor<0, dim, spacedim>;
template <int spacedim>                         class TriaAccessor<0, 1, spacedim>;

// note: the file tria_accessor.templates.h is included at the end of
// this file.  this includes a lot of templates. originally, this was
// only done in debug mode, but led to cyclic reduction problems and
// so is now on by default.


/**
 * A namespace that contains exception classes used by the accessor classes.
 */
namespace TriaAccessorExceptions
{
//TODO: Write documentation!
  /**
   * @ingroup Exceptions
   */
  DeclException0 (ExcCellNotUsed);
  /**
   * The cell is not an @ref
   * GlossActive "active" cell, but
   * it already has children. Some
   * operations, like setting
   * refinement flags or accessing
   * degrees of freedom are only
   * possible on active cells.
   *
   * @ingroup Exceptions
   */
  DeclException0 (ExcCellNotActive);
  /**
   * Trying to access the children of
   * a cell which is in fact active.
   *
   * @ingroup Exceptions
   */
  DeclException0 (ExcCellHasNoChildren);
  /**
   * Trying to access the parent of
   * a cell which is in the coarsest
   * level of the triangulation.
   *
   * @ingroup Exceptions
   */
  DeclException0 (ExcCellHasNoParent);
//TODO: Write documentation!
  /**
   * @ingroup Exceptions
   */
  DeclException0 (ExcUnusedCellAsChild);
//TODO: Write documentation!
  /**
   * @ingroup Exceptions
   */
  DeclException1 (ExcCantSetChildren,
                  int,
                  << "You can only set the child index if the cell has no "
                  << "children, or clear it. The given "
                  << "index was " << arg1 << " (-1 means: clear children)");
//TODO: Write documentation!
  /**
   * @ingroup Exceptions
   */
  DeclException0 (ExcUnusedCellAsNeighbor);
//TODO: Write documentation!
  /**
   * @ingroup Exceptions
   */
  DeclException0 (ExcUncaughtCase);
//TODO: Write documentation!
  /**
   * @ingroup Exceptions
   */
  DeclException0 (ExcDereferenceInvalidObject);
//TODO: Write documentation!
  /**
   * @ingroup Exceptions
   */
  DeclException0 (ExcCantCompareIterators);
//TODO: Write documentation!
  /**
   * @ingroup Exceptions
   */
  DeclException0 (ExcNeighborIsCoarser);
//TODO: Write documentation!
  /**
   * @ingroup Exceptions
   */
  DeclException0 (ExcNeighborIsNotCoarser);
  /**
   * You are trying to access the
   * level of a face, but faces have
   * no inherent level. The level of
   * a face can only be determined by
   * the level of an adjacent face,
   * which in turn implies that a
   * face can have several levels.
   *
   * @ingroup Exceptions
   */
  DeclException0 (ExcFacesHaveNoLevel);
//TODO: Write documentation!
  /**
   * @ingroup Exceptions
   */
  DeclException1 (ExcSetOnlyEvenChildren,
                  int,
                  << "You can only set the child index of an even numbered child."
                  << "The number of the child given was " << arg1 << ".");
}


/**
 * A base class for the accessor classes used by TriaRawIterator and
 * derived classes.
 *
 * This class offers only the basic functionality required by the
 * iterators (stores the necessary data members, offers comparison
 * operators and the like), but has no functionality to actually
 * dereference data. This is done in the derived classes.
 *
 * In the implementation, the behavior of this class differs between
 * the cases where <tt>structdim==dim</tt> (cells of a mesh) and
 * <tt>structdim&lt;dim</tt> (faces and edges). For the latter,
 * #present_level is always equal to zero and the constructors may not
 * receive a positive value there. For cells, any level is
 * possible, but only those within the range of the levels of the
 * Triangulation are reasonable. Furthermore, the function objects()
 * returns either the container with all cells on the same level or
 * the container with all objects of this dimension (<tt>structdim&lt;dim</tt>).
 *
 * Some internals of this class are discussed in @ref IteratorAccessorInternals .
 *
 * @ingroup grid
 * @ingroup Accessors
 * @author Wolfgang Bangerth, Guido Kanschat, 1998, 2010
 */
template <int structdim, int dim, int spacedim=dim>
class TriaAccessorBase
{
public:
  /**
   *  Dimension of the space the
   *  object represented by this
   *  accessor lives in. For
   *  example, if this accessor
   *  represents a quad that is
   *  part of a two-dimensional
   *  surface in four-dimensional
   *  space, then this value is
   *  four.
   */
  static const unsigned int space_dimension = spacedim;

  /**
   * Dimensionality of the object
   * that the thing represented by
   * this accessopr is part of. For
   * example, if this accessor
   * represents a line that is part
   * of a hexahedron, then this
   * value will be three.
   */
  static const unsigned int dimension = dim;

  /**
   * Dimensionality of the current
   * object represented by this
   * accessor. For example, if it
   * is line (irrespective of
   * whether it is part of a quad
   * or hex, and what dimension we
   * are in), then this value
   * equals 1.
   */
  static const unsigned int structure_dimension = structdim;

protected:
  /**
   * Declare the data type that
   * this accessor class expects to
   * get passed from the iterator
   * classes. Since the pure
   * triangulation iterators need
   * no additional data, this data
   * type is @p void.
   */
  typedef void AccessorData;

  /**
   *  Constructor. Protected, thus
   *  only callable from friend
   *  classes.
   */
  TriaAccessorBase (const Triangulation<dim,spacedim> *parent =  0,
                    const int                 level  = -1,
                    const int                 index  = -1,
                    const AccessorData             * =  0);

  /**
   *  Copy constructor. Creates an
   *  object with exactly the same data.
   */
  TriaAccessorBase (const TriaAccessorBase &);

  /**
   *  Copy operator. Since this is
   *  only called from iterators,
   *  do not return anything, since
   *  the iterator will return
   *  itself.
   *
   *  This method is protected,
   *  since it is only to be called
   *  from the iterator class.
   */
  void copy_from (const TriaAccessorBase &);

  /**
   *  Copy operator. Creates an
   *  object with exactly the same data.
   */
  TriaAccessorBase &operator = (const TriaAccessorBase &);

  /**
   * Ordering of accessors. If #structure_dimension is less than
   * #dimension, we simply compare the index of such an object. If
   * #structure_dimension equals #dimension, we compare the level()
   * first, and the index() only if levels are equal.
   */
  bool operator < (const TriaAccessorBase &other) const;

protected:
  /**
   *  Copy operator. This is normally
   *  used in a context like
   *  <tt>iterator a,b;  *a=*b;</tt>. Since
   *  the meaning is to copy the object
   *  pointed to by @p b to the object
   *  pointed to by @p a and since
   *  accessors are not real but
   *  virtual objects, this operation
   *  is not useful for iterators on
   *  triangulations. We declare this
   *  function here private, thus it may
   *  not be used from outside.
   *  Furthermore it is not implemented
   *  and will give a linker error if
   *  used anyway.
   */
  void operator = (const TriaAccessorBase *);

  /**
   *  Compare for equality.
   */
  bool operator == (const TriaAccessorBase &) const;

  /**
   * Compare for inequality.
   */
  bool operator != (const TriaAccessorBase &) const;

  /**
   * @name Advancement of iterators
   */
  /**
   * @{
   */
  /**
   *  This operator advances the
   *  iterator to the next element.
   *
   *  For @p dim=1 only:
   *  The next element is next on
   *  this level if there are
   *  more. If the present element
   *  is the last on this level,
   *  the first on the next level
   *  is accessed.
   */
  void operator ++ ();

  /**
   *  This operator moves the
   *  iterator to the previous
   *  element.
   *
   *  For @p dim=1 only:
   *  The previous element is
   *  previous on this level if
   *  <tt>index>0</tt>. If the present
   *  element is the first on this
   *  level, the last on the
   *  previous level is accessed.
   */
  void operator -- ();
  /**
   * @}
   */

  /**
   * Access to the other objects of
   * a Triangulation with same
   * dimension.
   */
  dealii::internal::Triangulation::TriaObjects<dealii::internal::Triangulation::TriaObject<structdim> > &
  objects () const;

public:
  /**
   * Data type to be used for passing
   * parameters from iterators to the
   * accessor classes in a unified
   * way, no matter what the type of
   * number of these parameters is.
   */
  typedef void *LocalData;

  /**
   * @name Iterator address and state
   */
  /**
   * @{
   */

  /**
   *  Return the level the element
   *  pointed to belongs to.
   *  This is only valid for cells.
   */
  int level () const;

  /**
   * Return the index of the
   * element presently pointed to
   * on the present level.
   *
   * Within a Triangulation object cells are uniquely identified by a
   * pair <code>(level, index)</code> where the former is the cell's
   * refinement level and the latter is the index of the cell within
   * this refinement level (the latter being what this function
   * returns). Consequently, there may be multiple cells on different
   * refinement levels but with the same index within their level.
   * Contrary to this, if the current object corresponds to a face or
   * edge, then the object is uniquely identified solely by its index
   * as faces and edges do not have a refinement level.
   *
   * @note The indices objects returned by this function are not a
   * contiguous set of numbers on each level: going from cell to cell,
   * some of the indices in a level may be unused.
   *
   * @note If the triangulation is actually of type
   * parallel::distributed::Triangulation then the indices are
   * relatively only to that part of the distributed triangulation
   * that is stored on the current processor. In other words, cells
   * living in the partitions of the triangulation stored on different
   * processors may have the same index even if they refer to the same
   * cell, and the may have different indices even if they do refer to
   * the same cell (e.g., if a cell is owned by one processor but is a
   * ghost cell on another).
   */
  int index () const;

  /**
   *  Return the state of the
   *  iterator.  For the different
   *  states an accessor can be in,
   *  refer to the
   *  TriaRawIterator
   *  documentation.
   */
  IteratorState::IteratorStates state () const;

  /**
   * Return a pointer to the
   * triangulation which the object
   * pointed to by this class
   * belongs to.
   */
  const Triangulation<dim,spacedim> &get_triangulation () const;

  /**
   * @}
   */
protected:
  /**
   * The level if this is a cell
   * (<tt>structdim==dim</tt>). Else,
   * contains zero.
   */
  typename dealii::internal::TriaAccessor::PresentLevelType<structdim,dim>::type present_level;

  /**
   *  Used to store the index of
   *  the element presently pointed
   *  to on the level presentl
   *  used.
   */
  int present_index;

  /**
   *  Pointer to the triangulation
   *  which we act on.
   */
  const Triangulation<dim,spacedim> *tria;

private:

  template <typename Accessor> friend class TriaRawIterator;
  template <typename Accessor> friend class TriaIterator;
  template <typename Accessor> friend class TriaActiveIterator;
};



/**
 * A class that represents accessor objects to iterators that don't
 * make sense such as quad iterators in on 1d meshes.  This class can
 * not be used to create objects (it will in fact throw an exception
 * if this should ever be attempted but it sometimes allows code to be
 * written in a simpler way in a dimension independent way. For
 * example, it allows to write code that works on quad iterators that
 * is dimension independent because quad iterators (with the current
 * class) exist and are syntactically correct. You can not expect,
 * however, to ever generate one of these iterators, meaning you need
 * to expect to wrap the code block in which you use quad iterators
 * into something like <code>if (dim@>1)</code> -- which makes eminent
 * sense anyway.
 *
 * This class provides the minimal interface necessary for Accessor
 * classes to interact with Iterator classes. However, this is only
 * for syntactic correctness, none of the functions do anything but
 * generate errors.
 *
 * @ingroup Accessors
 * @author Wolfgang Bangerth, 2008
 */
template <int structdim, int dim, int spacedim=dim>
class InvalidAccessor :  public TriaAccessorBase<structdim,dim,spacedim>
{
public:
  /**
   * Propagate typedef from
   * base class to this class.
   */
  typedef typename TriaAccessorBase<structdim,dim,spacedim>::AccessorData AccessorData;

  /**
   * Constructor.  This class is
   * used for iterators that make
   * sense in a given dimension,
   * for example quads for 1d
   * meshes. Consequently, while
   * the creation of such objects
   * is syntactically valid, they
   * make no semantic sense, and we
   * generate an exception when
   * such an object is actually
   * generated.
   */
  InvalidAccessor (const Triangulation<dim,spacedim> *parent     =  0,
                   const int                 level      = -1,
                   const int                 index      = -1,
                   const AccessorData       *local_data =  0);

  /**
   * Copy constructor.  This class
   * is used for iterators that
   * make sense in a given
   * dimension, for example quads
   * for 1d meshes. Consequently,
   * while the creation of such
   * objects is syntactically
   * valid, they make no semantic
   * sense, and we generate an
   * exception when such an object
   * is actually generated.
   */
  InvalidAccessor (const InvalidAccessor &);

  /**
   * Conversion from other
   * accessors to the current
   * invalid one. This of course
   * also leads to a run-time
   * error.
   */
  template <typename OtherAccessor>
  InvalidAccessor (const OtherAccessor &);

  /**
   * Dummy copy operation.
   */
  void copy_from (const InvalidAccessor &);

  /**
   * Dummy comparison operators.
   */
  bool operator == (const InvalidAccessor &) const;
  bool operator != (const InvalidAccessor &) const;

  /**
   * Dummy operators to make things
   * compile. Does nothing.
   */
  void operator ++ () const;
  void operator -- () const;

  /**
   * Dummy function representing
   * whether the accessor points to
   * a used or an unused object.
   */
  bool used () const;

  /**
   * Dummy function representing
   * whether the accessor points to
   * an object that has children.
   */
  bool has_children () const;
};



/**
 * A class that provides access to objects in a triangulation such as
 * its vertices, sub-objects, children, geometric information, etc.
 * This class represents objects of dimension <code>structdim</code>
 * (i.e. 1 for lines, 2 for quads, 3 for hexes) in a triangulation of
 * dimensionality <code>dim</code> (i.e. 1 for a triangulation of
 * lines, 2 for a triangulation of quads, and 3 for a triangulation of
 * hexes) that is embedded in a space of dimensionality
 * <code>spacedim</code> (for <code>spacedim==dim</code> the
 * triangulation represents a domain in $R^{dim}$, for
 * <code>spacedim@>dim</code> the triangulation is of a manifold
 * embedded in a higher dimensional space).
 *
 * @ingroup Accessors
 * @author Wolfgang Bangerth and others, 1998, 2000, 2008
 */
template <int structdim, int dim, int spacedim>
class TriaAccessor : public TriaAccessorBase<structdim, dim, spacedim>
{
public:
  /**
   * Propagate typedef from
   * base class to this class.
   */
  typedef
  typename TriaAccessorBase<structdim,dim,spacedim>::AccessorData
  AccessorData;

  /**
   *  Constructor.
   */
  TriaAccessor (const Triangulation<dim,spacedim> *parent     =  0,
                const int                 level      = -1,
                const int                 index      = -1,
                const AccessorData       *local_data =  0);

  /**
   * Conversion constructor. This
   * constructor exists to make certain
   * constructs simpler to write in
   * dimension independent code. For
   * example, it allows assigning a face
   * iterator to a line iterator, an
   * operation that is useful in 2d but
   * doesn't make any sense in 3d. The
   * constructor here exists for the
   * purpose of making the code conform to
   * C++ but it will unconditionally abort;
   * in other words, assigning a face
   * iterator to a line iterator is better
   * put into an if-statement that checks
   * that the dimension is two, and assign
   * to a quad iterator in 3d (an operator
   * that, without this constructor would
   * be illegal if we happen to compile for
   * 2d).
   */
  template <int structdim2, int dim2, int spacedim2>
  TriaAccessor (const InvalidAccessor<structdim2,dim2,spacedim2> &);

  /**
   * Another conversion operator
   * between objects that don't
   * make sense, just like the
   * previous one.
   */
  template <int structdim2, int dim2, int spacedim2>
  TriaAccessor (const TriaAccessor<structdim2,dim2,spacedim2> &);

  /**
   *  Test for the element being
   *  used or not.  The return
   *  value is @p true for all
   *  iterators that are either
   *  normal iterators or active
   *  iterators, only raw iterators
   *  can return @p false. Since
   *  raw iterators are only used
   *  in the interiors of the
   *  library, you will not usually
   *  need this function.
   */
  bool used () const;

  /**
   *  Index of the parent.
   *  The level of the parent is one
   *  lower than that of the
   *  present cell, if the parent
   *  of a cell is accessed. If the
   *  parent does not exist, -1 is
   *  returned.
   */
  int parent_index () const;


  /**
   *  @name Accessing sub-objects
   */
  /**
   * @{
   */

  /**
   *  Return the global index of i-th
   *  vertex of the current object. The
   *  convention regarding the numbering of
   *  vertices is laid down in the
   *  documentation of the GeometryInfo
   *  class.
   *
   *  Note that the returned value is only
   *  the index of the geometrical
   *  vertex. It has nothing to do with
   *  possible degrees of freedom
   *  associated with it. For this, see the
   *  @p DoFAccessor::vertex_dof_index
   *  functions.
   *
   *  @note Despite the name, the index returned here is only
   *  global in the sense that it is specific to a particular
   *  Triangulation object or, in the case the triangulation is
   *  actually of type parallel::distributed::Triangulation,
   *  specific to that part of the distributed triangulation stored
   *  on the current processor.
   */
  unsigned int vertex_index (const unsigned int i) const;

  /**
   *  Return a reference to the
   *  @p ith vertex.
   */
  Point<spacedim> &vertex (const unsigned int i) const;

  /**
   * Pointer to the @p ith line
   * bounding this object.
   */
  typename dealii::internal::Triangulation::Iterators<dim,spacedim>::line_iterator
  line (const unsigned int i) const;

  /**
   * Line index of the @p ith
   * line bounding this object.
   *
   * Implemented only for
   * <tt>structdim>1</tt>,
   * otherwise an exception
   * generated.
   */
  unsigned int line_index (const unsigned int i) const;

  /**
   * Pointer to the @p ith quad
   * bounding this object.
   */
  typename dealii::internal::Triangulation::Iterators<dim,spacedim>::quad_iterator
  quad (const unsigned int i) const;

  /**
   * Quad index of the @p ith
   * quad bounding this object.
   *
   * Implemented only for
   * <tt>structdim>2</tt>,
   * otherwise an exception
   * generated.
   */
  unsigned int quad_index (const unsigned int i) const;
  /**
   * @}
   */

  /**
   *  @name Orientation of sub-objects
   */
  /**
   * @{
   */

  /**
   * Return whether the face with
   * index @p face has its normal
   * pointing in the standard
   * direction (@p true) or
   * whether it is the opposite
   * (@p false). Which is the
   * standard direction is
   * documented with the
   * GeometryInfo class. In
   * 1d and 2d, this is always
   * @p true, but in 3d it may be
   * different, see the respective
   * discussion in the
   * documentation of the
   * GeometryInfo class.
   *
   * This function is really only
   * for internal use in the
   * library unless you absolutely
   * know what this is all about.
   */
  bool face_orientation (const unsigned int face) const;

  /**
   * Return whether the face with index @p
   * face is rotated by 180 degrees (@p true)
   * or or not (@p false). In 1d and 2d, this
   * is always @p false, but in 3d it may be
   * different, see the respective discussion
   * in the documentation of the
   * GeometryInfo class.
   *
   * This function is really only
   * for internal use in the
   * library unless you absolutely
   * know what this is all about.
   */
  bool face_flip (const unsigned int face) const;

  /**
   * Return whether the face with index @p
   * face is rotated by 90 degrees (@p true)
   * or or not (@p false). In 1d and 2d, this
   * is always @p false, but in 3d it may be
   * different, see the respective discussion
   * in the documentation of the
   * GeometryInfo class.
   *
   * This function is really only
   * for internal use in the
   * library unless you absolutely
   * know what this is all about.
   */
  bool face_rotation (const unsigned int face) const;

  /**
   * Return whether the line with index @p
   * line is oriented in standard
   * direction. @p true indicates, that the
   * line is oriented from vertex 0 to vertex
   * 1, whereas it is the other way around
   * otherwise. In 1d and 2d, this is always
   * @p true, but in 3d it may be different,
   * see the respective discussion in the
   * documentation of the
   * GeometryInfo classe.
   *
   * This function is really only
   * for internal use in the
   * library unless you absolutely
   * know what this is all about.
   */
  bool line_orientation (const unsigned int line) const;
  /**
   * @}
   */

  /**
   *  @name Accessing children
   */
  /**
   * @{
   */

  /**
   *  Test whether the object has
   *  children.
   */
  bool has_children () const;

  /**
   * Return the number of immediate
   * children of this object. The
   * number of children of an
   * unrefined cell is zero.
   */
  unsigned int n_children() const;

  /**
   * Compute and return the number
   * of active descendants of this
   * objects. For example, if all
   * of the eight children of a hex
   * are further refined
   * isotropically exactly once,
   * the returned number will be
   * 64, not 80.
   *
   * If the present cell is not
   * refined, one is returned.
   *
   * If one considers a triangulation as a
   * forest where the root of each tree are
   * the coarse mesh cells and nodes have
   * descendents (the children of a cell),
   * then this function returns the number
   * of terminal nodes in the sub-tree
   * originating from the current object;
   * consequently, if the current object is
   * not further refined, the answer is
   * one.
   */
  unsigned int number_of_children () const;

  /**
   * Return the number of times
   * that this object is
   * refined. Note that not all its
   * children are refined that
   * often (which is why we prepend
   * @p max_), the returned number
   * is rather the maximum number
   * of refinement in any branch of
   * children of this object.
   *
   * For example, if this object is
   * refined, and one of its children is
   * refined exactly one more time, then
   * <tt>max_refinement_depth</tt> should
   * return 2.
   *
   * If this object is not refined (i.e. it
   * is active), then the return value is
   * zero.
   */
  unsigned int max_refinement_depth () const;

  /**
   *  Return an iterator to the @p ith
   *  child.
   */
  TriaIterator<TriaAccessor<structdim,dim,spacedim> >
  child (const unsigned int i) const;

  /**
   *  Return an iterator to that object
   *  that is identical to the ith child
   *  for isotropic refinement. If the
   *  current object is refined
   *  isotropically, then the returned
   *  object is the ith child. If the
   *  current object is refined
   *  anisotropically, the returned child
   *  may in fact be a grandchild of the
   *  object, or may not exist at all (in
   *  which case an exception is
   *  generated).
   */
  TriaIterator<TriaAccessor<structdim,dim,spacedim> >
  isotropic_child (const unsigned int i) const;

  /**
   * Return the RefinementCase
   * of this cell.
   */
  RefinementCase<structdim> refinement_case () const;

  /**
   *  Index of the @p ith child.
   *  The level of the child is one
   *  higher than that of the
   *  present cell, if the children
   *  of a cell are accessed. The
   *  children of faces have no level.
   *  If the child does not exist, -1
   *  is returned.
   */
  int child_index (const unsigned int i) const;

  /**
   *  Index of the @p ith isotropic child.
   *  See the isotropic_child() function
   *  for a definition of this concept.  If
   *  the child does not exist, -1 is
   *  returned.
   */
  int isotropic_child_index (const unsigned int i) const;
  /**
   * @}
   */

  /**
   *  @name Dealing with boundary indicators
   */
  /**
   * @{
   */

  /**
   * Boundary indicator of this
   * object.
   *
   * If the return value is the special
   * value numbers::internal_face_boundary_id,
   * then this object is in the
   * interior of the domain.
   *
   * @see @ref GlossBoundaryIndicator "Glossary entry on boundary indicators"
   */
  types::boundary_id boundary_indicator () const;

  /**
   * Set the boundary indicator.
   * The same applies as for the
   * <tt>boundary_indicator()</tt>
   * function.
   *
   * Note that it only sets the
   * boundary object of the current
   * object itself, not the
   * indicators of the ones that
   * bound it. For example, in 3d,
   * if this function is called on
   * a face, then the boundary
   * indicator of the 4 edges that
   * bound the face remain
   * unchanged. If you want to set
   * the boundary indicators of
   * face and edges at the same
   * time, use the
   * set_all_boundary_indicators()
   * function. You can see the result of not using the correct function in the
   * results section of step-49.
   *
   * @warning You should never set the
   * boundary indicator of an interior face
   * (a face not at the boundary of the
   * domain), or set set the boundary
   * indicator of an exterior face to
   * numbers::internal_face_boundary_id
   * (this value is reserved for another
   * purpose). Algorithms may not work or
   * produce very confusing results if
   * boundary cells have a boundary
   * indicator of numbers::internal_face_boundary_id
   * or if interior cells have boundary
   * indicators other than numbers::internal_face_boundary_id.
   * Unfortunately, the current object
   * has no means of finding out whether it
   * really is at the boundary of the
   * domain and so cannot determine whether
   * the value you are trying to set makes
   * sense under the current circumstances.
   *
   * @ingroup boundary
   *
   * @see @ref GlossBoundaryIndicator "Glossary entry on boundary indicators"
   */
  void set_boundary_indicator (const types::boundary_id) const;

  /**
   * Do as set_boundary_indicator()
   * but also set the boundary
   * indicators of the objects that
   * bound the current object. For
   * example, in 3d, if
   * set_boundary_indicator() is
   * called on a face, then the
   * boundary indicator of the 4
   * edges that bound the face
   * remain unchanged. In contrast, if you call the current function,
   * the boundary indicators
   * of face and edges are all set to the given value.
   *
   * This function is useful if you set boundary indicators of faces
   * in 3d (in 2d, the function does the same as set_boundary_indicator())
   * and you do so because you want a curved boundary object to
   * represent the part of the boundary that corresponds to the
   * current face. In that case, the Triangulation class needs to figure
   * out where to put new vertices upon mesh refinement, and higher order
   * Mapping objects also need to figure out where new interpolation points
   * for a curved boundary approximation should be. In either case, the
   * two classes first determine where interpolation points on the edges
   * of a boundary face should be, asking the boundary object, before
   * asking the boundary object for the interpolation points corresponding
   * to the interior of the boundary face. For this to work properly, it is
   * not sufficient to have set the boundary indicator for the face alone,
   * but you also need to set the boundary indicators of the edges that
   * bound the face. This function does all of this at once. You can see
   * the result of not using the correct function in the
   * results section of step-49.
   *
   * @ingroup boundary
   *
   * @see @ref GlossBoundaryIndicator "Glossary entry on boundary indicators"
   */
  void set_all_boundary_indicators (const types::boundary_id) const;

  /**
   * Return whether this object is at the
   * boundary. Obviously, the use of this
   * function is only possible for
   * <tt>dim@>structdim</tt>; however, for
   * <tt>dim==structdim</tt>, an object is a
   * cell and the CellAccessor class offers
   * another possibility to determine
   * whether a cell is at the boundary or
   * not.
   */
  bool at_boundary () const;

  /**
   * Return a constant reference to a
   * boundary object used for this
   * object. This function is a shortcut to
   * retrieving the boundary indicator
   * using boundary_indicator() and then
   * asking the
   * Triangulation::get_boundary() function
   * for the boundary object.
   */
  const Boundary<dim,spacedim> &get_boundary () const;

  /**
   * @}
   */


  /**
   * @name User data
   */
  /**
   * @{
   */
  /**
   *  Read the user flag.
  *  See @ref GlossUserFlags for more information.
   */
  bool user_flag_set () const;

  /**
   *  Set the user flag.
  *  See @ref GlossUserFlags for more information.
   */
  void set_user_flag () const;

  /**
   *  Clear the user flag.
  *  See @ref GlossUserFlags for more information.
   */
  void clear_user_flag () const;

  /**
   *  Set the user flag for this
   * and all descendants.
  *  See @ref GlossUserFlags for more information.
   */
  void recursively_set_user_flag () const;

  /**
   *  Clear the user flag for this
   * and all descendants.
  *  See @ref GlossUserFlags for more information.
   */
  void recursively_clear_user_flag () const;

  /**
   * Reset the user data to zero,
   * independent if pointer or index.
  * See @ref GlossUserData for more information.
   */
  void clear_user_data () const;

  /**
   * Set the user pointer
   * to @p p.
   *
   * @note User pointers and user
   * indices are mutually
   * exclusive. Therefore, you can
   * only use one of them, unless
   * you call
   * Triangulation::clear_user_data()
   * in between.
  *
  * See @ref GlossUserData for more information.
   */
  void set_user_pointer (void *p) const;

  /**
   * Reset the user pointer
   * to a @p NULL pointer.
  * See @ref GlossUserData for more information.
   */
  void clear_user_pointer () const;

  /**
   * Access the value of the user
   * pointer. It is in the
   * responsibility of the user to
   * make sure that the pointer
   * points to something
   * useful. You should use the new
   * style cast operator to
   * maintain a minimum of
   * typesafety, e.g.
   *
   * @note User pointers and user
   * indices are mutually
   * exclusive. Therefore, you can
   * only use one of them, unless
   * you call
   * Triangulation::clear_user_data()
   * in between.
   * <tt>A *a=static_cast<A*>(cell->user_pointer());</tt>.
  *
  * See @ref GlossUserData for more information.
   */
  void *user_pointer () const;

  /**
   * Set the user pointer of this
   * object and all its children to
   * the given value. This is
   * useful for example if all
   * cells of a certain subdomain,
   * or all faces of a certain part
   * of the boundary should have
   * user pointers pointing to
   * objects describing this part
   * of the domain or boundary.
   *
   * Note that the user pointer is
   * not inherited under mesh
   * refinement, so after mesh
   * refinement there might be
   * cells or faces that don't have
   * user pointers pointing to the
   * describing object. In this
   * case, simply loop over all the
   * elements of the coarsest level
   * that has this information, and
   * use this function to
   * recursively set the user
   * pointer of all finer levels of
   * the triangulation.
   *
   * @note User pointers and user
   * indices are mutually
   * exclusive. Therefore, you can
   * only use one of them, unless
   * you call
   * Triangulation::clear_user_data()
   * in between.
  *
  * See @ref GlossUserData for more information.
   */
  void recursively_set_user_pointer (void *p) const;

  /**
   * Clear the user pointer of this
   * object and all of its
   * descendants. The same holds as
   * said for the
   * recursively_set_user_pointer()
   * function.
  * See @ref GlossUserData for more information.
   */
  void recursively_clear_user_pointer () const;

  /**
   * Set the user index
   * to @p p.
   *
   * @note User pointers and user
   * indices are mutually
   * exclusive. Therefore, you can
   * only use one of them, unless
   * you call
   * Triangulation::clear_user_data()
   * in between.
  * See @ref GlossUserData for more information.
   */
  void set_user_index (const unsigned int p) const;

  /**
   * Reset the user index to 0.
  * See @ref GlossUserData for more information.
   */
  void clear_user_index () const;

  /**
   * Access the value of the user
   * index.
   *
   * @note User pointers and user
   * indices are mutually
   * exclusive. Therefore, you can
   * only use one of them, unless
   * you call
   * Triangulation::clear_user_data()
   * in between.
  *
  * See @ref GlossUserData for more information.
   */
  unsigned int user_index () const;

  /**
   * Set the user index of this
   * object and all its children.
   *
   * Note that the user index is
   * not inherited under mesh
   * refinement, so after mesh
   * refinement there might be
   * cells or faces that don't have
   * the expected user indices. In
   * this case, simply loop over
   * all the elements of the
   * coarsest level that has this
   * information, and use this
   * function to recursively set
   * the user index of all finer
   * levels of the triangulation.
   *
   * @note User pointers and user
   * indices are mutually
   * exclusive. Therefore, you can
   * only use one of them, unless
   * you call
   * Triangulation::clear_user_data()
   * in between.
  *
  * See @ref GlossUserData for more information.
   */
  void recursively_set_user_index (const unsigned int p) const;

  /**
   * Clear the user index of this
   * object and all of its
   * descendants. The same holds as
   * said for the
   * recursively_set_user_index()
   * function.
  *
  * See @ref GlossUserData for more information.
   */
  void recursively_clear_user_index () const;
  /**
   * @}
   */

  /**
   * @name Geometric information about an object
   */
  /**
   * @{
   */

  /**
   * Diameter of the object.
   *
   * The diameter of an object is computed
   * to be the largest diagonal. This is
   * not necessarily the true diameter for
   * objects that may use higher order
   * mappings, but completely sufficient
   * for most computations.
   */
  double diameter () const;

  /**
   * Length of an object in the direction
   * of the given axis, specified in the
   * local coordinate system. See the
   * documentation of GeometryInfo for the
   * meaning and enumeration of the local
   * axes.
   *
   * Note that the "length" of an object
   * can be interpreted in a variety of
   * ways. Here, we choose it as the
   * maximal length of any of the edges of
   * the object that are parallel to the
   * chosen axis on the reference cell.
   */
  double extent_in_direction (const unsigned int axis) const;

  /**
   * Returns the minimal distance between
   * any two vertices.
   */
  double minimum_vertex_distance () const;

  /**
   * Center of the object. The center of an
   * object is defined to be the average of
   * the locations of the vertices, which
   * is also where the (dim-)linear mapping
   * places the midpoint of the unit cell
   * in real space.  However, this may not
   * be the barycenter of the object and it
   * may also not be the true center of an
   * object if higher order mappings are
   * used.
   */
  Point<spacedim> center () const;

  /**
   * Barycenter of the object.
   */
  Point<spacedim> barycenter () const;

  /**
   * Volume of the object.  Here, the
   * volume is defined to be confined by
   * the (dim-)linear mapping of the unit
   * cell.  No information about the actual
   * geometric boundary of the domain is
   * used.
   */
  double measure () const;

  /**
   * Return true if the current object is a
   * translation of the given argument.
   *
   * @note For the purpose of a
   * triangulation, cells, faces, etc are
   * only characterized by their
   * vertices. The current function
   * therefore only compares the locations
   * of vertices. For many practical
   * applications, however, it is not only
   * the vertices that determine whether
   * one cell is a translation of another,
   * but also how the cell is mapped from
   * the reference cell to its location in
   * real space. For example, if we are
   * using higher order mappings, then not
   * only do the vertices have to be
   * translations of each other, but also
   * the points along edges. In these
   * questions, therefore, it would be
   * appropriate to ask the mapping, not
   * the current function, whether two
   * objects are translations of each
   * other.
   */
  bool
  is_translation_of (const TriaIterator<TriaAccessor<structdim,dim,spacedim> > &o) const;

  /**
   * @}
   */


private:
  /**
   *  Copy the data of the given
   *  object into the internal data
   *  structures of a
   *  triangulation.
   */
  void set (const dealii::internal::Triangulation::TriaObject<structdim> &o) const;

  /**
   * Set the flag indicating, what
   * <code>line_orientation()</code> will
   * return.
   *
   * It is only possible to set the
   * line_orientation of faces in 3d
   * (i.e. <code>structdim==2 &&
   * dim==3</code>).
   */
  void set_line_orientation (const unsigned int line,
                             const bool         orientation) const;

  /**
   * Set whether the quad with
   * index @p face has its normal
   * pointing in the standard
   * direction (@p true) or
   * whether it is the opposite
   * (@p false). Which is the
   * standard direction is
   * documented with the
   * GeometryInfo class.
   *
   * This function is only for
   * internal use in the
   * library. Setting this flag to
   * any other value than the one
   * that the triangulation has
   * already set is bound to bring
   * you desaster.
   */
  void set_face_orientation (const unsigned int face,
                             const bool         orientation) const;

  /**
   * Set the flag indicating, what
   * <code>face_flip()</code> will
   * return.
   *
   * It is only possible to set the
   * face_orientation of cells in 3d
   * (i.e. <code>structdim==3 &&
   * dim==3</code>).
   */
  void set_face_flip (const unsigned int face,
                      const bool         flip) const;

  /**
   * Set the flag indicating, what
   * <code>face_rotation()</code> will
   * return.
   *
   * It is only possible to set the
   * face_orientation of cells in 3d
   * (i.e. <code>structdim==3 &&
   * dim==3</code>).
   */
  void set_face_rotation (const unsigned int face,
                          const bool         rotation) const;

  /**
   *  Set the @p used flag. Only
   *  for internal use in the
   *  library.
   */
  void set_used_flag () const;

  /**
   *  Clear the @p used flag. Only
   *  for internal use in the
   *  library.
   */
  void clear_used_flag () const;

  /**
   * Set the @p RefinementCase<dim> this
   * TriaObject is refined with.
   * Not defined for
   * <tt>structdim=1</tt> as lines
   * are always refined resulting
   * in 2 children lines (isotropic
   * refinement).
   *
   * You should know quite exactly
   * what you are doing if you
   * touch this function. It is
   * exclusively for internal use
   * in the library.
   */
  void set_refinement_case (const RefinementCase<structdim> &ref_case) const;

  /**
   * Clear the RefinementCase<dim> of
   * this TriaObject, i.e. reset it
   * to RefinementCase<dim>::no_refinement.
   *
   * You should know quite exactly
   * what you are doing if you
   * touch this function. It is
   * exclusively for internal use
   * in the library.
   */
  void clear_refinement_case () const;

  /**
   * Set the parent of a cell.
   */
  void set_parent (const unsigned int parent_index);

  /**
   *  Set the index of the ith
   *  child. Since the children
   *  come at least in pairs, we
   *  need to store the index of
   *  only every second child,
   *  i.e. of the even numbered
   *  children. Make sure, that the
   *  index of child i=0 is set
   *  first. Calling this function
   *  for odd numbered children is
   *  not allowed.
   */
  void set_children (const unsigned int i, const int index) const;

  /**
   *  Clear the child field,
   *  i.e. set it to a value which
   *  indicates that this cell has
   *  no children.
   */
  void clear_children () const;

private:
  /**
   *  Copy operator. This is normally used
   *  in a context like <tt>iterator a,b;
   *  *a=*b;</tt>. Presumably, the intent
   *  here is to copy the object pointed to
   *  by @p b to the object pointed to by
   *  @p a. However, the result of
   *  dereferencing an iterator is not an
   *  object but an accessor; consequently,
   *  this operation is not useful for
   *  iterators on triangulations. We
   *  declare this function here private,
   *  thus it may not be used from outside.
   *  Furthermore it is not implemented and
   *  will give a linker error if used
   *  anyway.
   */
  void operator = (const TriaAccessor &);

  template <int, int> friend class Triangulation;

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






/**
 * Closure class to stop induction of classes. Should never be called
 * and thus produces an error when created.
 *
 * @ingroup grid
 */
template<int dim, int spacedim>
class TriaAccessor<0, dim, spacedim>
{
private:
  /**
   * Constructor. Made private to
   * make sure that this class
   * can't be used.
   */
  TriaAccessor ();
};



/**
 * A class that represents an access to a face in 1d -- i.e. to a
 * point. This is not a full fledged access from which you can build
 * an iterator: for example, you can't iterate from one such point to
 * the next. Point also don't have children, and they don't have
 * neighbors.
 *
 * @author Wolfgang Bangerth, 2010
 */
template <int spacedim>
class TriaAccessor<0, 1, spacedim>
{
public:
  /**
   *  Dimension of the space the
   *  object represented by this
   *  accessor lives in. For
   *  example, if this accessor
   *  represents a quad that is
   *  part of a two-dimensional
   *  surface in four-dimensional
   *  space, then this value is
   *  four.
   */
  static const unsigned int space_dimension = spacedim;

  /**
   * Dimensionality of the object
   * that the thing represented by
   * this accessopr is part of. For
   * example, if this accessor
   * represents a line that is part
   * of a hexahedron, then this
   * value will be three.
   */
  static const unsigned int dimension = 1;

  /**
   * Dimensionality of the current
   * object represented by this
   * accessor. For example, if it
   * is line (irrespective of
   * whether it is part of a quad
   * or hex, and what dimension we
   * are in), then this value
   * equals 1.
   */
  static const unsigned int structure_dimension = 0;

  /**
   * Pointer to internal data.
   */
  typedef void AccessorData;

  /**
   * Whether the vertex represented
   * here is at the left end of the
   * domain, the right end, or in
   * the interior.
   */
  enum VertexKind
  {
    left_vertex,
    interior_vertex,
    right_vertex
  };

  /**
   * Constructor.
   *
   * Since there is no mapping from
   * vertices to cells, an accessor
   * object for a point has no way
   * to figure out whether it is at
   * the boundary of the domain or
   * not. Consequently, the second
   * argument must be passed by the
   * object that generates this
   * accessor -- e.g. a 1d cell
   * that can figure out whether
   * its left or right vertex are
   * at the boundary.
   *
   * The third argument is the
   * global index of the vertex we
   * point to.
   */
  TriaAccessor (const Triangulation<1,spacedim> *tria,
                const VertexKind      vertex_kind,
                const unsigned int    vertex_index);

  /**
   * Constructor. This constructor
   * exists in order to maintain
   * interface compatibility with
   * the other accessor
   * classes. However, it doesn't
   * do anything useful here and so
   * may not actually be called.
   */
  TriaAccessor (const Triangulation<1,spacedim> *tria = 0,
                const int = 0,
                const int = 0,
                const AccessorData * = 0);

  /**
   * Constructor. Should never be
   * called and thus produces an
   * error.
   */
  template <int structdim2, int dim2, int spacedim2>
  TriaAccessor (const TriaAccessor<structdim2,dim2,spacedim2> &);

  /**
   * Constructor. Should never be
   * called and thus produces an
   * error.
   */
  template <int structdim2, int dim2, int spacedim2>
  TriaAccessor (const InvalidAccessor<structdim2,dim2,spacedim2> &);

  /**
   *  Copy operator. Since this is
   *  only called from iterators,
   *  do not return anything, since
   *  the iterator will return
   *  itself.
   *
   *  This method is protected,
   *  since it is only to be called
   *  from the iterator class.
   */
  void copy_from (const TriaAccessor &);

  /**
   *  Return the state of the
   *  iterator. Since an iterator
   *  to points can not be
   *  incremented or decremented,
   *  its state remains constant,
   *  and in particular equal to
   *  IteratorState::valid.
   */
  static IteratorState::IteratorStates state ();

  /**
   * Level of this object. Vertices
   * have no level, so this
   * function always returns zero.
   */
  static int level ();

  /**
   * Index of this object. Returns
   * the global index of the vertex
   * this object points to.
   */
  int index () const;

  /**
   * @name Advancement of iterators
   */
  /**
   * @{
   */
  /**
   *  This operator advances the
   *  iterator to the next
   *  element. For points, this
   *  operation is not defined, so
   *  you can't iterate over point
   *  iterators.
   */
  void operator ++ () const;

  /**
   *  This operator moves the
   *  iterator to the previous
   *  element. For points, this
   *  operation is not defined, so
   *  you can't iterate over point
   *  iterators.
   */
  void operator -- () const;
  /**
   *  Compare for equality.
   */
  bool operator == (const TriaAccessor &) const;

  /**
   * Compare for inequality.
   */
  bool operator != (const TriaAccessor &) const;

  /**
   * @}
   */

  /**
   *  Index of the parent. You
   *  can't do this for points.
   */
  static int parent_index ();

  /**
   *  @name Accessing sub-objects
   */
  /**
   * @{
   */

  /**
   *  Return the global index of
   *  i-th vertex of the current
   *  object. If i is zero, this
   *  returns the index of the
   *  current point to which this
   *  object refers. Otherwise, it
   *  throws an exception.
   *
   *  Note that the returned value is only
   *  the index of the geometrical
   *  vertex. It has nothing to do with
   *  possible degrees of freedom
   *  associated with it. For this, see the
   *  @p DoFAccessor::vertex_dof_index
   *  functions.
   *
   *  @note Despite the name, the index returned here is only
   *  global in the sense that it is specific to a particular
   *  Triangulation object or, in the case the triangulation is
   *  actually of type parallel::distributed::Triangulation,
   *  specific to that part of the distributed triangulation stored
   *  on the current processor.
   */
  unsigned int vertex_index (const unsigned int i = 0) const;

  /**
   *  Return a reference to the
   *  @p ith vertex. If i is zero, this
   *  returns a reference to the
   *  current point to which this
   *  object refers. Otherwise, it
   *  throws an exception.
   */
  Point<spacedim> &vertex (const unsigned int i = 0) const;

  /**
   * Return the center of this object,
   * which of course co-incides with the
   * location of the vertex this object
   * refers to.
   */
  Point<spacedim> center () const;

  /**
   * Pointer to the @p ith line
   * bounding this object. Will
   * point to an invalid object.
   */
  typename dealii::internal::Triangulation::Iterators<1,spacedim>::line_iterator
  static line (const unsigned int);

  /**
   * Line index of the @p ith
   * line bounding this object.
   *
   * Implemented only for
   * <tt>structdim>1</tt>,
   * otherwise an exception
   * generated.
   */
  static unsigned int line_index (const unsigned int i);

  /**
   * Pointer to the @p ith quad
   * bounding this object.
   */
  static
  typename dealii::internal::Triangulation::Iterators<1,spacedim>::quad_iterator
  quad (const unsigned int i);

  /**
   * Quad index of the @p ith
   * quad bounding this object.
   *
   * Implemented only for
   * <tt>structdim>2</tt>,
   * otherwise an exception
   * generated.
   */
  static unsigned int quad_index (const unsigned int i);

  /**
   * @}
   */


  /**
   * Return whether this point is
   * at the boundary of the
   * one-dimensional triangulation
   * we deal with here.
   */
  bool at_boundary () const;

  /**
   * Boundary indicator of this
   * object. The convention for one
   * dimensional triangulations is
   * that left end vertices have
   * boundary indicator zero, and
   * right end vertices have
   * boundary indicator one.
   *
   * If the return value is the special
   * value numbers::internal_face_boundary_id,
   * then this object is in the
   * interior of the domain.
   *
   * @see @ref GlossBoundaryIndicator "Glossary entry on boundary indicators"
   */
  types::boundary_id boundary_indicator () const;

  /**
   *  @name Orientation of sub-objects
   */
  /**
   * @{
   */

  /**
   * @brief Always return false
   */
  static bool face_orientation (const unsigned int face);

  /**
   * @brief Always return false
   */
  static bool face_flip (const unsigned int face);

  /**
   * @brief Always return false
   */
  static bool face_rotation (const unsigned int face);

  /**
   * @brief Always return false
   */
  static bool line_orientation (const unsigned int line);

  /**
   * @}
   */

  /**
   *  @name Accessing children
   */
  /**
   * @{
   */

  /**
   *  Test whether the object has
   *  children. Always false.
   */
  static bool has_children ();

  /**
   * Return the number of immediate
   * children of this object.This
   * is always zero in dimension 0.
   */
  static unsigned int n_children();

  /**
   * Compute and return the number
   * of active descendants of this
   * objects. Always zero.
   */
  static unsigned int number_of_children ();

  /**
   * Return the number of times
   * that this object is
   * refined. Always 0.
   */
  static unsigned int max_refinement_depth ();

  /**
   * @brief Return an invalid object
   */
  static
  TriaIterator<TriaAccessor<0,1,spacedim> >
  child (const unsigned int);

  /**
   * @brief Return an invalid object
   */
  static
  TriaIterator<TriaAccessor<0,1,spacedim> >
  isotropic_child (const unsigned int);

  /**
   * Always return no refinement.
   */
  static
  RefinementCase<0> refinement_case ();

  /**
   * @brief Returns -1
   */
  static
  int child_index (const unsigned int i);

  /**
   * @brief Returns -1
   */
  static
  int isotropic_child_index (const unsigned int i);
  /**
   * @}
   */

  /**
   *  @name Dealing with boundary indicators
   */
  /**
   * @{
   */

  /**
   * Set the boundary indicator.
   * The same applies as for the
   * <tt>boundary_indicator()</tt>
   * function.
   *
   * @warning You should never set the
   * boundary indicator of an interior face
   * (a face not at the boundary of the
   * domain), or set set the boundary
   * indicator of an exterior face to
   *  numbers::internal_face_boundary_id
   * (this value is reserved for another
   * purpose). Algorithms may not work or
   * produce very confusing results if
   * boundary cells have a boundary
   * indicator of numbers::internal_face_boundary_id
   * or if interior cells have boundary
   * indicators other than numbers::internal_face_boundary_id.
   * Unfortunately, the current object
   * has no means of finding out whether it
   * really is at the boundary of the
   * domain and so cannot determine whether
   * the value you are trying to set makes
   * sense under the current circumstances.
   *
   * @ingroup boundary
   *
   * @see @ref GlossBoundaryIndicator "Glossary entry on boundary indicators"
   */
  void
  set_boundary_indicator (const types::boundary_id);

  /**
   * Since this object only represents a
   * single vertex, call
   * set_boundary_indicator with the same
   * argument.
   *
   * @ingroup boundary
   *
   * @see @ref GlossBoundaryIndicator "Glossary entry on boundary indicators"
   */
  void
  set_all_boundary_indicators (const types::boundary_id);
  /**
   * @}
   */

  /**
   * Return whether the vertex
   * pointed to here is used.
   */
  bool used () const;

protected:
  /**
   * Pointer to the triangulation
   * we operate on.
   */
  const Triangulation<1,spacedim> *tria;

  /**
   * Whether this is a left end,
   * right end, or interior
   * vertex. This information is
   * provided by the cell at the
   * time of creation.
   */
  VertexKind      vertex_kind;

  /**
   * The global vertex index of the
   * vertex this object corresponds
   * to.
   */
  unsigned int    global_vertex_index;
};




/**
 * This class allows access to a cell: a line in one dimension, a quad
 * in two dimension, etc.
 *
 * The following refers to any dimension:
 *
 * This class allows access to a <tt>cell</tt>, which is a line in 1D
 * and a quad in 2D. Cells have more functionality than lines or quads
 * by themselves, for example they can be flagged for refinement, they
 * have neighbors, they have the possibility to check whether they are
 * at the boundary etc. This class offers access to all this data.
 *
 * @ingroup grid
 * @ingroup Accessors
 * @author Wolfgang Bangerth, 1998, 1999, 2000
 */
template <int dim, int spacedim=dim>
class CellAccessor :  public TriaAccessor<dim,dim,spacedim>
{
public:
  /**
   * Propagate the AccessorData type
   * into the present class.
   */
  typedef typename TriaAccessor<dim,dim,spacedim>::AccessorData AccessorData;

  /**
   * Define the type of the
   * container this is part of.
   */
  typedef Triangulation<dim, spacedim> Container;

  /**
   *  @name Constructors
   */
  /**
   * @{
   */

  /**
   *  Constructor.
   */
  CellAccessor (const Triangulation<dim,spacedim> *parent     =  0,
                const int                 level      = -1,
                const int                 index      = -1,
                const AccessorData       *local_data =  0);

  /**
   * Copy constructor.
   */
  CellAccessor (const TriaAccessor<dim,dim,spacedim> &cell_accessor);

  /**
   * Conversion constructor. This
   * constructor exists to make certain
   * constructs simpler to write in
   * dimension independent code. For
   * example, it allows assigning a face
   * iterator to a line iterator, an
   * operation that is useful in 2d but
   * doesn't make any sense in 3d. The
   * constructor here exists for the
   * purpose of making the code conform to
   * C++ but it will unconditionally abort;
   * in other words, assigning a face
   * iterator to a line iterator is better
   * put into an if-statement that checks
   * that the dimension is two, and assign
   * to a quad iterator in 3d (an operator
   * that, without this constructor would
   * be illegal if we happen to compile for
   * 2d).
   */
  template <int structdim2, int dim2, int spacedim2>
  CellAccessor (const InvalidAccessor<structdim2,dim2,spacedim2> &);

  /**
   * Another conversion operator
   * between objects that don't
   * make sense, just like the
   * previous one.
   */
  template <int structdim2, int dim2, int spacedim2>
  CellAccessor (const TriaAccessor<structdim2,dim2,spacedim2> &);

  /**
   * @}
   */

  /**
   *  @name Accessing sub-objects and neighbors
   */
  /**
   * @{
   */

  /**
   *  Return a pointer to the
   *  @p ith child. Overloaded
   *  version which returns a more
   *  reasonable iterator class.
   */
  TriaIterator<CellAccessor<dim, spacedim> >
  child (const unsigned int i) const;

  /**
   * Return an iterator to the
   * @p ith face of this cell.
   */
  TriaIterator<TriaAccessor<dim-1,dim,spacedim> >
  face (const unsigned int i) const;

  /**
   * Return the (global) index of the
   * @p ith face of this cell.
   *
   *  @note Despite the name, the index returned here is only
   *  global in the sense that it is specific to a particular
   *  Triangulation object or, in the case the triangulation is
   *  actually of type parallel::distributed::Triangulation,
   *  specific to that part of the distributed triangulation stored
   *  on the current processor.
   */
  unsigned int
  face_index (const unsigned int i) const;

  /**
   * Return an iterator to that
   * cell that neighbors the
   * present cell on the given face
   * and subface number.
   *
   * To succeed, the present cell
   * must not be further refined,
   * and the neighbor on the given
   * face must be further refined
   * exactly once; the returned
   * cell is then a child of that
   * neighbor.
   *
   * The function may not be called
   * in 1d, since there we have no
   * subfaces.  The implementation
   * of this function is rather
   * straightforward in 2d, by
   * first determining which face
   * of the neighbor cell the
   * present cell is bordering on
   * (this is what the
   * @p neighbor_of_neighbor
   * function does), and then
   * asking
   * @p GeometryInfo::child_cell_on_subface
   * for the index of the
   * child.
   *
   * However, the situation is more
   * complicated in 3d, since there faces may
   * have more than one orientation, and we
   * have to use @p face_orientation, @p
   * face_flip and @p face_rotation for both
   * this and the neighbor cell to figure out
   * which cell we want to have.
   *
   * This can lead to surprising
   * results: if we are sitting on
   * a cell and are asking for a
   * cell behind subface
   * <tt>sf</tt>, then this means
   * that we are considering the
   * subface for the face in the
   * natural direction for the
   * present cell. However, if the
   * face as seen from this cell
   * has
   * <tt>face_orientation()==false</tt>,
   * then the child of the face
   * that separates the present
   * cell from the neighboring
   * cell's child is not
   * necessarily the @p sf-th child
   * of the face of this cell. This
   * is so because the @p
   * subface_no on a cell corresponds to the
   * subface with respect to the
   * intrinsic ordering of the
   * present cell, whereas children
   * of face iterators are computed
   * with respect to the intrinsic
   * ordering of faces; these two
   * orderings are only identical
   * if the face orientation is @p
   * true, and reversed otherwise.
   *
   * Similarly, effects of
   * <tt>face_flip()==true</tt> and
   * <tt>face_rotation()==true()</tt>, both
   * of which indicate a non-standard face
   * have to be considered.
   *
   * Fortunately, this is only very rarely of
   * concern, since usually one simply wishes
   * to loop over all finer neighbors at a
   * given face of an active cell. Only in
   * the process of refinement of a
   * Triangulation we want to set neighbor
   * information for both our child cells and
   * the neighbor's children. Since we can
   * respect orientation of faces from our
   * current cell in that case, we do NOT
   * respect face_orientation, face_flip and
   * face_rotation of the present cell within
   * this function, i.e. the returned
   * neighbor's child is behind subface @p
   * subface concerning the intrinsic
   * ordering of the given face.
   */
  TriaIterator<CellAccessor<dim, spacedim> >
  neighbor_child_on_subface (const unsigned int face_no,
                             const unsigned int subface_no) const;

  /**
   *  Return a pointer to the
   *  @p ith neighbor.  If the
   *  neighbor does not exist, an
   *  invalid iterator is returned.
   *
   *  <b>Note</b> (cf. TriaLevel<0>):
   *  The neighbor of a cell has at most the
   *  same level as this cell, i.e. it may
   *  or may not be refined.
   */
  TriaIterator<CellAccessor<dim, spacedim>  >
  neighbor (const unsigned int i) const;

  /**
   *  Return the index of the
   *  @p ith neighbor.  If the
   *  neighbor does not exist, its
   *  index is -1.
   */
  int neighbor_index (const unsigned int i) const;

  /**
   *  Return the level of the
   *  @p ith neighbor.  If the
   *  neighbor does not exist, its
   *  level is -1.
   */
  int neighbor_level (const unsigned int i) const;

  /**
   * Return the how-many'th
   * neighbor this cell is of
   * <tt>cell->neighbor(neighbor)</tt>,
   * i.e. return the @p face_no
   * such that
   * <tt>cell->neighbor(neighbor)->neighbor(face_no)==cell</tt>. This
   * function is the right one if
   * you want to know how to get
   * back from a neighbor to the
   * present cell.
   *
   * Note that this operation is
   * only useful if the neighbor is
   * not coarser than the present
   * cell. If the neighbor is
   * coarser this function throws
   * an exception. Use the @p
   * neighbor_of_coarser_neighbor
   * function in that case.
   */
  unsigned int neighbor_of_neighbor (const unsigned int neighbor) const;

  /**
   * Return, whether the neighbor
   * is coarser then the present
   * cell. This is important in
   * case of ansiotropic
   * refinement where this
   * information does not depend on
   * the levels of the cells.
   *
   * Note, that in an anisotropic
   * setting, a cell can only be
   * coarser than another one at a
   * given face, not on a general
   * basis. The face of the finer
   * cell is contained in the
   * corresponding face of the
   * coarser cell, the finer face
   * is either a child or a
   * grandchild of the coarser
   * face.
   */
  bool neighbor_is_coarser (const unsigned int neighbor) const;

  /**
   * This function is a generalization of the
   * @p neighbor_of_neighbor function for the
   * case of a coarser neighbor. It returns a
   * pair of numbers, face_no and subface_no,
   * with the following property, if the
   * neighbor is not refined:
   * <tt>cell->neighbor(neighbor)->neighbor_child_on_subface(face_no,subface_no)==cell</tt>.
   * In 3D, a coarser neighbor can still be
   * refined. In that case subface_no denotes the child index of the neighbors face that relates to our face:
   * <tt>cell->neighbor(neighbor)->face(face_no)->child(subface_no)==cell->face(neighbor)</tt>.
   * This case in 3d and how it can happen
   * is discussed in the introduction of the
   * step-30 tutorial program.
   *
   * This function is impossible
   * for <tt>dim==1</tt>.
   */
  std::pair<unsigned int, unsigned int>
  neighbor_of_coarser_neighbor (const unsigned int neighbor) const;

  /**
   * This function is a generalization of the
   * @p neighbor_of_neighbor and the @p
   * neighbor_of_coarser_neighbor
   * functions. It checks whether the
   * neighbor is coarser or not and calls the
   * respective function. In both cases, only
   * the face_no is returned.
   */
  unsigned int neighbor_face_no (const unsigned int neighbor) const;

  /**
   * @}
   */

  /**
   *  @name Dealing with boundary indicators
   */
  /**
   * @{
   */

  /**
   *  Return whether the @p ith
   *  vertex or face (depending on
   *  the dimension) is part of the
   *  boundary. This is true, if
   *  the @p ith neighbor does not
   *  exist.
   */
  bool at_boundary (const unsigned int i) const;

  /**
   *  Return whether the cell is at
   *  the boundary. Being at the
   *  boundary is defined by one
   *  face being on the
   *  boundary. Note that this does
   *  not catch cases where only one
   *  vertex of a quad or of a hex
   *  is at the boundary, or where
   *  only one line of a hex is at
   *  the boundary while the
   *  interiors of all faces are in
   *  the interior of the
   *  domain. For the latter case,
   *  the @p has_boundary_lines
   *  function is the right one to
   *  ask.
   */
  bool at_boundary () const;

  /**
   * This is a slight variation to
   * the @p at_boundary function:
   * for 1 and 2 dimensions,
   * it is equivalent, for three
   * dimensions it returns
   * whether at least one of the 12
   * lines of the hexahedron is at
   * a boundary. This, of course,
   * includes the case where a
   * whole face is at the boundary,
   * but also some other cases.
   */
  bool has_boundary_lines () const;
  /**
   * @}
   */

  /**
   *  @name Dealing with refinement indicators
   */
  /**
   * @{
   */

  /**
   *  Return the @p
   *  RefinementCase<dim> this cell
   *  was flagged to be refined
   *  with.
   */
  RefinementCase<dim> refine_flag_set () const;

  /**
   *  Flag the cell pointed to for
   *  refinement. This function is
   *  only allowed for active
   *  cells.
   */
  void set_refine_flag (const RefinementCase<dim> ref_case = RefinementCase<dim>::isotropic_refinement) const;

  /**
   *  Clear the refinement flag.
   */
  void clear_refine_flag () const;

  /**
   *  Modify the refinement flag of the cell
   *  to ensure (at least) the given
   *  refinement case @p face_refinement_case at
   *  face <tt>face_no</tt>, taking into
   *  account orientation, flip and rotation
   *  of the face. Return, whether the
   *  refinement flag had to be
   *  modified. This function is only allowed
   *  for active cells.
   */
  bool flag_for_face_refinement (const unsigned int face_no,
                                 const RefinementCase<dim-1> &face_refinement_case=RefinementCase<dim-1>::isotropic_refinement) const;

  /**
   *  Modify the refinement flag of the cell
   *  to ensure that line <tt>face_no</tt>
   *  will be refined. Return, whether the
   *  refinement flag had to be
   *  modified. This function is only allowed
   *  for active cells.
   */
  bool flag_for_line_refinement (const unsigned int line_no) const;

  /**
   * Return the SubfaceCase of face
   * <tt>face_no</tt>. Note that this is not
   * identical to asking
   * <tt>cell->face(face_no)->refinement_case()</tt>
   * since the latter returns a RefinementCase<dim-1>
   * and thus only considers one
   * (anisotropic) refinement, whereas this
   * function considers the complete
   * refinement situation including possible
   * refinement of the face's children. This
   * function may only be called for active
   * cells in 2d and 3d.
   */
  dealii::internal::SubfaceCase<dim> subface_case(const unsigned int face_no) const;

  /**
   *  Return whether the coarsen flag
   *  is set or not.
   */
  bool coarsen_flag_set () const;

  /**
   *  Flag the cell pointed to for
   *  coarsening. This function is
   *  only allowed for active
   *  cells.
   */
  void set_coarsen_flag () const;

  /**
   *  Clear the coarsen flag.
   */
  void clear_coarsen_flag () const;
  /**
   * @}
   */

  /**
   *  @name Dealing with material indicators
   */
  /**
   * @{
   */

  /**
   * Return the material id of this
   * cell.
   *
   * For a typical use of this
   * function, see the @ref step_28
   * "step-28" tutorial program.
   *
   * See the @ref GlossMaterialId
   * "glossary" for more
   * information.
   */
  types::material_id material_id () const;

  /**
   * Set the material id of this
   * cell.
   *
   * For a typical use of this
   * function, see the @ref step_28
   * "step-28" tutorial program.
   *
   * See the @ref GlossMaterialId
   * "glossary" for more
   * information.
   */
  void set_material_id (const types::material_id new_material_id) const;

  /**
   * Set the material id of this
   * cell and all its children (and
   * grand-children, and so on) to
   * the given value.
   *
   * See the @ref GlossMaterialId
   * "glossary" for more
   * information.
   */
  void recursively_set_material_id (const types::material_id new_material_id) const;
  /**
   * @}
   */

  /**
   *  @name Dealing with subdomain indicators
   */
  /**
   * @{
   */

  /**
   * Return the subdomain id of
   * this cell.
   *
   * See the @ref GlossSubdomainId
   * "glossary" for more
   * information.
   *
   * @note The subdomain of a cell is a property only defined
   * for active cells, i.e., cells that are not further
   * refined. Consequently, you can only call this function if
   * the cell it refers to has no children. For multigrid
   * methods in parallel, it is also important to know which
   * processor owns non-active cells, and for this you can call
   * level_subdomain_id().
   */
  types::subdomain_id subdomain_id () const;

  /**
   * Set the subdomain id of this
   * cell.
   *
   * See the @ref GlossSubdomainId
   * "glossary" for more
   * information. This function
   * should not be called if you
   * use a
   * parallel::distributed::Triangulation
   * object.
   *
   * @note The subdomain of a cell is a property only defined
   * for active cells, i.e., cells that are not further
   * refined. Consequently, you can only call this function if
   * the cell it refers to has no children. For multigrid
   * methods in parallel, it is also important to know which
   * processor owns non-active cells, and for this you can call
   * level_subdomain_id().
   */
  void set_subdomain_id (const types::subdomain_id new_subdomain_id) const;

  /**
   * Get the level subdomain id of this cell. This is used for parallel multigrid.
   */
  types::subdomain_id level_subdomain_id () const;

  /**
   * Set the level subdomain id of this cell. This is used for parallel multigrid.
   */
  void set_level_subdomain_id (const types::subdomain_id new_level_subdomain_id) const;


  /**
   * Set the subdomain id of this cell (if it is active) or all its terminal
   * children (and grand-children, and so on, as long as they have no children
   * of their own) to the given value. Since the subdomain id is a concept
   * that is only defined for cells that are active (i.e., have no children
   * of their own), this function only sets the subdomain ids for all
   * children and grand children of this cell that are actually active,
   * skipping intermediate child cells.
   *
   * See the @ref GlossSubdomainId
   * "glossary" for more
   * information. This function
   * should not be called if you
   * use a
   * parallel::distributed::Triangulation
   * object since there the subdomain id is implicitly defined by which
   * processor you're on.
   */
  void recursively_set_subdomain_id (const types::subdomain_id new_subdomain_id) const;
  /**
   * @}
   */

  /**
   *  @name Dealing with codim 1 cell orientation
   */
  /**
   * @{
   */

  /**
   * Return the orientation of
   * this cell.
   *
   * For the meaning of this flag, see
   * @ref GlossDirectionFlag .
   */
  bool direction_flag () const;



  /**
   *  Return an iterator to the
   *  parent. Throws an exception if this cell has no parent, i.e. has
   *  level 0.
   */
  TriaIterator<CellAccessor<dim,spacedim> >
  parent () const;

  /**
   * @}
   */

  /**
   *  @name Other functions
   */
  /**
   * @{
   */

  /**
   * Test whether the cell has children
   * (this is the criterion for activity
   * of a cell).
   *
   * See the @ref GlossActive "glossary"
   * for more information.
   */
  bool active () const;

  /**
   * Ordering of accessors. This function implements a total ordering
   * of cells even on a parallel::distributed::Triangulation. This
   * function first compares level_subdomain_id(). If these are equal,
   * and both cells are active, it compares subdomain_id(). If this is
   * inconclusive, TriaAccessorBase::operator < () is called.
   */
  bool operator < (const CellAccessor<dim, spacedim> &other) const;


  /**
   * Return whether this cell is owned by the current processor
   * or is owned by another processor. The function always returns
   * true if applied to an object of type dealii::Triangulation,
   * but may yield false if the triangulation is of type
   * parallel::distributed::Triangulation.
   *
   * See the @ref GlossGhostCell
   * "glossary" and the @ref
   * distributed module for more
   * information.
   *
   * @post The returned value is equal to <code>!is_ghost() &&
   * !is_artificial()</code>.
   *
   * @note Whether a cell is a ghost cell, artificial, or is
   * locally owned or is a property that only pertains to cells
   * that are active. Consequently,
   * you can only call this function if the cell it refers to has
   * no children.
   */
  bool is_locally_owned () const;

  /**
   * Return true if either the Triangulation is not distributed or if
   * level_subdomain_id() is equal to the id of the current processor.
   */
  bool is_locally_owned_on_level () const;

  /**
   * Return whether this cell
   * exists in the global mesh but
   * (i) is owned by another
   * processor, i.e. has a
   * subdomain_id different from
   * the one the current processor
   * owns and (ii) is adjacent to a
   * cell owned by the current
   * processor.
   *
   * This function only makes sense
   * if the triangulation used is
   * of kind
   * parallel::distributed::Triangulation. In
   * all other cases, the returned
   * value is always false.
   *
   * See the @ref GlossGhostCell
   * "glossary" and the @ref
   * distributed module for more
   * information.
   *
   * @post The returned value is equal to
   * <code>!is_locally_owned() &&
   * !is_artificial()</code>.
   *
   * @note Whether a cell is a ghost cell, artificial, or is
   * locally owned or is a property that only pertains to cells
   * that are active. Consequently,
   * you can only call this function if the cell it refers to has
   * no children.
   */
  bool is_ghost () const;

  /**
   * Return whether this cell is
   * artificial, i.e. it isn't one
   * of the cells owned by the
   * current processor, and it also
   * doesn't border on one. As a
   * consequence, it exists in the
   * mesh to ensure that each
   * processor has all coarse mesh
   * cells and that the 2:1 ratio
   * of neighboring cells is
   * maintained, but it is not one
   * of the cells we should work on
   * on the current processor. In
   * particular, there is no
   * guarantee that this cell
   * isn't, in fact, further
   * refined on one of the other
   * processors.
   *
   * This function only makes sense
   * if the triangulation used is
   * of kind
   * parallel::distributed::Triangulation. In
   * all other cases, the returned
   * value is always false.
   *
   * See the @ref
   * GlossArtificialCell "glossary"
   * and the @ref distributed
   * module for more information.
   *
   * @post The returned value is equal to
   * <code>!is_ghost() &&
   * !is_artificial()</code>.
   *
   * @note Whether a cell is a ghost cell, artificial, or is
   * locally owned or is a property that only pertains to cells
   * that are active. Consequently,
   * you can only call this function if the cell it refers to has
   * no children.
   */
  bool is_artificial () const;

  /**
   * Test whether the point @p p
   * is inside this cell. Points on
   * the boundary are counted as
   * being inside the cell.
   *
   * Note that this function
   * assumes that the mapping
   * between unit cell and real
   * cell is (bi-, tri-)linear,
   * i.e. that faces in 2d and
   * edges in 3d are straight
   * lines. If you have higher
   * order transformations, results
   * may be different as to whether
   * a point is in- or outside the
   * cell in real space.

   In case of codim>0, the point is first projected
   to the manifold where the cell is embedded and
   then check if this projection is inside the cell.

  */
  bool point_inside (const Point<spacedim> &p) const;

  /**
   *  Set the neighbor @p i of
   *  this cell to the cell pointed
   *  to by @p pointer.
   *
   * This function shouldn't really be
   * public (but needs to for various
   * reasons in order not to make a long
   * list of functions friends): it
   * modifies internal data structures and
   * may leave things. Do not use it from
   * application codes.
   */
  void set_neighbor (const unsigned int i,
                     const TriaIterator<CellAccessor<dim, spacedim> > &pointer) const;

  /**
   * Return a unique ID for the current cell. This ID is constructed from the
   * path in the hierarchy from the coarse father cell and works correctly
   * in parallel computations.
   *
   * Note: This operation takes O(log(level)) time.
   */
  CellId id() const;

  /**
   * @}
   */


  /**
   * @ingroup Exceptions
   */
  DeclException0 (ExcRefineCellNotActive);
  /**
   * @ingroup Exceptions
   */
  DeclException0 (ExcCellFlaggedForRefinement);
  /**
   * @ingroup Exceptions
   */
  DeclException0 (ExcCellFlaggedForCoarsening);

protected:
  /**
   * This function assumes that the
   * neighbor is not coarser than
   * the current cell. In this case
   * it returns the
   * neighbor_of_neighbor() value.
   * If, however, the neighbor is
   * coarser this function returns
   * an
   * <code>invalid_unsigned_int</code>.
   *
   * This function is not for
   * public use. Use the function
   * neighbor_of_neighbor() instead
   * which throws an exception if
   * called for a coarser
   * neighbor. If neighbor is
   * indeed coarser (you get to
   * know this by e.g. the
   * neighbor_is_coarser()
   * function) then the
   * neighbor_of_coarser_neighbor()
   * function should be call. If
   * you'd like to know only the
   * <code>face_no</code> which is
   * required to get back from the
   * neighbor to the present cell
   * then simply use the
   * neighbor_face_no() function
   * which can be used for coarser
   * as well as noncoarser
   * neighbors.
   */
  unsigned int neighbor_of_neighbor_internal (const unsigned int neighbor) const;

  /**
     As for any codim>0 we can use a similar code
     and c++ does not allow partial templates.
     we use this auxiliary function that is then
     called from point_inside.
  */
  template<int dim_,int spacedim_ >
  bool point_inside_codim(const Point<spacedim_> &p) const;



private:
  /**
   * Set the orientation of this
   * cell.
   *
   * For the meaning of this flag, see
   * @ref GlossDirectionFlag .
   */
  void set_direction_flag (const bool new_direction_flag) const;
  /**
   *  Copy operator. This is
   *  normally used in a context
   *  like <tt>iterator a,b;
   *  *a=*b;</tt>. Since the meaning is
   *  to copy the object pointed to
   *  by @p b to the object
   *  pointed to by @p a and since
   *  accessors are not real but
   *  virtual objects, this
   *  operation is not useful for
   *  iterators on
   *  triangulations. We declare
   *  this function here private,
   *  thus it may not be used from
   *  outside.  Furthermore it is
   *  not implemented and will give
   *  a linker error if used
   *  anyway.
   */
  void operator = (const CellAccessor<dim, spacedim> &);

  template <int, int> friend class Triangulation;

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



/* -------------- declaration of explicit
   specializations and general templates ------------- */


template <int structdim, int dim, int spacedim>
template <typename OtherAccessor>
InvalidAccessor<structdim, dim, spacedim>::
InvalidAccessor (const OtherAccessor &)
{
  Assert (false,
          ExcMessage ("You are attempting an illegal conversion between "
                      "iterator/accessor types. The constructor you call "
                      "only exists to make certain template constructs "
                      "easier to write as dimension independent code but "
                      "the conversion is not valid in the current context."));
}



template <int structdim, int dim, int spacedim>
template <int structdim2, int dim2, int spacedim2>
TriaAccessor<structdim,dim,spacedim>::
TriaAccessor (const InvalidAccessor<structdim2,dim2,spacedim2> &)
{
  Assert (false,
          ExcMessage ("You are attempting an illegal conversion between "
                      "iterator/accessor types. The constructor you call "
                      "only exists to make certain template constructs "
                      "easier to write as dimension independent code but "
                      "the conversion is not valid in the current context."));
}



template <int dim, int spacedim>
template <int structdim2, int dim2, int spacedim2>
CellAccessor<dim,spacedim>::
CellAccessor (const InvalidAccessor<structdim2,dim2,spacedim2> &)
{
  Assert (false,
          ExcMessage ("You are attempting an illegal conversion between "
                      "iterator/accessor types. The constructor you call "
                      "only exists to make certain template constructs "
                      "easier to write as dimension independent code but "
                      "the conversion is not valid in the current context."));
}



template <int structdim, int dim, int spacedim>
template <int structdim2, int dim2, int spacedim2>
TriaAccessor<structdim,dim,spacedim>::
TriaAccessor (const TriaAccessor<structdim2,dim2,spacedim2> &)
{
  Assert (false,
          ExcMessage ("You are attempting an illegal conversion between "
                      "iterator/accessor types. The constructor you call "
                      "only exists to make certain template constructs "
                      "easier to write as dimension independent code but "
                      "the conversion is not valid in the current context."));
}



template <int dim, int spacedim>
template <int structdim2, int dim2, int spacedim2>
CellAccessor<dim,spacedim>::
CellAccessor (const TriaAccessor<structdim2,dim2,spacedim2> &)
{
  Assert (false,
          ExcMessage ("You are attempting an illegal conversion between "
                      "iterator/accessor types. The constructor you call "
                      "only exists to make certain template constructs "
                      "easier to write as dimension independent code but "
                      "the conversion is not valid in the current context."));
}

template <int dim, int spacedim>
CellId
CellAccessor<dim,spacedim>::id() const
{
  std::vector<unsigned char> id(this->level(), -1);
  unsigned int coarse_index;

  CellAccessor<dim,spacedim> ptr = *this;
  while (ptr.level()>0)
    {
      // find the 'v'st child of our parent we are
      unsigned char v=-1;
      for (unsigned int c=0; c<ptr.parent()->n_children(); ++c)
        {
          if (ptr.parent()->child_index(c)==ptr.index())
            {
              v = c;
              break;
            }
        }

      Assert(v != (unsigned char)-1, ExcInternalError());
      id[ptr.level()-1] = v;

      ptr.copy_from( *(ptr.parent()));
    }

  Assert(ptr.level()==0, ExcInternalError());
  coarse_index = ptr.index();

  return CellId(coarse_index, id);
}


#ifndef DOXYGEN

template <> bool CellAccessor<1,1>::point_inside (const Point<1> &) const;
template <> bool CellAccessor<2,2>::point_inside (const Point<2> &) const;
template <> bool CellAccessor<3,3>::point_inside (const Point<3> &) const;
template <> bool CellAccessor<1,2>::point_inside (const Point<2> &) const;
template <> bool CellAccessor<1,3>::point_inside (const Point<3> &) const;
template <> bool CellAccessor<2,3>::point_inside (const Point<3> &) const;
// -------------------------------------------------------------------

#endif // DOXYGEN

DEAL_II_NAMESPACE_CLOSE

// include more templates in debug and optimized mode
#  include "tria_accessor.templates.h"

#endif