-
Notifications
You must be signed in to change notification settings - Fork 2
/
annotated.html
2163 lines (2161 loc) · 717 KB
/
annotated.html
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
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "https://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/>
<meta http-equiv="X-UA-Compatible" content="IE=9"/>
<meta name="generator" content="Doxygen 1.9.1"/>
<meta name="viewport" content="width=device-width, initial-scale=1"/>
<title>ug4: Class List</title>
<link href="tabs.css" rel="stylesheet" type="text/css"/>
<script type="text/javascript" src="jquery.js"></script>
<script type="text/javascript" src="dynsections.js"></script>
<link href="navtree.css" rel="stylesheet" type="text/css"/>
<script type="text/javascript" src="resize.js"></script>
<script type="text/javascript" src="navtreedata.js"></script>
<script type="text/javascript" src="navtree.js"></script>
<link href="search/search.css" rel="stylesheet" type="text/css"/>
<script type="text/javascript" src="search/searchdata.js"></script>
<script type="text/javascript" src="search/search.js"></script>
<script type="text/x-mathjax-config">
MathJax.Hub.Config({
extensions: ["tex2jax.js"],
jax: ["input/TeX","output/HTML-CSS"],
});
</script>
<script type="text/javascript" async="async" src="http://cdn.mathjax.org/mathjax/latest/MathJax.js"></script>
<link href="doxygen.css" rel="stylesheet" type="text/css" />
<link href="extra_stylesheet.css" rel="stylesheet" type="text/css"/>
</head>
<body>
<div id="top"><!-- do not remove this div, it is closed by doxygen! -->
<div id="titlearea">
<table cellspacing="0" cellpadding="0">
<tbody>
<tr style="height: 56px;">
<td id="projectalign" style="padding-left: 0.5em;">
<div id="projectname">ug4
</div>
</td>
</tr>
</tbody>
</table>
</div>
<!-- end header part -->
<!-- Generated by Doxygen 1.9.1 -->
<script type="text/javascript">
/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&dn=gpl-2.0.txt GPL-v2 */
var searchBox = new SearchBox("searchBox", "search",false,'Search','.html');
/* @license-end */
</script>
<script type="text/javascript" src="menudata.js"></script>
<script type="text/javascript" src="menu.js"></script>
<script type="text/javascript">
/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&dn=gpl-2.0.txt GPL-v2 */
$(function() {
initMenu('',true,false,'search.php','Search');
$(document).ready(function() { init_search(); });
});
/* @license-end */</script>
<div id="main-nav"></div>
</div><!-- top -->
<div id="side-nav" class="ui-resizable side-nav-resizable">
<div id="nav-tree">
<div id="nav-tree-contents">
<div id="nav-sync" class="sync"></div>
</div>
</div>
<div id="splitbar" style="-moz-user-select:none;"
class="ui-resizable-handle">
</div>
</div>
<script type="text/javascript">
/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&dn=gpl-2.0.txt GPL-v2 */
$(document).ready(function(){initNavTree('annotated.html',''); initResizable(); });
/* @license-end */
</script>
<div id="doc-content">
<!-- window showing the filter options -->
<div id="MSearchSelectWindow"
onmouseover="return searchBox.OnSearchSelectShow()"
onmouseout="return searchBox.OnSearchSelectHide()"
onkeydown="return searchBox.OnSearchSelectKey(event)">
</div>
<!-- iframe showing the search results (closed by default) -->
<div id="MSearchResultsWindow">
<iframe src="javascript:void(0)" frameborder="0"
name="MSearchResults" id="MSearchResults">
</iframe>
</div>
<div class="header">
<div class="headertitle">
<div class="title">Class List</div> </div>
</div><!--header-->
<div class="contents">
<div class="textblock">Here are the classes, structs, unions and interfaces with brief descriptions:</div><div class="directory">
<div class="levels">[detail level <span onclick="javascript:toggleLevel(1);">1</span><span onclick="javascript:toggleLevel(2);">2</span><span onclick="javascript:toggleLevel(3);">3</span><span onclick="javascript:toggleLevel(4);">4</span><span onclick="javascript:toggleLevel(5);">5</span>]</div><table class="directory">
<tr id="row_0_" class="even"><td class="entry"><span style="width:0px;display:inline-block;"> </span><span id="arr_0_" class="arrow" onclick="toggleFolder('0_')">►</span><span class="icona"><span class="icon">N</span></span><a class="el" href="namespaceboost.html" target="_self">boost</a></td><td class="desc"></td></tr>
<tr id="row_0_0_" style="display:none;"><td class="entry"><span style="width:16px;display:inline-block;"> </span><span id="arr_0_0_" class="arrow" onclick="toggleFolder('0_0_')">►</span><span class="icona"><span class="icon">N</span></span><a class="el" href="namespaceboost_1_1mpl.html" target="_self">mpl</a></td><td class="desc"></td></tr>
<tr id="row_0_0_0_" style="display:none;"><td class="entry"><span style="width:48px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="structboost_1_1mpl_1_1empty_3_01list1_3_01ug_1_1end__boost__list_01_4_01_4.html" target="_self">empty< list1< ug::end_boost_list > ></a></td><td class="desc">Specializing boost::mpl::empty so that an list<end_boost_list> appears to be empty </td></tr>
<tr id="row_0_0_1_" style="display:none;"><td class="entry"><span style="width:48px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="structboost_1_1mpl_1_1empty_3_01list_3_01ug_1_1end__boost__list_01_4_01_4.html" target="_self">empty< list< ug::end_boost_list > ></a></td><td class="desc">Lists that contain nothing but <a class="el" href="structug_1_1end__boost__list.html">ug::end_boost_list</a> from the start need also be regarded as empty </td></tr>
<tr id="row_0_1_" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="classboost_1_1bglp__matrix__index__map.html" target="_self">bglp_matrix_index_map</a></td><td class="desc"></td></tr>
<tr id="row_0_2_" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="structboost_1_1_b_s__traversal__tag.html" target="_self">BS_traversal_tag</a></td><td class="desc"></td></tr>
<tr id="row_0_3_" style="display:none;"><td class="entry"><span style="width:16px;display:inline-block;"> </span><span id="arr_0_3_" class="arrow" onclick="toggleFolder('0_3_')">►</span><span class="icona"><span class="icon">C</span></span><a class="el" href="classboost_1_1bucket__sorter.html" target="_self">bucket_sorter</a></td><td class="desc"></td></tr>
<tr id="row_0_3_0_" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span id="arr_0_3_0_" class="arrow" onclick="toggleFolder('0_3_0_')">►</span><span class="icona"><span class="icon">C</span></span><a class="el" href="classboost_1_1bucket__sorter_1_1stack__.html" target="_self">stack_</a></td><td class="desc"></td></tr>
<tr id="row_0_3_0_0_" style="display:none;"><td class="entry"><span style="width:64px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="classboost_1_1bucket__sorter_1_1stack___1_1const__iterator.html" target="_self">const_iterator</a></td><td class="desc"></td></tr>
<tr id="row_0_4_" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="classboost_1_1degree__property__map_3_01ug_1_1_undirected_matrix_3_01_t_01_4_01_4.html" target="_self">degree_property_map< ug::UndirectedMatrix< T > ></a></td><td class="desc"></td></tr>
<tr id="row_0_5_" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="structboost_1_1graph__traits_3_01ug_1_1_b_g_l_parallel_matrix_3_01ug_1_1_parallel_matrix_3_01_t_01_4_01_4_01_4.html" target="_self">graph_traits< ug::BGLParallelMatrix< ug::ParallelMatrix< T > > ></a></td><td class="desc"></td></tr>
<tr id="row_0_6_" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="structboost_1_1graph__traits_3_01ug_1_1_bidirectional_matrix_3_01_t_01_4_01_4.html" target="_self">graph_traits< ug::BidirectionalMatrix< T > ></a></td><td class="desc"></td></tr>
<tr id="row_0_7_" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="structboost_1_1graph__traits_3_01ug_1_1_parallel_matrix_3_01ug_1_1_sparse_matrix_3_01_t_01_4_01_4_01_4.html" target="_self">graph_traits< ug::ParallelMatrix< ug::SparseMatrix< T > > ></a></td><td class="desc"></td></tr>
<tr id="row_0_8_" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="structboost_1_1graph__traits_3_01ug_1_1_sparse_matrix_3_01_t_01_4_01_4.html" target="_self">graph_traits< ug::SparseMatrix< T > ></a></td><td class="desc"></td></tr>
<tr id="row_0_9_" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="structboost_1_1graph__traits_3_01ug_1_1_undirected_matrix_3_01_t_01_4_01_4.html" target="_self">graph_traits< ug::UndirectedMatrix< T > ></a></td><td class="desc"></td></tr>
<tr id="row_0_10_" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="structboost_1_1pointee_3_01_const_smart_ptr_3_01_t_01_4_01_4.html" target="_self">pointee< ConstSmartPtr< T > ></a></td><td class="desc"></td></tr>
<tr id="row_0_11_" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="structboost_1_1pointee_3_01_smart_ptr_3_01_t_01_4_01_4.html" target="_self">pointee< SmartPtr< T > ></a></td><td class="desc"></td></tr>
<tr id="row_0_12_" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="structboost_1_1property__map_3_01ug_1_1_b_g_l_parallel_matrix_3_01_t_01_4_00_01vertex__index__t_01_4.html" target="_self">property_map< ug::BGLParallelMatrix< T >, vertex_index_t ></a></td><td class="desc"></td></tr>
<tr id="row_0_13_" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="structboost_1_1property__map_3_01ug_1_1_bidirectional_matrix_3_01ug_1_1_sparse_matrix_3_01_t_01_ae1a13630abcba99f975b5c3e410cb69.html" target="_self">property_map< ug::BidirectionalMatrix< ug::SparseMatrix< T > >, vertex_index_t ></a></td><td class="desc"></td></tr>
<tr id="row_0_14_" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="structboost_1_1property__map_3_01ug_1_1_parallel_matrix_3_01_t_01_4_00_01vertex__index__t_01_4.html" target="_self">property_map< ug::ParallelMatrix< T >, vertex_index_t ></a></td><td class="desc"></td></tr>
<tr id="row_0_15_" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="structboost_1_1property__map_3_01ug_1_1_sparse_matrix_3_01_t_01_4_00_01_tag_01_4.html" target="_self">property_map< ug::SparseMatrix< T >, Tag ></a></td><td class="desc"></td></tr>
<tr id="row_0_16_" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="structboost_1_1property__map_3_01ug_1_1_sparse_matrix_3_01_t_01_4_00_01vertex__index__t_01_4.html" target="_self">property_map< ug::SparseMatrix< T >, vertex_index_t ></a></td><td class="desc"></td></tr>
<tr id="row_0_17_" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="structboost_1_1property__map_3_01ug_1_1_undirected_matrix_3_01_t_01_4_00_01vertex__index__t_01_4.html" target="_self">property_map< ug::UndirectedMatrix< T >, vertex_index_t ></a></td><td class="desc"></td></tr>
<tr id="row_0_18_" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="classboost_1_1_s_m__adjacency__iterator.html" target="_self">SM_adjacency_iterator</a></td><td class="desc"></td></tr>
<tr id="row_0_19_" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="classboost_1_1_s_m__edge.html" target="_self">SM_edge</a></td><td class="desc"></td></tr>
<tr id="row_0_20_" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="classboost_1_1_s_m__edge__weight__map.html" target="_self">SM_edge_weight_map</a></td><td class="desc"></td></tr>
<tr id="row_0_21_" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="classboost_1_1_s_m__out__edge__iterator.html" target="_self">SM_out_edge_iterator</a></td><td class="desc"></td></tr>
<tr id="row_0_22_" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="structboost_1_1_s_m__traversal__tag.html" target="_self">SM_traversal_tag</a></td><td class="desc"></td></tr>
<tr id="row_0_23_" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="classboost_1_1sparse__matrix__index__map.html" target="_self">sparse_matrix_index_map</a></td><td class="desc"></td></tr>
<tr id="row_0_24_" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="classboost_1_1_u_m__out__edge__iterator.html" target="_self">UM_out_edge_iterator</a></td><td class="desc"></td></tr>
<tr id="row_1_"><td class="entry"><span style="width:0px;display:inline-block;"> </span><span id="arr_1_" class="arrow" onclick="toggleFolder('1_')">►</span><span class="icona"><span class="icon">N</span></span><a class="el" href="namespacepcl.html" target="_self">pcl</a></td><td class="desc"></td></tr>
<tr id="row_1_0_" class="even" style="display:none;"><td class="entry"><span style="width:16px;display:inline-block;"> </span><span id="arr_1_0_" class="arrow" onclick="toggleFolder('1_0_')">►</span><span class="icona"><span class="icon">N</span></span><a class="el" href="namespacepcl_1_1interface__tags.html" target="_self">interface_tags</a></td><td class="desc">Interface tags allow to differentiate between interfaces with different features </td></tr>
<tr id="row_1_0_0_" class="even" style="display:none;"><td class="entry"><span style="width:48px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="classpcl_1_1interface__tags_1_1basic__interface__tag.html" target="_self">basic_interface_tag</a></td><td class="desc"></td></tr>
<tr id="row_1_0_1_" class="even" style="display:none;"><td class="entry"><span style="width:48px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="classpcl_1_1interface__tags_1_1ordered__interface__tag.html" target="_self">ordered_interface_tag</a></td><td class="desc"></td></tr>
<tr id="row_1_1_" class="even" style="display:none;"><td class="entry"><span style="width:16px;display:inline-block;"> </span><span id="arr_1_1_" class="arrow" onclick="toggleFolder('1_1_')">►</span><span class="icona"><span class="icon">N</span></span><a class="el" href="namespacepcl_1_1layout__tags.html" target="_self">layout_tags</a></td><td class="desc">Layout tags allow to differentiate between layouts with different features </td></tr>
<tr id="row_1_1_0_" class="even" style="display:none;"><td class="entry"><span style="width:48px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="classpcl_1_1layout__tags_1_1multi__level__layout__tag.html" target="_self">multi_level_layout_tag</a></td><td class="desc">Marks a layout as a multi-level layout </td></tr>
<tr id="row_1_1_1_" class="even" style="display:none;"><td class="entry"><span style="width:48px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="classpcl_1_1layout__tags_1_1single__level__layout__tag.html" target="_self">single_level_layout_tag</a></td><td class="desc">Marks a layout as a single-level layout </td></tr>
<tr id="row_1_2_" class="even" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="classpcl_1_1_basic_interface.html" target="_self">BasicInterface</a></td><td class="desc">You may add elements to this interface and iterate over them </td></tr>
<tr id="row_1_3_" class="even" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="classpcl_1_1_data_type_directly_supported.html" target="_self">DataTypeDirectlySupported</a></td><td class="desc"></td></tr>
<tr id="row_1_4_" class="even" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="classpcl_1_1_data_type_indirectly_supported.html" target="_self">DataTypeIndirectlySupported</a></td><td class="desc"></td></tr>
<tr id="row_1_5_" class="even" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="classpcl_1_1_data_type_traits.html" target="_self">DataTypeTraits</a></td><td class="desc"></td></tr>
<tr id="row_1_6_" class="even" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="classpcl_1_1_data_type_traits_3_01char_01_4.html" target="_self">DataTypeTraits< char ></a></td><td class="desc"></td></tr>
<tr id="row_1_7_" class="even" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="classpcl_1_1_data_type_traits_3_01double_01_4.html" target="_self">DataTypeTraits< double ></a></td><td class="desc"></td></tr>
<tr id="row_1_8_" class="even" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="classpcl_1_1_data_type_traits_3_01float_01_4.html" target="_self">DataTypeTraits< float ></a></td><td class="desc"></td></tr>
<tr id="row_1_9_" class="even" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="classpcl_1_1_data_type_traits_3_01int_01_4.html" target="_self">DataTypeTraits< int ></a></td><td class="desc"></td></tr>
<tr id="row_1_10_" class="even" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="classpcl_1_1_data_type_traits_3_01long_01_4.html" target="_self">DataTypeTraits< long ></a></td><td class="desc"></td></tr>
<tr id="row_1_11_" class="even" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="classpcl_1_1_data_type_traits_3_01unsigned_01char_01_4.html" target="_self">DataTypeTraits< unsigned char ></a></td><td class="desc"></td></tr>
<tr id="row_1_12_" class="even" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="classpcl_1_1_data_type_traits_3_01unsigned_01long_01_4.html" target="_self">DataTypeTraits< unsigned long ></a></td><td class="desc"></td></tr>
<tr id="row_1_13_" class="even" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="classpcl_1_1_data_type_traits_3_01unsigned_01long_01long_01_4.html" target="_self">DataTypeTraits< unsigned long long ></a></td><td class="desc"></td></tr>
<tr id="row_1_14_" class="even" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="structpcl_1_1_file_buffer_descriptor.html" target="_self">FileBufferDescriptor</a></td><td class="desc"></td></tr>
<tr id="row_1_15_" class="even" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="classpcl_1_1_i_communication_policy.html" target="_self">ICommunicationPolicy</a></td><td class="desc">Specializations are responsible to pack and unpack interface data during communication </td></tr>
<tr id="row_1_16_" class="even" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="classpcl_1_1_i_domain_decomposition_info.html" target="_self">IDomainDecompositionInfo</a></td><td class="desc"></td></tr>
<tr id="row_1_17_" class="even" style="display:none;"><td class="entry"><span style="width:16px;display:inline-block;"> </span><span id="arr_1_17_" class="arrow" onclick="toggleFolder('1_17_')">►</span><span class="icona"><span class="icon">C</span></span><a class="el" href="classpcl_1_1_interface_communicator.html" target="_self">InterfaceCommunicator</a></td><td class="desc">Performs communication between interfaces on different processes </td></tr>
<tr id="row_1_17_0_" class="even" style="display:none;"><td class="entry"><span style="width:48px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="structpcl_1_1_interface_communicator_1_1_extractor_info.html" target="_self">ExtractorInfo</a></td><td class="desc">Holds information that will be passed to the extract routines </td></tr>
<tr id="row_1_18_" class="even" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="classpcl_1_1_multi_group_communicator.html" target="_self">MultiGroupCommunicator</a></td><td class="desc">Communicator for simultaneous data exchange between many small groups </td></tr>
<tr id="row_1_19_" class="even" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="classpcl_1_1_multi_level_layout.html" target="_self">MultiLevelLayout</a></td><td class="desc">Standard multi-level-layout implementation </td></tr>
<tr id="row_1_20_" class="even" style="display:none;"><td class="entry"><span style="width:16px;display:inline-block;"> </span><span id="arr_1_20_" class="arrow" onclick="toggleFolder('1_20_')">►</span><span class="icona"><span class="icon">C</span></span><a class="el" href="classpcl_1_1_ordered_interface.html" target="_self">OrderedInterface</a></td><td class="desc">You may add elements to this interface and iterate over them </td></tr>
<tr id="row_1_20_0_" class="even" style="display:none;"><td class="entry"><span style="width:48px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="structpcl_1_1_ordered_interface_1_1_interface_entry.html" target="_self">InterfaceEntry</a></td><td class="desc"></td></tr>
<tr id="row_1_20_1_" class="even" style="display:none;"><td class="entry"><span style="width:48px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="structpcl_1_1_ordered_interface_1_1_interface_entry_cmp.html" target="_self">InterfaceEntryCmp</a></td><td class="desc"></td></tr>
<tr id="row_1_21_" class="even" style="display:none;"><td class="entry"><span style="width:16px;display:inline-block;"> </span><span id="arr_1_21_" class="arrow" onclick="toggleFolder('1_21_')">►</span><span class="icona"><span class="icon">C</span></span><a class="el" href="classpcl_1_1_parallel_archive.html" target="_self">ParallelArchive</a></td><td class="desc"></td></tr>
<tr id="row_1_21_0_" class="even" style="display:none;"><td class="entry"><span style="width:48px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="structpcl_1_1_parallel_archive_1_1_buffer__stringstream.html" target="_self">Buffer_stringstream</a></td><td class="desc"></td></tr>
<tr id="row_1_21_1_" class="even" style="display:none;"><td class="entry"><span style="width:48px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="structpcl_1_1_parallel_archive_1_1_buffer_binary_buffer.html" target="_self">BufferBinaryBuffer</a></td><td class="desc"></td></tr>
<tr id="row_1_21_2_" class="even" style="display:none;"><td class="entry"><span style="width:48px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="structpcl_1_1_parallel_archive_1_1_buffer_binary_stream.html" target="_self">BufferBinaryStream</a></td><td class="desc"></td></tr>
<tr id="row_1_21_3_" class="even" style="display:none;"><td class="entry"><span style="width:48px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="structpcl_1_1_parallel_archive_1_1_buffer_interface.html" target="_self">BufferInterface</a></td><td class="desc">Internal virtual buffer interface to support different buffers </td></tr>
<tr id="row_1_21_4_" class="even" style="display:none;"><td class="entry"><span style="width:48px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="structpcl_1_1_parallel_archive_1_1_const_char_buffer.html" target="_self">ConstCharBuffer</a></td><td class="desc"></td></tr>
<tr id="row_1_22_" class="even" style="display:none;"><td class="entry"><span style="width:16px;display:inline-block;"> </span><span id="arr_1_22_" class="arrow" onclick="toggleFolder('1_22_')">►</span><span class="icona"><span class="icon">C</span></span><a class="el" href="classpcl_1_1_process_communicator.html" target="_self">ProcessCommunicator</a></td><td class="desc"></td></tr>
<tr id="row_1_22_0_" class="even" style="display:none;"><td class="entry"><span style="width:48px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="structpcl_1_1_process_communicator_1_1_comm_wrapper.html" target="_self">CommWrapper</a></td><td class="desc">Holds an mpi-communicator </td></tr>
<tr id="row_1_23_" class="even" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="structpcl_1_1reduce__traits.html" target="_self">reduce_traits</a></td><td class="desc">Methods defined in those traits are used by ComPol_AttachmentReduce </td></tr>
<tr id="row_1_24_" class="even" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="structpcl_1_1reduce__traits_3_01double_01_4.html" target="_self">reduce_traits< double ></a></td><td class="desc"></td></tr>
<tr id="row_1_25_" class="even" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="structpcl_1_1reduce__traits_3_01float_01_4.html" target="_self">reduce_traits< float ></a></td><td class="desc"></td></tr>
<tr id="row_1_26_" class="even" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="classpcl_1_1_reducer.html" target="_self">Reducer</a></td><td class="desc"></td></tr>
<tr id="row_1_27_" class="even" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="classpcl_1_1_selection_comm_pol.html" target="_self">SelectionCommPol</a></td><td class="desc">Communicates selection-status of interface elements </td></tr>
<tr id="row_1_28_" class="even" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="classpcl_1_1_single_level_layout.html" target="_self">SingleLevelLayout</a></td><td class="desc">Standard single-level-layout implementation </td></tr>
<tr id="row_1_29_" class="even" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="classpcl_1_1_standard_domain_decomposition_info.html" target="_self">StandardDomainDecompositionInfo</a></td><td class="desc"></td></tr>
<tr id="row_1_30_" class="even" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="structpcl_1_1type__traits.html" target="_self">type_traits</a></td><td class="desc">Associate internally used types with an external typename </td></tr>
<tr id="row_1_31_" class="even" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="structpcl_1_1type__traits_3_01ug_1_1_edge_01_4.html" target="_self">type_traits< ug::Edge ></a></td><td class="desc">Edge interfaces and layouts store elements of type Vertex* </td></tr>
<tr id="row_1_32_" class="even" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="structpcl_1_1type__traits_3_01ug_1_1_face_01_4.html" target="_self">type_traits< ug::Face ></a></td><td class="desc">Face interfaces and layouts store elements of type Vertex* </td></tr>
<tr id="row_1_33_" class="even" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="structpcl_1_1type__traits_3_01ug_1_1_vertex_01_4.html" target="_self">type_traits< ug::Vertex ></a></td><td class="desc">Vertex interfaces and layouts store elements of type Vertex* </td></tr>
<tr id="row_1_34_" class="even" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="structpcl_1_1type__traits_3_01ug_1_1_volume_01_4.html" target="_self">type_traits< ug::Volume ></a></td><td class="desc">Volume interfaces and layouts store elements of type Vertex* </td></tr>
<tr id="row_2_" class="even"><td class="entry"><span style="width:0px;display:inline-block;"> </span><span id="arr_2_" class="arrow" onclick="toggleFolder('2_')">►</span><span class="icona"><span class="icon">N</span></span><a class="el" href="namespacestd.html" target="_self">std</a></td><td class="desc"></td></tr>
<tr id="row_2_0_" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="structstd_1_1less_3_01_smart_ptr_3_01_t_00_01_t_free_policy_01_4_01_4.html" target="_self">less< SmartPtr< T, TFreePolicy > ></a></td><td class="desc"></td></tr>
<tr id="row_3_"><td class="entry"><span style="width:0px;display:inline-block;"> </span><span id="arr_3_" class="arrow" onclick="toggleFolder('3_')">►</span><span class="icona"><span class="icon">N</span></span><a class="el" href="namespacestl__reader.html" target="_self">stl_reader</a></td><td class="desc"></td></tr>
<tr id="row_3_0_" class="even" style="display:none;"><td class="entry"><span style="width:16px;display:inline-block;"> </span><span id="arr_3_0_" class="arrow" onclick="toggleFolder('3_0_')">►</span><span class="icona"><span class="icon">N</span></span><a class="el" href="namespacestl__reader_1_1stl__reader__impl.html" target="_self">stl_reader_impl</a></td><td class="desc"></td></tr>
<tr id="row_3_0_0_" class="even" style="display:none;"><td class="entry"><span style="width:48px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="structstl__reader_1_1stl__reader__impl_1_1_coord_with_index.html" target="_self">CoordWithIndex</a></td><td class="desc"></td></tr>
<tr id="row_3_1_" class="even" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="classstl__reader_1_1_stl_mesh.html" target="_self">StlMesh</a></td><td class="desc">Convenience mesh class which makes accessing the stl data more easy </td></tr>
<tr id="row_4_" class="even"><td class="entry"><span style="width:0px;display:inline-block;"> </span><span id="arr_4_" class="arrow" onclick="toggleFolder('4_')">►</span><span class="icona"><span class="icon">N</span></span><a class="el" href="namespaceug.html" target="_self">ug</a></td><td class="desc">Ug namespace </td></tr>
<tr id="row_4_0_" style="display:none;"><td class="entry"><span style="width:16px;display:inline-block;"> </span><span id="arr_4_0_" class="arrow" onclick="toggleFolder('4_0_')">►</span><span class="icona"><span class="icon">N</span></span><a class="el" href="namespaceug_1_1bridge.html" target="_self">bridge</a></td><td class="desc"></td></tr>
<tr id="row_4_0_0_" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span id="arr_4_0_0_" class="arrow" onclick="toggleFolder('4_0_0_')">►</span><span class="icona"><span class="icon">N</span></span><a class="el" href="namespaceug_1_1bridge_1_1_adaptive_tools.html" target="_self">AdaptiveTools</a></td><td class="desc"></td></tr>
<tr id="row_4_0_0_0_" style="display:none;"><td class="entry"><span style="width:64px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="structug_1_1bridge_1_1_adaptive_tools_1_1_functionality.html" target="_self">Functionality</a></td><td class="desc"></td></tr>
<tr id="row_4_0_1_" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span id="arr_4_0_1_" class="arrow" onclick="toggleFolder('4_0_1_')">►</span><span class="icona"><span class="icon">N</span></span><a class="el" href="namespaceug_1_1bridge_1_1_algebra_common.html" target="_self">AlgebraCommon</a></td><td class="desc"></td></tr>
<tr id="row_4_0_1_0_" style="display:none;"><td class="entry"><span style="width:64px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="structug_1_1bridge_1_1_algebra_common_1_1_functionality.html" target="_self">Functionality</a></td><td class="desc"></td></tr>
<tr id="row_4_0_1_1_" style="display:none;"><td class="entry"><span style="width:64px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="classug_1_1bridge_1_1_algebra_common_1_1_vec_scale_add_class.html" target="_self">VecScaleAddClass</a></td><td class="desc"></td></tr>
<tr id="row_4_0_2_" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span id="arr_4_0_2_" class="arrow" onclick="toggleFolder('4_0_2_')">►</span><span class="icona"><span class="icon">N</span></span><a class="el" href="namespaceug_1_1bridge_1_1_constraints.html" target="_self">Constraints</a></td><td class="desc"></td></tr>
<tr id="row_4_0_2_0_" style="display:none;"><td class="entry"><span style="width:64px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="structug_1_1bridge_1_1_constraints_1_1_functionality.html" target="_self">Functionality</a></td><td class="desc"></td></tr>
<tr id="row_4_0_3_" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span id="arr_4_0_3_" class="arrow" onclick="toggleFolder('4_0_3_')">►</span><span class="icona"><span class="icon">N</span></span><a class="el" href="namespaceug_1_1bridge_1_1_disc_algebra.html" target="_self">DiscAlgebra</a></td><td class="desc"></td></tr>
<tr id="row_4_0_3_0_" style="display:none;"><td class="entry"><span style="width:64px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="structug_1_1bridge_1_1_disc_algebra_1_1_functionality.html" target="_self">Functionality</a></td><td class="desc"></td></tr>
<tr id="row_4_0_4_" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span id="arr_4_0_4_" class="arrow" onclick="toggleFolder('4_0_4_')">►</span><span class="icona"><span class="icon">N</span></span><a class="el" href="namespaceug_1_1bridge_1_1_domain.html" target="_self">Domain</a></td><td class="desc"></td></tr>
<tr id="row_4_0_4_0_" style="display:none;"><td class="entry"><span style="width:64px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="structug_1_1bridge_1_1_domain_1_1_functionality.html" target="_self">Functionality</a></td><td class="desc"></td></tr>
<tr id="row_4_0_4_1_" style="display:none;"><td class="entry"><span style="width:64px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="structug_1_1bridge_1_1_domain_1_1_functionality2d3d.html" target="_self">Functionality2d3d</a></td><td class="desc">Methods that are only available for 2d and 3d are registered here </td></tr>
<tr id="row_4_0_5_" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span id="arr_4_0_5_" class="arrow" onclick="toggleFolder('4_0_5_')">►</span><span class="icona"><span class="icon">N</span></span><a class="el" href="namespaceug_1_1bridge_1_1domain__ray__tracing.html" target="_self">domain_ray_tracing</a></td><td class="desc"></td></tr>
<tr id="row_4_0_5_0_" style="display:none;"><td class="entry"><span style="width:64px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="structug_1_1bridge_1_1domain__ray__tracing_1_1_functionality.html" target="_self">Functionality</a></td><td class="desc"></td></tr>
<tr id="row_4_0_6_" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span id="arr_4_0_6_" class="arrow" onclick="toggleFolder('4_0_6_')">►</span><span class="icona"><span class="icon">N</span></span><a class="el" href="namespaceug_1_1bridge_1_1_domain_disc.html" target="_self">DomainDisc</a></td><td class="desc"></td></tr>
<tr id="row_4_0_6_0_" style="display:none;"><td class="entry"><span style="width:64px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="structug_1_1bridge_1_1_domain_disc_1_1_functionality.html" target="_self">Functionality</a></td><td class="desc"></td></tr>
<tr id="row_4_0_7_" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span id="arr_4_0_7_" class="arrow" onclick="toggleFolder('4_0_7_')">►</span><span class="icona"><span class="icon">N</span></span><a class="el" href="namespaceug_1_1bridge_1_1_eigensolver.html" target="_self">Eigensolver</a></td><td class="desc"></td></tr>
<tr id="row_4_0_7_0_" style="display:none;"><td class="entry"><span style="width:64px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="structug_1_1bridge_1_1_eigensolver_1_1_functionality.html" target="_self">Functionality</a></td><td class="desc"></td></tr>
<tr id="row_4_0_8_" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span id="arr_4_0_8_" class="arrow" onclick="toggleFolder('4_0_8_')">►</span><span class="icona"><span class="icon">N</span></span><a class="el" href="namespaceug_1_1bridge_1_1_elem_discs.html" target="_self">ElemDiscs</a></td><td class="desc"></td></tr>
<tr id="row_4_0_8_0_" style="display:none;"><td class="entry"><span style="width:64px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="structug_1_1bridge_1_1_elem_discs_1_1_functionality.html" target="_self">Functionality</a></td><td class="desc"></td></tr>
<tr id="row_4_0_9_" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span id="arr_4_0_9_" class="arrow" onclick="toggleFolder('4_0_9_')">►</span><span class="icona"><span class="icon">N</span></span><a class="el" href="namespaceug_1_1bridge_1_1_evaluate.html" target="_self">Evaluate</a></td><td class="desc"></td></tr>
<tr id="row_4_0_9_0_" style="display:none;"><td class="entry"><span style="width:64px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="structug_1_1bridge_1_1_evaluate_1_1_functionality.html" target="_self">Functionality</a></td><td class="desc"></td></tr>
<tr id="row_4_0_9_1_" style="display:none;"><td class="entry"><span style="width:64px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="classug_1_1bridge_1_1_evaluate_1_1_number_valued_user_data_evaluator.html" target="_self">NumberValuedUserDataEvaluator</a></td><td class="desc"></td></tr>
<tr id="row_4_0_9_2_" style="display:none;"><td class="entry"><span style="width:64px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="classug_1_1bridge_1_1_evaluate_1_1_number_valued_user_data_point_evaluator.html" target="_self">NumberValuedUserDataPointEvaluator</a></td><td class="desc"></td></tr>
<tr id="row_4_0_9_3_" style="display:none;"><td class="entry"><span style="width:64px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="classug_1_1bridge_1_1_evaluate_1_1_point_evaluator_base.html" target="_self">PointEvaluatorBase</a></td><td class="desc"></td></tr>
<tr id="row_4_0_9_4_" style="display:none;"><td class="entry"><span style="width:64px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="structug_1_1bridge_1_1_evaluate_1_1_point_evaluator_factory.html" target="_self">PointEvaluatorFactory</a></td><td class="desc">This is a factory for creating a '<a class="el" href="classug_1_1bridge_1_1_evaluate_1_1_point_evaluator_base.html">PointEvaluatorBase</a>' object from user data </td></tr>
<tr id="row_4_0_9_5_" style="display:none;"><td class="entry"><span style="width:64px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="classug_1_1bridge_1_1_evaluate_1_1_vector_valued_user_data_evaluator.html" target="_self">VectorValuedUserDataEvaluator</a></td><td class="desc"></td></tr>
<tr id="row_4_0_9_6_" style="display:none;"><td class="entry"><span style="width:64px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="classug_1_1bridge_1_1_evaluate_1_1_vector_valued_user_data_point_evaluator.html" target="_self">VectorValuedUserDataPointEvaluator</a></td><td class="desc"></td></tr>
<tr id="row_4_0_10_" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span id="arr_4_0_10_" class="arrow" onclick="toggleFolder('4_0_10_')">►</span><span class="icona"><span class="icon">N</span></span><a class="el" href="namespaceug_1_1bridge_1_1_finite_volume.html" target="_self">FiniteVolume</a></td><td class="desc"></td></tr>
<tr id="row_4_0_10_0_" style="display:none;"><td class="entry"><span style="width:64px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="structug_1_1bridge_1_1_finite_volume_1_1_functionality.html" target="_self">Functionality</a></td><td class="desc"></td></tr>
<tr id="row_4_0_11_" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span id="arr_4_0_11_" class="arrow" onclick="toggleFolder('4_0_11_')">►</span><span class="icona"><span class="icon">N</span></span><a class="el" href="namespaceug_1_1bridge_1_1_grid_function.html" target="_self">GridFunction</a></td><td class="desc"></td></tr>
<tr id="row_4_0_11_0_" style="display:none;"><td class="entry"><span style="width:64px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="structug_1_1bridge_1_1_grid_function_1_1_functionality.html" target="_self">Functionality</a></td><td class="desc"></td></tr>
<tr id="row_4_0_12_" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span id="arr_4_0_12_" class="arrow" onclick="toggleFolder('4_0_12_')">►</span><span class="icona"><span class="icon">N</span></span><a class="el" href="namespaceug_1_1bridge_1_1_integrate.html" target="_self">Integrate</a></td><td class="desc"></td></tr>
<tr id="row_4_0_12_0_" style="display:none;"><td class="entry"><span style="width:64px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="structug_1_1bridge_1_1_integrate_1_1_functionality.html" target="_self">Functionality</a></td><td class="desc"></td></tr>
<tr id="row_4_0_13_" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span id="arr_4_0_13_" class="arrow" onclick="toggleFolder('4_0_13_')">►</span><span class="icona"><span class="icon">N</span></span><a class="el" href="namespaceug_1_1bridge_1_1_interpolate.html" target="_self">Interpolate</a></td><td class="desc"></td></tr>
<tr id="row_4_0_13_0_" style="display:none;"><td class="entry"><span style="width:64px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="structug_1_1bridge_1_1_interpolate_1_1_functionality.html" target="_self">Functionality</a></td><td class="desc"></td></tr>
<tr id="row_4_0_14_" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span id="arr_4_0_14_" class="arrow" onclick="toggleFolder('4_0_14_')">►</span><span class="icona"><span class="icon">N</span></span><a class="el" href="namespaceug_1_1bridge_1_1_load_balancing.html" target="_self">LoadBalancing</a></td><td class="desc"></td></tr>
<tr id="row_4_0_14_0_" style="display:none;"><td class="entry"><span style="width:64px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="structug_1_1bridge_1_1_load_balancing_1_1_functionality.html" target="_self">Functionality</a></td><td class="desc"></td></tr>
<tr id="row_4_0_15_" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span id="arr_4_0_15_" class="arrow" onclick="toggleFolder('4_0_15_')">►</span><span class="icona"><span class="icon">N</span></span><a class="el" href="namespaceug_1_1bridge_1_1lua.html" target="_self">lua</a></td><td class="desc"></td></tr>
<tr id="row_4_0_15_0_" style="display:none;"><td class="entry"><span style="width:64px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="structug_1_1bridge_1_1lua_1_1_const_smart_user_data_wrapper.html" target="_self">ConstSmartUserDataWrapper</a></td><td class="desc"></td></tr>
<tr id="row_4_0_15_1_" style="display:none;"><td class="entry"><span style="width:64px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="structug_1_1bridge_1_1lua_1_1_lua_parsing.html" target="_self">LuaParsing</a></td><td class="desc"></td></tr>
<tr id="row_4_0_15_2_" style="display:none;"><td class="entry"><span style="width:64px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="structug_1_1bridge_1_1lua_1_1_lua_parsing_3_01bool_01_4.html" target="_self">LuaParsing< bool ></a></td><td class="desc"></td></tr>
<tr id="row_4_0_15_3_" style="display:none;"><td class="entry"><span style="width:64px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="structug_1_1bridge_1_1lua_1_1_lua_parsing_3_01const_01char_01_5_01_4.html" target="_self">LuaParsing< const char * ></a></td><td class="desc"></td></tr>
<tr id="row_4_0_15_4_" style="display:none;"><td class="entry"><span style="width:64px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="structug_1_1bridge_1_1lua_1_1_lua_parsing_3_01const_01std_1_1string_01_6_01_4.html" target="_self">LuaParsing< const std::string & ></a></td><td class="desc"></td></tr>
<tr id="row_4_0_15_5_" style="display:none;"><td class="entry"><span style="width:64px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="structug_1_1bridge_1_1lua_1_1_lua_parsing_3_01const_01void_01_5_01_4.html" target="_self">LuaParsing< const void * ></a></td><td class="desc"></td></tr>
<tr id="row_4_0_15_6_" style="display:none;"><td class="entry"><span style="width:64px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="structug_1_1bridge_1_1lua_1_1_lua_parsing_3_01_const_smart_ptr_3_01void_01_4_01_4.html" target="_self">LuaParsing< ConstSmartPtr< void > ></a></td><td class="desc"></td></tr>
<tr id="row_4_0_15_7_" style="display:none;"><td class="entry"><span style="width:64px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="structug_1_1bridge_1_1lua_1_1_lua_parsing_3_01double_01_4.html" target="_self">LuaParsing< double ></a></td><td class="desc"></td></tr>
<tr id="row_4_0_15_8_" style="display:none;"><td class="entry"><span style="width:64px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="structug_1_1bridge_1_1lua_1_1_lua_parsing_3_01float_01_4.html" target="_self">LuaParsing< float ></a></td><td class="desc"></td></tr>
<tr id="row_4_0_15_9_" style="display:none;"><td class="entry"><span style="width:64px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="structug_1_1bridge_1_1lua_1_1_lua_parsing_3_01int_01_4.html" target="_self">LuaParsing< int ></a></td><td class="desc"></td></tr>
<tr id="row_4_0_15_10_" style="display:none;"><td class="entry"><span style="width:64px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="structug_1_1bridge_1_1lua_1_1_lua_parsing_3_01size__t_01_4.html" target="_self">LuaParsing< size_t ></a></td><td class="desc"></td></tr>
<tr id="row_4_0_15_11_" style="display:none;"><td class="entry"><span style="width:64px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="structug_1_1bridge_1_1lua_1_1_lua_parsing_3_01_smart_ptr_3_01void_01_4_01_4.html" target="_self">LuaParsing< SmartPtr< void > ></a></td><td class="desc"></td></tr>
<tr id="row_4_0_15_12_" style="display:none;"><td class="entry"><span style="width:64px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="structug_1_1bridge_1_1lua_1_1_lua_parsing_3_01std_1_1string_01_4.html" target="_self">LuaParsing< std::string ></a></td><td class="desc"></td></tr>
<tr id="row_4_0_15_13_" style="display:none;"><td class="entry"><span style="width:64px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="structug_1_1bridge_1_1lua_1_1_lua_parsing_3_01void_01_5_01_4.html" target="_self">LuaParsing< void * ></a></td><td class="desc"></td></tr>
<tr id="row_4_0_15_14_" style="display:none;"><td class="entry"><span style="width:64px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="structug_1_1bridge_1_1lua_1_1_raw_user_data_wrapper.html" target="_self">RawUserDataWrapper</a></td><td class="desc"></td></tr>
<tr id="row_4_0_15_15_" style="display:none;"><td class="entry"><span style="width:64px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="structug_1_1bridge_1_1lua_1_1_smart_user_data_wrapper.html" target="_self">SmartUserDataWrapper</a></td><td class="desc"></td></tr>
<tr id="row_4_0_15_16_" style="display:none;"><td class="entry"><span style="width:64px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="structug_1_1bridge_1_1lua_1_1_user_data_wrapper.html" target="_self">UserDataWrapper</a></td><td class="desc"></td></tr>
<tr id="row_4_0_16_" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span id="arr_4_0_16_" class="arrow" onclick="toggleFolder('4_0_16_')">►</span><span class="icona"><span class="icon">N</span></span><a class="el" href="namespaceug_1_1bridge_1_1_lua_user_data.html" target="_self">LuaUserData</a></td><td class="desc"></td></tr>
<tr id="row_4_0_16_0_" style="display:none;"><td class="entry"><span style="width:64px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="structug_1_1bridge_1_1_lua_user_data_1_1_functionality.html" target="_self">Functionality</a></td><td class="desc"></td></tr>
<tr id="row_4_0_17_" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span id="arr_4_0_17_" class="arrow" onclick="toggleFolder('4_0_17_')">►</span><span class="icona"><span class="icon">N</span></span><a class="el" href="namespaceug_1_1bridge_1_1_max_error.html" target="_self">MaxError</a></td><td class="desc"></td></tr>
<tr id="row_4_0_17_0_" style="display:none;"><td class="entry"><span style="width:64px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="structug_1_1bridge_1_1_max_error_1_1_functionality.html" target="_self">Functionality</a></td><td class="desc"></td></tr>
<tr id="row_4_0_18_" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span id="arr_4_0_18_" class="arrow" onclick="toggleFolder('4_0_18_')">►</span><span class="icona"><span class="icon">N</span></span><a class="el" href="namespaceug_1_1bridge_1_1_multi_grid.html" target="_self">MultiGrid</a></td><td class="desc"></td></tr>
<tr id="row_4_0_18_0_" style="display:none;"><td class="entry"><span style="width:64px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="structug_1_1bridge_1_1_multi_grid_1_1_functionality.html" target="_self">Functionality</a></td><td class="desc"></td></tr>
<tr id="row_4_0_19_" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span id="arr_4_0_19_" class="arrow" onclick="toggleFolder('4_0_19_')">►</span><span class="icona"><span class="icon">N</span></span><a class="el" href="namespaceug_1_1bridge_1_1_obstacle.html" target="_self">Obstacle</a></td><td class="desc"></td></tr>
<tr id="row_4_0_19_0_" style="display:none;"><td class="entry"><span style="width:64px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="structug_1_1bridge_1_1_obstacle_1_1_functionality.html" target="_self">Functionality</a></td><td class="desc"></td></tr>
<tr id="row_4_0_20_" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span id="arr_4_0_20_" class="arrow" onclick="toggleFolder('4_0_20_')">►</span><span class="icona"><span class="icon">N</span></span><a class="el" href="namespaceug_1_1bridge_1_1_ordering.html" target="_self">Ordering</a></td><td class="desc"></td></tr>
<tr id="row_4_0_20_0_" style="display:none;"><td class="entry"><span style="width:64px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="structug_1_1bridge_1_1_ordering_1_1_functionality.html" target="_self">Functionality</a></td><td class="desc"></td></tr>
<tr id="row_4_0_21_" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span id="arr_4_0_21_" class="arrow" onclick="toggleFolder('4_0_21_')">►</span><span class="icona"><span class="icon">N</span></span><a class="el" href="namespaceug_1_1bridge_1_1_output.html" target="_self">Output</a></td><td class="desc"></td></tr>
<tr id="row_4_0_21_0_" style="display:none;"><td class="entry"><span style="width:64px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="structug_1_1bridge_1_1_output_1_1_functionality.html" target="_self">Functionality</a></td><td class="desc"></td></tr>
<tr id="row_4_0_22_" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span id="arr_4_0_22_" class="arrow" onclick="toggleFolder('4_0_22_')">►</span><span class="icona"><span class="icon">N</span></span><a class="el" href="namespaceug_1_1bridge_1_1periodic_boundary.html" target="_self">periodicBoundary</a></td><td class="desc"></td></tr>
<tr id="row_4_0_22_0_" style="display:none;"><td class="entry"><span style="width:64px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="structug_1_1bridge_1_1periodic_boundary_1_1_functionality.html" target="_self">Functionality</a></td><td class="desc"></td></tr>
<tr id="row_4_0_23_" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span id="arr_4_0_23_" class="arrow" onclick="toggleFolder('4_0_23_')">►</span><span class="icona"><span class="icon">N</span></span><a class="el" href="namespaceug_1_1bridge_1_1_preconditioner.html" target="_self">Preconditioner</a></td><td class="desc"></td></tr>
<tr id="row_4_0_23_0_" style="display:none;"><td class="entry"><span style="width:64px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="structug_1_1bridge_1_1_preconditioner_1_1_functionality.html" target="_self">Functionality</a></td><td class="desc"></td></tr>
<tr id="row_4_0_24_" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span id="arr_4_0_24_" class="arrow" onclick="toggleFolder('4_0_24_')">►</span><span class="icona"><span class="icon">N</span></span><a class="el" href="namespaceug_1_1bridge_1_1_refinement.html" target="_self">Refinement</a></td><td class="desc"></td></tr>
<tr id="row_4_0_24_0_" style="display:none;"><td class="entry"><span style="width:64px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="structug_1_1bridge_1_1_refinement_1_1_functionality.html" target="_self">Functionality</a></td><td class="desc"></td></tr>
<tr id="row_4_0_25_" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span id="arr_4_0_25_" class="arrow" onclick="toggleFolder('4_0_25_')">►</span><span class="icona"><span class="icon">N</span></span><a class="el" href="namespaceug_1_1bridge_1_1_restart.html" target="_self">Restart</a></td><td class="desc"></td></tr>
<tr id="row_4_0_25_0_" style="display:none;"><td class="entry"><span style="width:64px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="structug_1_1bridge_1_1_restart_1_1_functionality.html" target="_self">Functionality</a></td><td class="desc"></td></tr>
<tr id="row_4_0_26_" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span id="arr_4_0_26_" class="arrow" onclick="toggleFolder('4_0_26_')">►</span><span class="icona"><span class="icon">N</span></span><a class="el" href="namespaceug_1_1bridge_1_1_schur.html" target="_self">Schur</a></td><td class="desc"></td></tr>
<tr id="row_4_0_26_0_" style="display:none;"><td class="entry"><span style="width:64px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="structug_1_1bridge_1_1_schur_1_1_functionality.html" target="_self">Functionality</a></td><td class="desc"></td></tr>
<tr id="row_4_0_27_" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span id="arr_4_0_27_" class="arrow" onclick="toggleFolder('4_0_27_')">►</span><span class="icona"><span class="icon">N</span></span><a class="el" href="namespaceug_1_1bridge_1_1_selection.html" target="_self">Selection</a></td><td class="desc"></td></tr>
<tr id="row_4_0_27_0_" style="display:none;"><td class="entry"><span style="width:64px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="structug_1_1bridge_1_1_selection_1_1_functionality.html" target="_self">Functionality</a></td><td class="desc"></td></tr>
<tr id="row_4_0_28_" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span id="arr_4_0_28_" class="arrow" onclick="toggleFolder('4_0_28_')">►</span><span class="icona"><span class="icon">N</span></span><a class="el" href="namespaceug_1_1bridge_1_1_solver.html" target="_self">Solver</a></td><td class="desc"></td></tr>
<tr id="row_4_0_28_0_" style="display:none;"><td class="entry"><span style="width:64px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="structug_1_1bridge_1_1_solver_1_1_functionality.html" target="_self">Functionality</a></td><td class="desc"></td></tr>
<tr id="row_4_0_29_" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span id="arr_4_0_29_" class="arrow" onclick="toggleFolder('4_0_29_')">►</span><span class="icona"><span class="icon">N</span></span><a class="el" href="namespaceug_1_1bridge_1_1_transform.html" target="_self">Transform</a></td><td class="desc"></td></tr>
<tr id="row_4_0_29_0_" style="display:none;"><td class="entry"><span style="width:64px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="structug_1_1bridge_1_1_transform_1_1_functionality.html" target="_self">Functionality</a></td><td class="desc"></td></tr>
<tr id="row_4_0_30_" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span id="arr_4_0_30_" class="arrow" onclick="toggleFolder('4_0_30_')">►</span><span class="icona"><span class="icon">N</span></span><a class="el" href="namespaceug_1_1bridge_1_1_user_data_bridge.html" target="_self">UserDataBridge</a></td><td class="desc"></td></tr>
<tr id="row_4_0_30_0_" style="display:none;"><td class="entry"><span style="width:64px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="structug_1_1bridge_1_1_user_data_bridge_1_1_functionality.html" target="_self">Functionality</a></td><td class="desc"></td></tr>
<tr id="row_4_0_31_" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span id="arr_4_0_31_" class="arrow" onclick="toggleFolder('4_0_31_')">►</span><span class="icona"><span class="icon">C</span></span><a class="el" href="structug_1_1bridge_1_1_algebra_type_i_d_provider.html" target="_self">AlgebraTypeIDProvider</a></td><td class="desc"></td></tr>
<tr id="row_4_0_31_0_" style="display:none;"><td class="entry"><span style="width:64px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="structug_1_1bridge_1_1_algebra_type_i_d_provider_1_1_algebra_i_d.html" target="_self">AlgebraID</a></td><td class="desc"></td></tr>
<tr id="row_4_0_31_1_" style="display:none;"><td class="entry"><span style="width:64px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="structug_1_1bridge_1_1_algebra_type_i_d_provider_1_1_algebra_i_d_base.html" target="_self">AlgebraIDBase</a></td><td class="desc"></td></tr>
<tr id="row_4_0_31_2_" style="display:none;"><td class="entry"><span style="width:48px;display:inline-block;"> </span><span id="arr_4_0_31_2_" class="arrow" onclick="toggleFolder('4_0_31_2_')">►</span><span class="icona"><span class="icon">C</span></span><a class="el" href="structug_1_1bridge_1_1_algebra_type_i_d_provider_1_1_register_algebra_indices.html" target="_self">RegisterAlgebraIndices</a></td><td class="desc"></td></tr>
<tr id="row_4_0_31_2_0_" style="display:none;"><td class="entry"><span style="width:80px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="structug_1_1bridge_1_1_algebra_type_i_d_provider_1_1_register_algebra_indices_1_1_reg_end.html" target="_self">RegEnd</a></td><td class="desc"></td></tr>
<tr id="row_4_0_31_2_1_" style="display:none;"><td class="entry"><span style="width:80px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="structug_1_1bridge_1_1_algebra_type_i_d_provider_1_1_register_algebra_indices_1_1_reg_next.html" target="_self">RegNext</a></td><td class="desc"></td></tr>
<tr id="row_4_0_32_" style="display:none;"><td class="entry"><span style="width:48px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="classug_1_1bridge_1_1_allow_name.html" target="_self">AllowName</a></td><td class="desc"></td></tr>
<tr id="row_4_0_33_" style="display:none;"><td class="entry"><span style="width:48px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="classug_1_1bridge_1_1_base.html" target="_self">Base</a></td><td class="desc"></td></tr>
<tr id="row_4_0_34_" style="display:none;"><td class="entry"><span style="width:48px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="classug_1_1bridge_1_1_base0.html" target="_self">Base0</a></td><td class="desc"></td></tr>
<tr id="row_4_0_35_" style="display:none;"><td class="entry"><span style="width:48px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="classug_1_1bridge_1_1_base1.html" target="_self">Base1</a></td><td class="desc"></td></tr>
<tr id="row_4_0_36_" style="display:none;"><td class="entry"><span style="width:48px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="classug_1_1bridge_1_1_base2.html" target="_self">Base2</a></td><td class="desc"></td></tr>
<tr id="row_4_0_37_" style="display:none;"><td class="entry"><span style="width:48px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="classug_1_1bridge_1_1_base3.html" target="_self">Base3</a></td><td class="desc"></td></tr>
<tr id="row_4_0_38_" style="display:none;"><td class="entry"><span style="width:48px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="classug_1_1bridge_1_1_cake.html" target="_self">Cake</a></td><td class="desc"></td></tr>
<tr id="row_4_0_39_" style="display:none;"><td class="entry"><span style="width:48px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="classug_1_1bridge_1_1_class_cast_provider.html" target="_self">ClassCastProvider</a></td><td class="desc">Castings from derived classes to base classes </td></tr>
<tr id="row_4_0_40_" style="display:none;"><td class="entry"><span style="width:48px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="classug_1_1bridge_1_1_class_group_desc.html" target="_self">ClassGroupDesc</a></td><td class="desc">Groups classes. One of the members is the default member </td></tr>
<tr id="row_4_0_41_" style="display:none;"><td class="entry"><span style="width:48px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="classug_1_1bridge_1_1_class_hierarchy.html" target="_self">ClassHierarchy</a></td><td class="desc">Class Hierarchy Helper Class for UG <a class="el" href="classug_1_1bridge_1_1_registry.html" title="Registry for functions and classes that are exported to scripts and visualizations.">Registry</a> This class stores class names and their subclasses </td></tr>
<tr id="row_4_0_42_" style="display:none;"><td class="entry"><span style="width:48px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="classug_1_1bridge_1_1_class_name_node.html" target="_self">ClassNameNode</a></td><td class="desc">Node for class names </td></tr>
<tr id="row_4_0_43_" style="display:none;"><td class="entry"><span style="width:48px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="classug_1_1bridge_1_1_class_name_provider.html" target="_self">ClassNameProvider</a></td><td class="desc">Name for a class </td></tr>
<tr id="row_4_0_44_" style="display:none;"><td class="entry"><span style="width:48px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="structug_1_1bridge_1_1_c_l_i___functionality.html" target="_self">CLI_Functionality</a></td><td class="desc"></td></tr>
<tr id="row_4_0_45_" style="display:none;"><td class="entry"><span style="width:48px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="classug_1_1bridge_1_1_const_class.html" target="_self">ConstClass</a></td><td class="desc"></td></tr>
<tr id="row_4_0_46_" style="display:none;"><td class="entry"><span style="width:48px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="structug_1_1bridge_1_1constructor__traits.html" target="_self">constructor_traits</a></td><td class="desc"></td></tr>
<tr id="row_4_0_47_" style="display:none;"><td class="entry"><span style="width:48px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="structug_1_1bridge_1_1constructor__traits_3_01_t_00_01_type_list_3_01_t1_01_4_01_4.html" target="_self">constructor_traits< T, TypeList< T1 > ></a></td><td class="desc"></td></tr>
<tr id="row_4_0_48_" style="display:none;"><td class="entry"><span style="width:48px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="structug_1_1bridge_1_1constructor__traits_3_01_t_00_01_type_list_3_01_t1_00_01_t2_01_4_01_4.html" target="_self">constructor_traits< T, TypeList< T1, T2 > ></a></td><td class="desc"></td></tr>
<tr id="row_4_0_49_" style="display:none;"><td class="entry"><span style="width:48px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="structug_1_1bridge_1_1constructor__traits_3_01_t_00_01_type_list_3_01_t1_00_01_t2_00_01_t3_01_4_01_4.html" target="_self">constructor_traits< T, TypeList< T1, T2, T3 > ></a></td><td class="desc"></td></tr>
<tr id="row_4_0_50_" style="display:none;"><td class="entry"><span style="width:48px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="structug_1_1bridge_1_1constructor__traits_3_01_t_00_01_type_list_3_01_t1_00_01_t2_00_01_t3_00_01_t4_01_4_01_4.html" target="_self">constructor_traits< T, TypeList< T1, T2, T3, T4 > ></a></td><td class="desc"></td></tr>
<tr id="row_4_0_51_" style="display:none;"><td class="entry"><span style="width:48px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="structug_1_1bridge_1_1constructor__traits_3_01_t_00_01_type_list_3_01_t1_00_01_t2_00_01_t3_00_01_t4_00_01_t5_01_4_01_4.html" target="_self">constructor_traits< T, TypeList< T1, T2, T3, T4, T5 > ></a></td><td class="desc"></td></tr>
<tr id="row_4_0_52_" style="display:none;"><td class="entry"><span style="width:48px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="structug_1_1bridge_1_1constructor__traits_3_01_t_00_01_type_list_3_01_t1_00_01_t2_00_01_t3_00_01_t4_00_01_t5_00_01_t6_01_4_01_4.html" target="_self">constructor_traits< T, TypeList< T1, T2, T3, T4, T5, T6 > ></a></td><td class="desc"></td></tr>
<tr id="row_4_0_53_" style="display:none;"><td class="entry"><span style="width:48px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="structug_1_1bridge_1_1constructor__traits_3_01_t_00_01_type_list_3_01_t1_00_01_t2_00_01_t3_00_014444522ed260131677e64186550fc2e4.html" target="_self">constructor_traits< T, TypeList< T1, T2, T3, T4, T5, T6, T7 > ></a></td><td class="desc"></td></tr>
<tr id="row_4_0_54_" style="display:none;"><td class="entry"><span style="width:48px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="structug_1_1bridge_1_1constructor__traits_3_01_t_00_01_type_list_3_01_t1_00_01_t2_00_01_t3_00_01196fb1b4d2e68ffaa2a24016259bd2ff.html" target="_self">constructor_traits< T, TypeList< T1, T2, T3, T4, T5, T6, T7, T8 > ></a></td><td class="desc"></td></tr>
<tr id="row_4_0_55_" style="display:none;"><td class="entry"><span style="width:48px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="structug_1_1bridge_1_1constructor__traits_3_01_t_00_01_type_list_3_4_01_4.html" target="_self">constructor_traits< T, TypeList<> ></a></td><td class="desc"></td></tr>
<tr id="row_4_0_56_" style="display:none;"><td class="entry"><span style="width:48px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="structug_1_1bridge_1_1_constructor_proxy.html" target="_self">ConstructorProxy</a></td><td class="desc"></td></tr>
<tr id="row_4_0_57_" style="display:none;"><td class="entry"><span style="width:48px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="structug_1_1bridge_1_1_create_parameter_info.html" target="_self">CreateParameterInfo</a></td><td class="desc"></td></tr>
<tr id="row_4_0_58_" style="display:none;"><td class="entry"><span style="width:48px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="structug_1_1bridge_1_1_create_parameter_info_3_01_type_list_3_4_01_4.html" target="_self">CreateParameterInfo< TypeList<> ></a></td><td class="desc"></td></tr>
<tr id="row_4_0_59_" style="display:none;"><td class="entry"><span style="width:48px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="structug_1_1bridge_1_1_create_parameter_info_out.html" target="_self">CreateParameterInfoOut</a></td><td class="desc">Creation of return value </td></tr>
<tr id="row_4_0_60_" style="display:none;"><td class="entry"><span style="width:48px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="structug_1_1bridge_1_1_create_parameter_info_out_3_01_custom_return_01_4.html" target="_self">CreateParameterInfoOut< CustomReturn ></a></td><td class="desc"></td></tr>
<tr id="row_4_0_61_" style="display:none;"><td class="entry"><span style="width:48px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="structug_1_1bridge_1_1_create_parameter_info_out_3_01void_01_4.html" target="_self">CreateParameterInfoOut< void ></a></td><td class="desc">Creation of void return value (template specialization) </td></tr>
<tr id="row_4_0_62_" style="display:none;"><td class="entry"><span style="width:48px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="classug_1_1bridge_1_1_custom_return.html" target="_self">CustomReturn</a></td><td class="desc"></td></tr>
<tr id="row_4_0_63_" style="display:none;"><td class="entry"><span style="width:48px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="classug_1_1bridge_1_1_derived.html" target="_self">Derived</a></td><td class="desc"></td></tr>
<tr id="row_4_0_64_" style="display:none;"><td class="entry"><span style="width:48px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="classug_1_1bridge_1_1_expand_layers_desc.html" target="_self">ExpandLayersDesc</a></td><td class="desc">A helper class for ExpandLayers </td></tr>
<tr id="row_4_0_65_" style="display:none;"><td class="entry"><span style="width:48px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="classug_1_1bridge_1_1_exported_class.html" target="_self">ExportedClass</a></td><td class="desc">This template class represents real c++ classes in the registry </td></tr>
<tr id="row_4_0_66_" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span id="arr_4_0_66_" class="arrow" onclick="toggleFolder('4_0_66_')">►</span><span class="icona"><span class="icon">C</span></span><a class="el" href="classug_1_1bridge_1_1_exported_class_base_impl.html" target="_self">ExportedClassBaseImpl</a></td><td class="desc">A base implementation with non-template methods </td></tr>
<tr id="row_4_0_66_0_" style="display:none;"><td class="entry"><span style="width:64px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="structug_1_1bridge_1_1_exported_class_base_impl_1_1_constructor_overload.html" target="_self">ConstructorOverload</a></td><td class="desc"></td></tr>
<tr id="row_4_0_67_" style="display:none;"><td class="entry"><span style="width:48px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="classug_1_1bridge_1_1_exported_constructor.html" target="_self">ExportedConstructor</a></td><td class="desc">Describing information for constructor </td></tr>
<tr id="row_4_0_68_" style="display:none;"><td class="entry"><span style="width:48px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="classug_1_1bridge_1_1_exported_function.html" target="_self">ExportedFunction</a></td><td class="desc">This class describes a wrapper for a c++ - function, that is exported by ug </td></tr>
<tr id="row_4_0_69_" style="display:none;"><td class="entry"><span style="width:48px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="classug_1_1bridge_1_1_exported_function_base.html" target="_self">ExportedFunctionBase</a></td><td class="desc"><a class="el" href="classug_1_1bridge_1_1_base.html">Base</a> class for function/method export </td></tr>
<tr id="row_4_0_70_" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span id="arr_4_0_70_" class="arrow" onclick="toggleFolder('4_0_70_')">►</span><span class="icona"><span class="icon">C</span></span><a class="el" href="classug_1_1bridge_1_1_exported_function_group.html" target="_self">ExportedFunctionGroup</a></td><td class="desc">Groups of Functions - useful to realize overloaded functions </td></tr>
<tr id="row_4_0_70_0_" style="display:none;"><td class="entry"><span style="width:64px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="structug_1_1bridge_1_1_exported_function_group_1_1_overload.html" target="_self">Overload</a></td><td class="desc"></td></tr>
<tr id="row_4_0_71_" style="display:none;"><td class="entry"><span style="width:48px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="classug_1_1bridge_1_1_exported_method.html" target="_self">ExportedMethod</a></td><td class="desc"></td></tr>
<tr id="row_4_0_72_" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span id="arr_4_0_72_" class="arrow" onclick="toggleFolder('4_0_72_')">►</span><span class="icona"><span class="icon">C</span></span><a class="el" href="classug_1_1bridge_1_1_exported_method_group.html" target="_self">ExportedMethodGroup</a></td><td class="desc">Groups of methods - useful to realize overloaded methods </td></tr>
<tr id="row_4_0_72_0_" style="display:none;"><td class="entry"><span style="width:64px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="structug_1_1bridge_1_1_exported_method_group_1_1_overload.html" target="_self">Overload</a></td><td class="desc"></td></tr>
<tr id="row_4_0_73_" style="display:none;"><td class="entry"><span style="width:48px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="structug_1_1bridge_1_1func__traits.html" target="_self">func_traits</a></td><td class="desc"></td></tr>
<tr id="row_4_0_74_" style="display:none;"><td class="entry"><span style="width:48px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="structug_1_1bridge_1_1func__traits_3_01_t_ret_07_5_08_07_08_4.html" target="_self">func_traits< TRet(*)()></a></td><td class="desc"></td></tr>
<tr id="row_4_0_75_" style="display:none;"><td class="entry"><span style="width:48px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="structug_1_1bridge_1_1func__traits_3_01_t_ret_07_5_08_07_p1_08_4.html" target="_self">func_traits< TRet(*)(P1)></a></td><td class="desc"></td></tr>
<tr id="row_4_0_76_" style="display:none;"><td class="entry"><span style="width:48px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="structug_1_1bridge_1_1func__traits_3_01_t_ret_07_5_08_07_t1_00_01_t2_08_4.html" target="_self">func_traits< TRet(*)(T1, T2)></a></td><td class="desc"></td></tr>
<tr id="row_4_0_77_" style="display:none;"><td class="entry"><span style="width:48px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="structug_1_1bridge_1_1func__traits_3_01_t_ret_07_5_08_07_t1_00_01_t2_00_01_t3_08_4.html" target="_self">func_traits< TRet(*)(T1, T2, T3)></a></td><td class="desc"></td></tr>
<tr id="row_4_0_78_" style="display:none;"><td class="entry"><span style="width:48px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="structug_1_1bridge_1_1func__traits_3_01_t_ret_07_5_08_07_t1_00_01_t2_00_01_t3_00_01_t4_08_4.html" target="_self">func_traits< TRet(*)(T1, T2, T3, T4)></a></td><td class="desc"></td></tr>
<tr id="row_4_0_79_" style="display:none;"><td class="entry"><span style="width:48px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="structug_1_1bridge_1_1func__traits_3_01_t_ret_07_5_08_07_t1_00_01_t2_00_01_t3_00_01_t4_00_01_t5_08_4.html" target="_self">func_traits< TRet(*)(T1, T2, T3, T4, T5)></a></td><td class="desc"></td></tr>
<tr id="row_4_0_80_" style="display:none;"><td class="entry"><span style="width:48px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="structug_1_1bridge_1_1func__traits_3_01_t_ret_07_5_08_07_t1_00_01_t2_00_01_t3_00_01_t4_00_01_t5_00_01_t6_08_4.html" target="_self">func_traits< TRet(*)(T1, T2, T3, T4, T5, T6)></a></td><td class="desc"></td></tr>
<tr id="row_4_0_81_" style="display:none;"><td class="entry"><span style="width:48px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="structug_1_1bridge_1_1func__traits_3_01_t_ret_07_5_08_07_t1_00_01_t2_00_01_t3_00_01_t4_00_01_t5_00_01_t6_00_01_t7_08_4.html" target="_self">func_traits< TRet(*)(T1, T2, T3, T4, T5, T6, T7)></a></td><td class="desc"></td></tr>
<tr id="row_4_0_82_" style="display:none;"><td class="entry"><span style="width:48px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="structug_1_1bridge_1_1func__traits_3_01_t_ret_07_5_08_07_t1_00_01_t2_00_01_t3_00_01_t4_00_01_t5_00_01_t6_00_01_t7_00_01_t8_08_4.html" target="_self">func_traits< TRet(*)(T1, T2, T3, T4, T5, T6, T7, T8)></a></td><td class="desc"></td></tr>
<tr id="row_4_0_83_" style="display:none;"><td class="entry"><span style="width:48px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="structug_1_1bridge_1_1func__traits_3_01_t_ret_07_5_08_07_t1_00_01_t2_00_01_t3_00_01_t4_00_01_t5_312a89e74fe37a07f5d2242e493c11d2.html" target="_self">func_traits< TRet(*)(T1, T2, T3, T4, T5, T6, T7, T8, T9)></a></td><td class="desc"></td></tr>
<tr id="row_4_0_84_" style="display:none;"><td class="entry"><span style="width:48px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="structug_1_1bridge_1_1func__traits_3_01_t_ret_07_5_08_07_t1_00_01_t2_00_01_t3_00_01_t4_00_01_t5_1e5b0c3e2207dbbbb465b67c34ddffff.html" target="_self">func_traits< TRet(*)(T1, T2, T3, T4, T5, T6, T7, T8, T9, T10)></a></td><td class="desc"></td></tr>
<tr id="row_4_0_85_" style="display:none;"><td class="entry"><span style="width:48px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="structug_1_1bridge_1_1func__traits_3_01_t_ret_07_5_08_07_t1_00_01_t2_00_01_t3_00_01_t4_00_01_t5_578e72df3570d3fe969e1f67a6d22f65.html" target="_self">func_traits< TRet(*)(T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11)></a></td><td class="desc"></td></tr>
<tr id="row_4_0_86_" style="display:none;"><td class="entry"><span style="width:48px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="structug_1_1bridge_1_1func__traits_3_01_t_ret_07_5_08_07_t1_00_01_t2_00_01_t3_00_01_t4_00_01_t5_b4110e9eeeb3c7e8e954cbc727aa007b.html" target="_self">func_traits< TRet(*)(T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12)></a></td><td class="desc"></td></tr>
<tr id="row_4_0_87_" style="display:none;"><td class="entry"><span style="width:48px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="structug_1_1bridge_1_1func__traits_3_01_t_ret_07_t_class_1_1_5_08_07_08_01const_01_4.html" target="_self">func_traits< TRet(TClass::*)() const ></a></td><td class="desc"></td></tr>
<tr id="row_4_0_88_" style="display:none;"><td class="entry"><span style="width:48px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="structug_1_1bridge_1_1func__traits_3_01_t_ret_07_t_class_1_1_5_08_07_08_4.html" target="_self">func_traits< TRet(TClass::*)()></a></td><td class="desc"></td></tr>
<tr id="row_4_0_89_" style="display:none;"><td class="entry"><span style="width:48px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="structug_1_1bridge_1_1func__traits_3_01_t_ret_07_t_class_1_1_5_08_07_p1_08_01const_01_4.html" target="_self">func_traits< TRet(TClass::*)(P1) const ></a></td><td class="desc"></td></tr>
<tr id="row_4_0_90_" style="display:none;"><td class="entry"><span style="width:48px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="structug_1_1bridge_1_1func__traits_3_01_t_ret_07_t_class_1_1_5_08_07_p1_08_4.html" target="_self">func_traits< TRet(TClass::*)(P1)></a></td><td class="desc"></td></tr>
<tr id="row_4_0_91_" style="display:none;"><td class="entry"><span style="width:48px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="structug_1_1bridge_1_1func__traits_3_01_t_ret_07_t_class_1_1_5_08_07_t1_00_01_t2_08_01const_01_4.html" target="_self">func_traits< TRet(TClass::*)(T1, T2) const ></a></td><td class="desc"></td></tr>
<tr id="row_4_0_92_" style="display:none;"><td class="entry"><span style="width:48px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="structug_1_1bridge_1_1func__traits_3_01_t_ret_07_t_class_1_1_5_08_07_t1_00_01_t2_08_4.html" target="_self">func_traits< TRet(TClass::*)(T1, T2)></a></td><td class="desc"></td></tr>
<tr id="row_4_0_93_" style="display:none;"><td class="entry"><span style="width:48px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="structug_1_1bridge_1_1func__traits_3_01_t_ret_07_t_class_1_1_5_08_07_t1_00_01_t2_00_01_t3_08_01const_01_4.html" target="_self">func_traits< TRet(TClass::*)(T1, T2, T3) const ></a></td><td class="desc"></td></tr>
<tr id="row_4_0_94_" style="display:none;"><td class="entry"><span style="width:48px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="structug_1_1bridge_1_1func__traits_3_01_t_ret_07_t_class_1_1_5_08_07_t1_00_01_t2_00_01_t3_08_4.html" target="_self">func_traits< TRet(TClass::*)(T1, T2, T3)></a></td><td class="desc"></td></tr>
<tr id="row_4_0_95_" style="display:none;"><td class="entry"><span style="width:48px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="structug_1_1bridge_1_1func__traits_3_01_t_ret_07_t_class_1_1_5_08_07_t1_00_01_t2_00_01_t3_00_01_t4_08_01const_01_4.html" target="_self">func_traits< TRet(TClass::*)(T1, T2, T3, T4) const ></a></td><td class="desc"></td></tr>
<tr id="row_4_0_96_" style="display:none;"><td class="entry"><span style="width:48px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="structug_1_1bridge_1_1func__traits_3_01_t_ret_07_t_class_1_1_5_08_07_t1_00_01_t2_00_01_t3_00_01_t4_08_4.html" target="_self">func_traits< TRet(TClass::*)(T1, T2, T3, T4)></a></td><td class="desc"></td></tr>
<tr id="row_4_0_97_" style="display:none;"><td class="entry"><span style="width:48px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="structug_1_1bridge_1_1func__traits_3_01_t_ret_07_t_class_1_1_5_08_07_t1_00_01_t2_00_01_t3_00_01_t4_00_01_t5_08_01const_01_4.html" target="_self">func_traits< TRet(TClass::*)(T1, T2, T3, T4, T5) const ></a></td><td class="desc"></td></tr>
<tr id="row_4_0_98_" style="display:none;"><td class="entry"><span style="width:48px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="structug_1_1bridge_1_1func__traits_3_01_t_ret_07_t_class_1_1_5_08_07_t1_00_01_t2_00_01_t3_00_01_t4_00_01_t5_08_4.html" target="_self">func_traits< TRet(TClass::*)(T1, T2, T3, T4, T5)></a></td><td class="desc"></td></tr>
<tr id="row_4_0_99_" style="display:none;"><td class="entry"><span style="width:48px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="structug_1_1bridge_1_1func__traits_3_01_t_ret_07_t_class_1_1_5_08_07_t1_00_01_t2_00_01_t3_00_01_6c7ee419dca27a705cab3f0b5cd713e7.html" target="_self">func_traits< TRet(TClass::*)(T1, T2, T3, T4, T5, T6) const ></a></td><td class="desc"></td></tr>
<tr id="row_4_0_100_" style="display:none;"><td class="entry"><span style="width:48px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="structug_1_1bridge_1_1func__traits_3_01_t_ret_07_t_class_1_1_5_08_07_t1_00_01_t2_00_01_t3_00_01_t4_00_01_t5_00_01_t6_08_4.html" target="_self">func_traits< TRet(TClass::*)(T1, T2, T3, T4, T5, T6)></a></td><td class="desc"></td></tr>
<tr id="row_4_0_101_" style="display:none;"><td class="entry"><span style="width:48px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="structug_1_1bridge_1_1func__traits_3_01_t_ret_07_t_class_1_1_5_08_07_t1_00_01_t2_00_01_t3_00_01_6ca37b771f43f6acfae21057c11e2c47.html" target="_self">func_traits< TRet(TClass::*)(T1, T2, T3, T4, T5, T6, T7) const ></a></td><td class="desc"></td></tr>
<tr id="row_4_0_102_" style="display:none;"><td class="entry"><span style="width:48px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="structug_1_1bridge_1_1func__traits_3_01_t_ret_07_t_class_1_1_5_08_07_t1_00_01_t2_00_01_t3_00_01_52ef2d15f2c1f5b632be8ef1b53c4689.html" target="_self">func_traits< TRet(TClass::*)(T1, T2, T3, T4, T5, T6, T7)></a></td><td class="desc"></td></tr>
<tr id="row_4_0_103_" style="display:none;"><td class="entry"><span style="width:48px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="structug_1_1bridge_1_1func__traits_3_01_t_ret_07_t_class_1_1_5_08_07_t1_00_01_t2_00_01_t3_00_01_1c91dfac9b1931146ee45e252b0f5eef.html" target="_self">func_traits< TRet(TClass::*)(T1, T2, T3, T4, T5, T6, T7, T8) const ></a></td><td class="desc"></td></tr>
<tr id="row_4_0_104_" style="display:none;"><td class="entry"><span style="width:48px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="structug_1_1bridge_1_1func__traits_3_01_t_ret_07_t_class_1_1_5_08_07_t1_00_01_t2_00_01_t3_00_01_0e3578a5dd3f9087b31c3aa66d61a30a.html" target="_self">func_traits< TRet(TClass::*)(T1, T2, T3, T4, T5, T6, T7, T8)></a></td><td class="desc"></td></tr>
<tr id="row_4_0_105_" style="display:none;"><td class="entry"><span style="width:48px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="structug_1_1bridge_1_1func__traits_3_01_t_ret_07_t_class_1_1_5_08_07_t1_00_01_t2_00_01_t3_00_01_06b709940731231bc894959460b0f916.html" target="_self">func_traits< TRet(TClass::*)(T1, T2, T3, T4, T5, T6, T7, T8, T9) const ></a></td><td class="desc"></td></tr>
<tr id="row_4_0_106_" style="display:none;"><td class="entry"><span style="width:48px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="structug_1_1bridge_1_1func__traits_3_01_t_ret_07_t_class_1_1_5_08_07_t1_00_01_t2_00_01_t3_00_01_3956875bc4b0ef6c488e0d651ee0f185.html" target="_self">func_traits< TRet(TClass::*)(T1, T2, T3, T4, T5, T6, T7, T8, T9)></a></td><td class="desc"></td></tr>
<tr id="row_4_0_107_" style="display:none;"><td class="entry"><span style="width:48px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="structug_1_1bridge_1_1_functionality.html" target="_self">Functionality</a></td><td class="desc"></td></tr>
<tr id="row_4_0_108_" style="display:none;"><td class="entry"><span style="width:48px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="structug_1_1bridge_1_1_function_proxy.html" target="_self">FunctionProxy</a></td><td class="desc"></td></tr>
<tr id="row_4_0_109_" style="display:none;"><td class="entry"><span style="width:48px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="structug_1_1bridge_1_1_function_proxy_3_01_t_func_00_01void_01_4.html" target="_self">FunctionProxy< TFunc, void ></a></td><td class="desc"></td></tr>
<tr id="row_4_0_110_" style="display:none;"><td class="entry"><span style="width:48px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="classug_1_1bridge_1_1_further_derived.html" target="_self">FurtherDerived</a></td><td class="desc"></td></tr>
<tr id="row_4_0_111_" style="display:none;"><td class="entry"><span style="width:48px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="classug_1_1bridge_1_1_i_exported_class.html" target="_self">IExportedClass</a></td><td class="desc"><a class="el" href="classug_1_1bridge_1_1_base.html">Base</a> class for exported Classes </td></tr>
<tr id="row_4_0_112_" style="display:none;"><td class="entry"><span style="width:48px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="classug_1_1bridge_1_1_intermediate0.html" target="_self">Intermediate0</a></td><td class="desc"></td></tr>
<tr id="row_4_0_113_" style="display:none;"><td class="entry"><span style="width:48px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="classug_1_1bridge_1_1_intermediate1.html" target="_self">Intermediate1</a></td><td class="desc"></td></tr>
<tr id="row_4_0_114_" style="display:none;"><td class="entry"><span style="width:48px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="classug_1_1bridge_1_1_j_s_o_n_constructible.html" target="_self">JSONConstructible</a></td><td class="desc"></td></tr>
<tr id="row_4_0_115_" style="display:none;"><td class="entry"><span style="width:48px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="classug_1_1bridge_1_1_l_u_a_compiler.html" target="_self">LUACompiler</a></td><td class="desc"></td></tr>
<tr id="row_4_0_116_" style="display:none;"><td class="entry"><span style="width:48px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="classug_1_1bridge_1_1_lua_stack_check.html" target="_self">LuaStackCheck</a></td><td class="desc"></td></tr>
<tr id="row_4_0_117_" style="display:none;"><td class="entry"><span style="width:48px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="classug_1_1bridge_1_1_message.html" target="_self">Message</a></td><td class="desc"></td></tr>
<tr id="row_4_0_118_" style="display:none;"><td class="entry"><span style="width:48px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="classug_1_1bridge_1_1_message_hub_test.html" target="_self">MessageHubTest</a></td><td class="desc"></td></tr>
<tr id="row_4_0_119_" style="display:none;"><td class="entry"><span style="width:48px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="structug_1_1bridge_1_1_method_proxy.html" target="_self">MethodProxy</a></td><td class="desc"></td></tr>
<tr id="row_4_0_120_" style="display:none;"><td class="entry"><span style="width:48px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="structug_1_1bridge_1_1_method_proxy_3_01_t_class_00_01_t_method_00_01_custom_return_01_4.html" target="_self">MethodProxy< TClass, TMethod, CustomReturn ></a></td><td class="desc"></td></tr>
<tr id="row_4_0_121_" style="display:none;"><td class="entry"><span style="width:48px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="structug_1_1bridge_1_1_method_proxy_3_01_t_class_00_01_t_method_00_01void_01_4.html" target="_self">MethodProxy< TClass, TMethod, void ></a></td><td class="desc"></td></tr>
<tr id="row_4_0_122_" style="display:none;"><td class="entry"><span style="width:48px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="classug_1_1bridge_1_1_method_ptr_wrapper.html" target="_self">MethodPtrWrapper</a></td><td class="desc"></td></tr>
<tr id="row_4_0_123_" style="display:none;"><td class="entry"><span style="width:48px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="classug_1_1bridge_1_1_multiple_derived.html" target="_self">MultipleDerived</a></td><td class="desc"></td></tr>
<tr id="row_4_0_124_" style="display:none;"><td class="entry"><span style="width:48px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="classug_1_1bridge_1_1_non_allowed_name1.html" target="_self">NonAllowedName1</a></td><td class="desc"></td></tr>
<tr id="row_4_0_125_" style="display:none;"><td class="entry"><span style="width:48px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="classug_1_1bridge_1_1_non_allowed_name2.html" target="_self">NonAllowedName2</a></td><td class="desc"></td></tr>
<tr id="row_4_0_126_" style="display:none;"><td class="entry"><span style="width:48px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="classug_1_1bridge_1_1_non_allowed_name3.html" target="_self">NonAllowedName3</a></td><td class="desc"></td></tr>
<tr id="row_4_0_127_" style="display:none;"><td class="entry"><span style="width:48px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="classug_1_1bridge_1_1_non_allowed_name4.html" target="_self">NonAllowedName4</a></td><td class="desc"></td></tr>
<tr id="row_4_0_128_" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span id="arr_4_0_128_" class="arrow" onclick="toggleFolder('4_0_128_')">►</span><span class="icona"><span class="icon">C</span></span><a class="el" href="classug_1_1bridge_1_1_parameter_info.html" target="_self">ParameterInfo</a></td><td class="desc">Stack holding parameter infos about a parameter stack </td></tr>
<tr id="row_4_0_128_0_" style="display:none;"><td class="entry"><span style="width:64px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="structug_1_1bridge_1_1_parameter_info_1_1_entry_type.html" target="_self">EntryType</a></td><td class="desc">Structure to store a data entry with additional information </td></tr>
<tr id="row_4_0_128_1_" style="display:none;"><td class="entry"><span style="width:64px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="structug_1_1bridge_1_1_parameter_info_1_1_push_type.html" target="_self">PushType</a></td><td class="desc"></td></tr>
<tr id="row_4_0_128_2_" style="display:none;"><td class="entry"><span style="width:64px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="structug_1_1bridge_1_1_parameter_info_1_1_push_type_3_01bool_01_4.html" target="_self">PushType< bool ></a></td><td class="desc"></td></tr>
<tr id="row_4_0_128_3_" style="display:none;"><td class="entry"><span style="width:64px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="structug_1_1bridge_1_1_parameter_info_1_1_push_type_3_01const_01char_01_5_01_4.html" target="_self">PushType< const char * ></a></td><td class="desc"></td></tr>
<tr id="row_4_0_128_4_" style="display:none;"><td class="entry"><span style="width:64px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="structug_1_1bridge_1_1_parameter_info_1_1_push_type_3_01const_01std_1_1string_01_6_01_4.html" target="_self">PushType< const std::string & ></a></td><td class="desc"></td></tr>
<tr id="row_4_0_128_5_" style="display:none;"><td class="entry"><span style="width:64px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="structug_1_1bridge_1_1_parameter_info_1_1_push_type_3_01const_01std_1_1vector_3_01bool_01_4_01_6_01_4.html" target="_self">PushType< const std::vector< bool > & ></a></td><td class="desc"></td></tr>
<tr id="row_4_0_128_6_" style="display:none;"><td class="entry"><span style="width:64px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="structug_1_1bridge_1_1_parameter_info_1_1_push_type_3_01const_01std_1_1vector_3_01const_01char_01_5_01_4_01_6_01_4.html" target="_self">PushType< const std::vector< const char * > & ></a></td><td class="desc"></td></tr>
<tr id="row_4_0_128_7_" style="display:none;"><td class="entry"><span style="width:64px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="structug_1_1bridge_1_1_parameter_info_1_1_push_type_3_01const_01std_1_1vector_3_01const_01_t_class_01_5_01_4_01_6_01_4.html" target="_self">PushType< const std::vector< const TClass * > & ></a></td><td class="desc"></td></tr>
<tr id="row_4_0_128_8_" style="display:none;"><td class="entry"><span style="width:64px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="structug_1_1bridge_1_1_parameter_info_1_1_push_type_3_01const_01std_1_1vector_3_01_const_smart_p4a5aa0b384e9330b6831793f642ec39c.html" target="_self">PushType< const std::vector< ConstSmartPtr< TClass > > & ></a></td><td class="desc"></td></tr>
<tr id="row_4_0_128_9_" style="display:none;"><td class="entry"><span style="width:64px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="structug_1_1bridge_1_1_parameter_info_1_1_push_type_3_01const_01std_1_1vector_3_01double_01_4_01_6_01_4.html" target="_self">PushType< const std::vector< double > & ></a></td><td class="desc"></td></tr>
<tr id="row_4_0_128_10_" style="display:none;"><td class="entry"><span style="width:64px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="structug_1_1bridge_1_1_parameter_info_1_1_push_type_3_01const_01std_1_1vector_3_01float_01_4_01_6_01_4.html" target="_self">PushType< const std::vector< float > & ></a></td><td class="desc"></td></tr>
<tr id="row_4_0_128_11_" style="display:none;"><td class="entry"><span style="width:64px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="structug_1_1bridge_1_1_parameter_info_1_1_push_type_3_01const_01std_1_1vector_3_01int_01_4_01_6_01_4.html" target="_self">PushType< const std::vector< int > & ></a></td><td class="desc"></td></tr>
<tr id="row_4_0_128_12_" style="display:none;"><td class="entry"><span style="width:64px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="structug_1_1bridge_1_1_parameter_info_1_1_push_type_3_01const_01std_1_1vector_3_01size__t_01_4_01_6_01_4.html" target="_self">PushType< const std::vector< size_t > & ></a></td><td class="desc"></td></tr>
<tr id="row_4_0_128_13_" style="display:none;"><td class="entry"><span style="width:64px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="structug_1_1bridge_1_1_parameter_info_1_1_push_type_3_01const_01std_1_1vector_3_01_smart_ptr_3_01_t_class_01_4_01_4_01_6_01_4.html" target="_self">PushType< const std::vector< SmartPtr< TClass > > & ></a></td><td class="desc"></td></tr>
<tr id="row_4_0_128_14_" style="display:none;"><td class="entry"><span style="width:64px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="structug_1_1bridge_1_1_parameter_info_1_1_push_type_3_01const_01std_1_1vector_3_01std_1_1string_01_4_01_6_01_4.html" target="_self">PushType< const std::vector< std::string > & ></a></td><td class="desc"></td></tr>
<tr id="row_4_0_128_15_" style="display:none;"><td class="entry"><span style="width:64px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="structug_1_1bridge_1_1_parameter_info_1_1_push_type_3_01const_01std_1_1vector_3_01_t_class_01_5_01_4_01_6_01_4.html" target="_self">PushType< const std::vector< TClass * > & ></a></td><td class="desc"></td></tr>
<tr id="row_4_0_128_16_" style="display:none;"><td class="entry"><span style="width:64px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="structug_1_1bridge_1_1_parameter_info_1_1_push_type_3_01const_01_t_class_01_6_01_4.html" target="_self">PushType< const TClass & ></a></td><td class="desc"></td></tr>
<tr id="row_4_0_128_17_" style="display:none;"><td class="entry"><span style="width:64px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="structug_1_1bridge_1_1_parameter_info_1_1_push_type_3_01const_01_t_class_01_5_01_4.html" target="_self">PushType< const TClass * ></a></td><td class="desc"></td></tr>
<tr id="row_4_0_128_18_" style="display:none;"><td class="entry"><span style="width:64px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="structug_1_1bridge_1_1_parameter_info_1_1_push_type_3_01_const_smart_ptr_3_01_t_class_01_4_01_4.html" target="_self">PushType< ConstSmartPtr< TClass > ></a></td><td class="desc"></td></tr>
<tr id="row_4_0_128_19_" style="display:none;"><td class="entry"><span style="width:64px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="structug_1_1bridge_1_1_parameter_info_1_1_push_type_3_01double_01_4.html" target="_self">PushType< double ></a></td><td class="desc"></td></tr>
<tr id="row_4_0_128_20_" style="display:none;"><td class="entry"><span style="width:64px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="structug_1_1bridge_1_1_parameter_info_1_1_push_type_3_01float_01_4.html" target="_self">PushType< float ></a></td><td class="desc"></td></tr>
<tr id="row_4_0_128_21_" style="display:none;"><td class="entry"><span style="width:64px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="structug_1_1bridge_1_1_parameter_info_1_1_push_type_3_01int_01_4.html" target="_self">PushType< int ></a></td><td class="desc"></td></tr>
<tr id="row_4_0_128_22_" style="display:none;"><td class="entry"><span style="width:64px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="structug_1_1bridge_1_1_parameter_info_1_1_push_type_3_01size__t_01_4.html" target="_self">PushType< size_t ></a></td><td class="desc"></td></tr>
<tr id="row_4_0_128_23_" style="display:none;"><td class="entry"><span style="width:64px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="structug_1_1bridge_1_1_parameter_info_1_1_push_type_3_01_smart_ptr_3_01_t_class_01_4_01_4.html" target="_self">PushType< SmartPtr< TClass > ></a></td><td class="desc"></td></tr>
<tr id="row_4_0_128_24_" style="display:none;"><td class="entry"><span style="width:64px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="structug_1_1bridge_1_1_parameter_info_1_1_push_type_3_01std_1_1string_01_4.html" target="_self">PushType< std::string ></a></td><td class="desc"></td></tr>
<tr id="row_4_0_128_25_" style="display:none;"><td class="entry"><span style="width:64px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="structug_1_1bridge_1_1_parameter_info_1_1_push_type_3_01std_1_1vector_3_01bool_01_4_01_4.html" target="_self">PushType< std::vector< bool > ></a></td><td class="desc"></td></tr>
<tr id="row_4_0_128_26_" style="display:none;"><td class="entry"><span style="width:64px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="structug_1_1bridge_1_1_parameter_info_1_1_push_type_3_01std_1_1vector_3_01const_01char_01_5_01_4_01_4.html" target="_self">PushType< std::vector< const char * > ></a></td><td class="desc"></td></tr>
<tr id="row_4_0_128_27_" style="display:none;"><td class="entry"><span style="width:64px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="structug_1_1bridge_1_1_parameter_info_1_1_push_type_3_01std_1_1vector_3_01const_01_t_class_01_5_01_4_01_4.html" target="_self">PushType< std::vector< const TClass * > ></a></td><td class="desc"></td></tr>
<tr id="row_4_0_128_28_" style="display:none;"><td class="entry"><span style="width:64px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="structug_1_1bridge_1_1_parameter_info_1_1_push_type_3_01std_1_1vector_3_01_const_smart_ptr_3_01_t_class_01_4_01_4_01_4.html" target="_self">PushType< std::vector< ConstSmartPtr< TClass > > ></a></td><td class="desc"></td></tr>
<tr id="row_4_0_128_29_" style="display:none;"><td class="entry"><span style="width:64px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="structug_1_1bridge_1_1_parameter_info_1_1_push_type_3_01std_1_1vector_3_01double_01_4_01_4.html" target="_self">PushType< std::vector< double > ></a></td><td class="desc"></td></tr>
<tr id="row_4_0_128_30_" style="display:none;"><td class="entry"><span style="width:64px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="structug_1_1bridge_1_1_parameter_info_1_1_push_type_3_01std_1_1vector_3_01float_01_4_01_4.html" target="_self">PushType< std::vector< float > ></a></td><td class="desc"></td></tr>
<tr id="row_4_0_128_31_" style="display:none;"><td class="entry"><span style="width:64px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="structug_1_1bridge_1_1_parameter_info_1_1_push_type_3_01std_1_1vector_3_01int_01_4_01_4.html" target="_self">PushType< std::vector< int > ></a></td><td class="desc"></td></tr>
<tr id="row_4_0_128_32_" style="display:none;"><td class="entry"><span style="width:64px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="structug_1_1bridge_1_1_parameter_info_1_1_push_type_3_01std_1_1vector_3_01size__t_01_4_01_4.html" target="_self">PushType< std::vector< size_t > ></a></td><td class="desc"></td></tr>
<tr id="row_4_0_128_33_" style="display:none;"><td class="entry"><span style="width:64px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="structug_1_1bridge_1_1_parameter_info_1_1_push_type_3_01std_1_1vector_3_01_smart_ptr_3_01_t_class_01_4_01_4_01_4.html" target="_self">PushType< std::vector< SmartPtr< TClass > > ></a></td><td class="desc"></td></tr>
<tr id="row_4_0_128_34_" style="display:none;"><td class="entry"><span style="width:64px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="structug_1_1bridge_1_1_parameter_info_1_1_push_type_3_01std_1_1vector_3_01std_1_1string_01_4_01_4.html" target="_self">PushType< std::vector< std::string > ></a></td><td class="desc"></td></tr>
<tr id="row_4_0_128_35_" style="display:none;"><td class="entry"><span style="width:64px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="structug_1_1bridge_1_1_parameter_info_1_1_push_type_3_01std_1_1vector_3_01_t_class_01_5_01_4_01_4.html" target="_self">PushType< std::vector< TClass * > ></a></td><td class="desc"></td></tr>
<tr id="row_4_0_128_36_" style="display:none;"><td class="entry"><span style="width:64px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="structug_1_1bridge_1_1_parameter_info_1_1_push_type_3_01_t_class_01_6_01_4.html" target="_self">PushType< TClass & ></a></td><td class="desc"></td></tr>
<tr id="row_4_0_128_37_" style="display:none;"><td class="entry"><span style="width:64px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="structug_1_1bridge_1_1_parameter_info_1_1_push_type_3_01_t_class_01_5_01_4.html" target="_self">PushType< TClass * ></a></td><td class="desc"></td></tr>
<tr id="row_4_0_129_" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span id="arr_4_0_129_" class="arrow" onclick="toggleFolder('4_0_129_')">►</span><span class="icona"><span class="icon">C</span></span><a class="el" href="classug_1_1bridge_1_1_parameter_stack.html" target="_self">ParameterStack</a></td><td class="desc">A stack that can hold values together with their type-id </td></tr>
<tr id="row_4_0_129_0_" style="display:none;"><td class="entry"><span style="width:64px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="structug_1_1bridge_1_1_parameter_stack_1_1_push_type.html" target="_self">PushType</a></td><td class="desc"></td></tr>
<tr id="row_4_0_129_1_" style="display:none;"><td class="entry"><span style="width:64px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="structug_1_1bridge_1_1_parameter_stack_1_1_push_type_3_01bool_01_4.html" target="_self">PushType< bool ></a></td><td class="desc"></td></tr>
<tr id="row_4_0_129_2_" style="display:none;"><td class="entry"><span style="width:64px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="structug_1_1bridge_1_1_parameter_stack_1_1_push_type_3_01const_01char_01_5_01_4.html" target="_self">PushType< const char * ></a></td><td class="desc"></td></tr>
<tr id="row_4_0_129_3_" style="display:none;"><td class="entry"><span style="width:64px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="structug_1_1bridge_1_1_parameter_stack_1_1_push_type_3_01const_01std_1_1string_01_6_01_4.html" target="_self">PushType< const std::string & ></a></td><td class="desc"></td></tr>
<tr id="row_4_0_129_4_" style="display:none;"><td class="entry"><span style="width:64px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="structug_1_1bridge_1_1_parameter_stack_1_1_push_type_3_01const_01std_1_1vector_3_01bool_01_4_01_6_01_4.html" target="_self">PushType< const std::vector< bool > & ></a></td><td class="desc"></td></tr>
<tr id="row_4_0_129_5_" style="display:none;"><td class="entry"><span style="width:64px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="structug_1_1bridge_1_1_parameter_stack_1_1_push_type_3_01const_01std_1_1vector_3_01const_01char_01_5_01_4_01_6_01_4.html" target="_self">PushType< const std::vector< const char * > & ></a></td><td class="desc"></td></tr>
<tr id="row_4_0_129_6_" style="display:none;"><td class="entry"><span style="width:64px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="structug_1_1bridge_1_1_parameter_stack_1_1_push_type_3_01const_01std_1_1vector_3_01const_01_t_01_5_01_4_01_6_01_4.html" target="_self">PushType< const std::vector< const T * > & ></a></td><td class="desc"></td></tr>
<tr id="row_4_0_129_7_" style="display:none;"><td class="entry"><span style="width:64px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="structug_1_1bridge_1_1_parameter_stack_1_1_push_type_3_01const_01std_1_1vector_3_01_const_smart_ptr_3_01_t_01_4_01_4_01_6_01_4.html" target="_self">PushType< const std::vector< ConstSmartPtr< T > > & ></a></td><td class="desc"></td></tr>
<tr id="row_4_0_129_8_" style="display:none;"><td class="entry"><span style="width:64px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="structug_1_1bridge_1_1_parameter_stack_1_1_push_type_3_01const_01std_1_1vector_3_01double_01_4_01_6_01_4.html" target="_self">PushType< const std::vector< double > & ></a></td><td class="desc"></td></tr>
<tr id="row_4_0_129_9_" style="display:none;"><td class="entry"><span style="width:64px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="structug_1_1bridge_1_1_parameter_stack_1_1_push_type_3_01const_01std_1_1vector_3_01float_01_4_01_6_01_4.html" target="_self">PushType< const std::vector< float > & ></a></td><td class="desc"></td></tr>
<tr id="row_4_0_129_10_" style="display:none;"><td class="entry"><span style="width:64px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="structug_1_1bridge_1_1_parameter_stack_1_1_push_type_3_01const_01std_1_1vector_3_01int_01_4_01_6_01_4.html" target="_self">PushType< const std::vector< int > & ></a></td><td class="desc"></td></tr>
<tr id="row_4_0_129_11_" style="display:none;"><td class="entry"><span style="width:64px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="structug_1_1bridge_1_1_parameter_stack_1_1_push_type_3_01const_01std_1_1vector_3_01size__t_01_4_01_6_01_4.html" target="_self">PushType< const std::vector< size_t > & ></a></td><td class="desc"></td></tr>
<tr id="row_4_0_129_12_" style="display:none;"><td class="entry"><span style="width:64px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="structug_1_1bridge_1_1_parameter_stack_1_1_push_type_3_01const_01std_1_1vector_3_01_smart_ptr_3_01_t_01_4_01_4_01_6_01_4.html" target="_self">PushType< const std::vector< SmartPtr< T > > & ></a></td><td class="desc"></td></tr>
<tr id="row_4_0_129_13_" style="display:none;"><td class="entry"><span style="width:64px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="structug_1_1bridge_1_1_parameter_stack_1_1_push_type_3_01const_01std_1_1vector_3_01std_1_1string_01_4_01_6_01_4.html" target="_self">PushType< const std::vector< std::string > & ></a></td><td class="desc"></td></tr>
<tr id="row_4_0_129_14_" style="display:none;"><td class="entry"><span style="width:64px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="structug_1_1bridge_1_1_parameter_stack_1_1_push_type_3_01const_01std_1_1vector_3_01_t_01_5_01_4_01_6_01_4.html" target="_self">PushType< const std::vector< T * > & ></a></td><td class="desc"></td></tr>
<tr id="row_4_0_129_15_" style="display:none;"><td class="entry"><span style="width:64px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="structug_1_1bridge_1_1_parameter_stack_1_1_push_type_3_01const_01_t_01_6_01_4.html" target="_self">PushType< const T & ></a></td><td class="desc"></td></tr>
<tr id="row_4_0_129_16_" style="display:none;"><td class="entry"><span style="width:64px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="structug_1_1bridge_1_1_parameter_stack_1_1_push_type_3_01const_01_t_01_5_01_4.html" target="_self">PushType< const T * ></a></td><td class="desc"></td></tr>
<tr id="row_4_0_129_17_" style="display:none;"><td class="entry"><span style="width:64px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="structug_1_1bridge_1_1_parameter_stack_1_1_push_type_3_01_const_smart_ptr_3_01_t_01_4_01_4.html" target="_self">PushType< ConstSmartPtr< T > ></a></td><td class="desc"></td></tr>
<tr id="row_4_0_129_18_" style="display:none;"><td class="entry"><span style="width:64px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="structug_1_1bridge_1_1_parameter_stack_1_1_push_type_3_01double_01_4.html" target="_self">PushType< double ></a></td><td class="desc"></td></tr>
<tr id="row_4_0_129_19_" style="display:none;"><td class="entry"><span style="width:64px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="structug_1_1bridge_1_1_parameter_stack_1_1_push_type_3_01float_01_4.html" target="_self">PushType< float ></a></td><td class="desc"></td></tr>
<tr id="row_4_0_129_20_" style="display:none;"><td class="entry"><span style="width:64px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="structug_1_1bridge_1_1_parameter_stack_1_1_push_type_3_01int_01_4.html" target="_self">PushType< int ></a></td><td class="desc"></td></tr>
<tr id="row_4_0_129_21_" style="display:none;"><td class="entry"><span style="width:64px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="structug_1_1bridge_1_1_parameter_stack_1_1_push_type_3_01size__t_01_4.html" target="_self">PushType< size_t ></a></td><td class="desc"></td></tr>
<tr id="row_4_0_129_22_" style="display:none;"><td class="entry"><span style="width:64px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="structug_1_1bridge_1_1_parameter_stack_1_1_push_type_3_01_smart_ptr_3_01_t_01_4_01_4.html" target="_self">PushType< SmartPtr< T > ></a></td><td class="desc"></td></tr>
<tr id="row_4_0_129_23_" style="display:none;"><td class="entry"><span style="width:64px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="structug_1_1bridge_1_1_parameter_stack_1_1_push_type_3_01std_1_1string_01_4.html" target="_self">PushType< std::string ></a></td><td class="desc"></td></tr>
<tr id="row_4_0_129_24_" style="display:none;"><td class="entry"><span style="width:64px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="structug_1_1bridge_1_1_parameter_stack_1_1_push_type_3_01std_1_1vector_3_01bool_01_4_01_4.html" target="_self">PushType< std::vector< bool > ></a></td><td class="desc"></td></tr>
<tr id="row_4_0_129_25_" style="display:none;"><td class="entry"><span style="width:64px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="structug_1_1bridge_1_1_parameter_stack_1_1_push_type_3_01std_1_1vector_3_01const_01char_01_5_01_4_01_4.html" target="_self">PushType< std::vector< const char * > ></a></td><td class="desc"></td></tr>
<tr id="row_4_0_129_26_" style="display:none;"><td class="entry"><span style="width:64px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="structug_1_1bridge_1_1_parameter_stack_1_1_push_type_3_01std_1_1vector_3_01const_01_t_01_5_01_4_01_4.html" target="_self">PushType< std::vector< const T * > ></a></td><td class="desc"></td></tr>
<tr id="row_4_0_129_27_" style="display:none;"><td class="entry"><span style="width:64px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="structug_1_1bridge_1_1_parameter_stack_1_1_push_type_3_01std_1_1vector_3_01_const_smart_ptr_3_01_t_01_4_01_4_01_4.html" target="_self">PushType< std::vector< ConstSmartPtr< T > > ></a></td><td class="desc"></td></tr>
<tr id="row_4_0_129_28_" style="display:none;"><td class="entry"><span style="width:64px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="structug_1_1bridge_1_1_parameter_stack_1_1_push_type_3_01std_1_1vector_3_01double_01_4_01_4.html" target="_self">PushType< std::vector< double > ></a></td><td class="desc"></td></tr>
<tr id="row_4_0_129_29_" style="display:none;"><td class="entry"><span style="width:64px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="structug_1_1bridge_1_1_parameter_stack_1_1_push_type_3_01std_1_1vector_3_01float_01_4_01_4.html" target="_self">PushType< std::vector< float > ></a></td><td class="desc"></td></tr>
<tr id="row_4_0_129_30_" style="display:none;"><td class="entry"><span style="width:64px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="structug_1_1bridge_1_1_parameter_stack_1_1_push_type_3_01std_1_1vector_3_01int_01_4_01_4.html" target="_self">PushType< std::vector< int > ></a></td><td class="desc"></td></tr>
<tr id="row_4_0_129_31_" style="display:none;"><td class="entry"><span style="width:64px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="structug_1_1bridge_1_1_parameter_stack_1_1_push_type_3_01std_1_1vector_3_01size__t_01_4_01_4.html" target="_self">PushType< std::vector< size_t > ></a></td><td class="desc"></td></tr>
<tr id="row_4_0_129_32_" style="display:none;"><td class="entry"><span style="width:64px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="structug_1_1bridge_1_1_parameter_stack_1_1_push_type_3_01std_1_1vector_3_01_smart_ptr_3_01_t_01_4_01_4_01_4.html" target="_self">PushType< std::vector< SmartPtr< T > > ></a></td><td class="desc"></td></tr>
<tr id="row_4_0_129_33_" style="display:none;"><td class="entry"><span style="width:64px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="structug_1_1bridge_1_1_parameter_stack_1_1_push_type_3_01std_1_1vector_3_01std_1_1string_01_4_01_4.html" target="_self">PushType< std::vector< std::string > ></a></td><td class="desc"></td></tr>
<tr id="row_4_0_129_34_" style="display:none;"><td class="entry"><span style="width:64px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="structug_1_1bridge_1_1_parameter_stack_1_1_push_type_3_01std_1_1vector_3_01_t_01_5_01_4_01_4.html" target="_self">PushType< std::vector< T * > ></a></td><td class="desc"></td></tr>
<tr id="row_4_0_129_35_" style="display:none;"><td class="entry"><span style="width:64px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="structug_1_1bridge_1_1_parameter_stack_1_1_push_type_3_01_t_01_6_01_4.html" target="_self">PushType< T & ></a></td><td class="desc"></td></tr>
<tr id="row_4_0_129_36_" style="display:none;"><td class="entry"><span style="width:64px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="structug_1_1bridge_1_1_parameter_stack_1_1_push_type_3_01_t_01_5_01_4.html" target="_self">PushType< T * ></a></td><td class="desc"></td></tr>
<tr id="row_4_0_129_37_" style="display:none;"><td class="entry"><span style="width:64px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="structug_1_1bridge_1_1_parameter_stack_1_1_to_type.html" target="_self">ToType</a></td><td class="desc"></td></tr>
<tr id="row_4_0_129_38_" style="display:none;"><td class="entry"><span style="width:64px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="structug_1_1bridge_1_1_parameter_stack_1_1_to_type_3_01bool_01_4.html" target="_self">ToType< bool ></a></td><td class="desc"></td></tr>
<tr id="row_4_0_129_39_" style="display:none;"><td class="entry"><span style="width:64px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="structug_1_1bridge_1_1_parameter_stack_1_1_to_type_3_01const_01char_01_5_01_4.html" target="_self">ToType< const char * ></a></td><td class="desc"></td></tr>
<tr id="row_4_0_129_40_" style="display:none;"><td class="entry"><span style="width:64px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="structug_1_1bridge_1_1_parameter_stack_1_1_to_type_3_01const_01std_1_1string_01_6_01_4.html" target="_self">ToType< const std::string & ></a></td><td class="desc"></td></tr>
<tr id="row_4_0_129_41_" style="display:none;"><td class="entry"><span style="width:64px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="structug_1_1bridge_1_1_parameter_stack_1_1_to_type_3_01const_01std_1_1vector_3_01bool_01_4_01_6_01_4.html" target="_self">ToType< const std::vector< bool > & ></a></td><td class="desc"></td></tr>
<tr id="row_4_0_129_42_" style="display:none;"><td class="entry"><span style="width:64px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="structug_1_1bridge_1_1_parameter_stack_1_1_to_type_3_01const_01std_1_1vector_3_01const_01char_01_5_01_4_01_6_01_4.html" target="_self">ToType< const std::vector< const char * > & ></a></td><td class="desc"></td></tr>
<tr id="row_4_0_129_43_" style="display:none;"><td class="entry"><span style="width:64px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="structug_1_1bridge_1_1_parameter_stack_1_1_to_type_3_01const_01std_1_1vector_3_01const_01_t_01_5_01_4_01_6_01_4.html" target="_self">ToType< const std::vector< const T * > & ></a></td><td class="desc"></td></tr>
<tr id="row_4_0_129_44_" style="display:none;"><td class="entry"><span style="width:64px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="structug_1_1bridge_1_1_parameter_stack_1_1_to_type_3_01const_01std_1_1vector_3_01_const_smart_ptr_3_01_t_01_4_01_4_01_6_01_4.html" target="_self">ToType< const std::vector< ConstSmartPtr< T > > & ></a></td><td class="desc"></td></tr>
<tr id="row_4_0_129_45_" style="display:none;"><td class="entry"><span style="width:64px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="structug_1_1bridge_1_1_parameter_stack_1_1_to_type_3_01const_01std_1_1vector_3_01double_01_4_01_6_01_4.html" target="_self">ToType< const std::vector< double > & ></a></td><td class="desc"></td></tr>
<tr id="row_4_0_129_46_" style="display:none;"><td class="entry"><span style="width:64px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="structug_1_1bridge_1_1_parameter_stack_1_1_to_type_3_01const_01std_1_1vector_3_01float_01_4_01_6_01_4.html" target="_self">ToType< const std::vector< float > & ></a></td><td class="desc"></td></tr>
<tr id="row_4_0_129_47_" style="display:none;"><td class="entry"><span style="width:64px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="structug_1_1bridge_1_1_parameter_stack_1_1_to_type_3_01const_01std_1_1vector_3_01int_01_4_01_6_01_4.html" target="_self">ToType< const std::vector< int > & ></a></td><td class="desc"></td></tr>
<tr id="row_4_0_129_48_" style="display:none;"><td class="entry"><span style="width:64px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="structug_1_1bridge_1_1_parameter_stack_1_1_to_type_3_01const_01std_1_1vector_3_01size__t_01_4_01_6_01_4.html" target="_self">ToType< const std::vector< size_t > & ></a></td><td class="desc"></td></tr>
<tr id="row_4_0_129_49_" style="display:none;"><td class="entry"><span style="width:64px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="structug_1_1bridge_1_1_parameter_stack_1_1_to_type_3_01const_01std_1_1vector_3_01_smart_ptr_3_01_t_01_4_01_4_01_6_01_4.html" target="_self">ToType< const std::vector< SmartPtr< T > > & ></a></td><td class="desc"></td></tr>
<tr id="row_4_0_129_50_" style="display:none;"><td class="entry"><span style="width:64px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="structug_1_1bridge_1_1_parameter_stack_1_1_to_type_3_01const_01std_1_1vector_3_01std_1_1string_01_4_01_6_01_4.html" target="_self">ToType< const std::vector< std::string > & ></a></td><td class="desc"></td></tr>
<tr id="row_4_0_129_51_" style="display:none;"><td class="entry"><span style="width:64px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="structug_1_1bridge_1_1_parameter_stack_1_1_to_type_3_01const_01std_1_1vector_3_01_t_01_5_01_4_01_6_01_4.html" target="_self">ToType< const std::vector< T * > & ></a></td><td class="desc"></td></tr>
<tr id="row_4_0_129_52_" style="display:none;"><td class="entry"><span style="width:64px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="structug_1_1bridge_1_1_parameter_stack_1_1_to_type_3_01const_01_t_01_6_01_4.html" target="_self">ToType< const T & ></a></td><td class="desc"></td></tr>
<tr id="row_4_0_129_53_" style="display:none;"><td class="entry"><span style="width:64px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="structug_1_1bridge_1_1_parameter_stack_1_1_to_type_3_01const_01_t_01_5_01_4.html" target="_self">ToType< const T * ></a></td><td class="desc"></td></tr>
<tr id="row_4_0_129_54_" style="display:none;"><td class="entry"><span style="width:64px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="structug_1_1bridge_1_1_parameter_stack_1_1_to_type_3_01const_01void_01_5_01_4.html" target="_self">ToType< const void * ></a></td><td class="desc"></td></tr>
<tr id="row_4_0_129_55_" style="display:none;"><td class="entry"><span style="width:64px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="structug_1_1bridge_1_1_parameter_stack_1_1_to_type_3_01_const_smart_ptr_3_01_t_01_4_01_4.html" target="_self">ToType< ConstSmartPtr< T > ></a></td><td class="desc"></td></tr>
<tr id="row_4_0_129_56_" style="display:none;"><td class="entry"><span style="width:64px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="structug_1_1bridge_1_1_parameter_stack_1_1_to_type_3_01_const_smart_ptr_3_01void_01_4_01_4.html" target="_self">ToType< ConstSmartPtr< void > ></a></td><td class="desc"></td></tr>
<tr id="row_4_0_129_57_" style="display:none;"><td class="entry"><span style="width:64px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="structug_1_1bridge_1_1_parameter_stack_1_1_to_type_3_01double_01_4.html" target="_self">ToType< double ></a></td><td class="desc"></td></tr>
<tr id="row_4_0_129_58_" style="display:none;"><td class="entry"><span style="width:64px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="structug_1_1bridge_1_1_parameter_stack_1_1_to_type_3_01float_01_4.html" target="_self">ToType< float ></a></td><td class="desc"></td></tr>
<tr id="row_4_0_129_59_" style="display:none;"><td class="entry"><span style="width:64px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="structug_1_1bridge_1_1_parameter_stack_1_1_to_type_3_01int_01_4.html" target="_self">ToType< int ></a></td><td class="desc"></td></tr>
<tr id="row_4_0_129_60_" style="display:none;"><td class="entry"><span style="width:64px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="structug_1_1bridge_1_1_parameter_stack_1_1_to_type_3_01size__t_01_4.html" target="_self">ToType< size_t ></a></td><td class="desc"></td></tr>
<tr id="row_4_0_129_61_" style="display:none;"><td class="entry"><span style="width:64px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="structug_1_1bridge_1_1_parameter_stack_1_1_to_type_3_01_smart_ptr_3_01std_1_1vector_3_01std_1_1p518d0414b4d8a802f5d4d03d65599d8d.html" target="_self">ToType< SmartPtr< std::vector< std::pair< const void *, const ClassNameNode * > > > ></a></td><td class="desc"></td></tr>
<tr id="row_4_0_129_62_" style="display:none;"><td class="entry"><span style="width:64px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="structug_1_1bridge_1_1_parameter_stack_1_1_to_type_3_01_smart_ptr_3_01std_1_1vector_3_01std_1_1pa85a90c9d8c87feccce6d1cba6837725.html" target="_self">ToType< SmartPtr< std::vector< std::pair< ConstSmartPtr< void >, const ClassNameNode * > > > ></a></td><td class="desc"></td></tr>
<tr id="row_4_0_129_63_" style="display:none;"><td class="entry"><span style="width:64px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="structug_1_1bridge_1_1_parameter_stack_1_1_to_type_3_01_smart_ptr_3_01std_1_1vector_3_01std_1_1pe008322d5cd668cf7dc55e92f35e7605.html" target="_self">ToType< SmartPtr< std::vector< std::pair< SmartPtr< void >, const ClassNameNode * > > > ></a></td><td class="desc"></td></tr>
<tr id="row_4_0_129_64_" style="display:none;"><td class="entry"><span style="width:64px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="structug_1_1bridge_1_1_parameter_stack_1_1_to_type_3_01_smart_ptr_3_01std_1_1vector_3_01std_1_1p14eca72267a1cb5264a9ab0a29aaf654.html" target="_self">ToType< SmartPtr< std::vector< std::pair< void *, const ClassNameNode * > > > ></a></td><td class="desc"></td></tr>
<tr id="row_4_0_129_65_" style="display:none;"><td class="entry"><span style="width:64px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="structug_1_1bridge_1_1_parameter_stack_1_1_to_type_3_01_smart_ptr_3_01_t_01_4_01_4.html" target="_self">ToType< SmartPtr< T > ></a></td><td class="desc"></td></tr>
<tr id="row_4_0_129_66_" style="display:none;"><td class="entry"><span style="width:64px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="structug_1_1bridge_1_1_parameter_stack_1_1_to_type_3_01_smart_ptr_3_01void_01_4_01_4.html" target="_self">ToType< SmartPtr< void > ></a></td><td class="desc"></td></tr>
<tr id="row_4_0_129_67_" style="display:none;"><td class="entry"><span style="width:64px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="structug_1_1bridge_1_1_parameter_stack_1_1_to_type_3_01std_1_1string_01_4.html" target="_self">ToType< std::string ></a></td><td class="desc"></td></tr>
<tr id="row_4_0_129_68_" style="display:none;"><td class="entry"><span style="width:64px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="structug_1_1bridge_1_1_parameter_stack_1_1_to_type_3_01std_1_1vector_3_01bool_01_4_01_4.html" target="_self">ToType< std::vector< bool > ></a></td><td class="desc"></td></tr>
<tr id="row_4_0_129_69_" style="display:none;"><td class="entry"><span style="width:64px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="structug_1_1bridge_1_1_parameter_stack_1_1_to_type_3_01std_1_1vector_3_01const_01char_01_5_01_4_01_4.html" target="_self">ToType< std::vector< const char * > ></a></td><td class="desc"></td></tr>
<tr id="row_4_0_129_70_" style="display:none;"><td class="entry"><span style="width:64px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="structug_1_1bridge_1_1_parameter_stack_1_1_to_type_3_01std_1_1vector_3_01const_01_t_01_5_01_4_01_4.html" target="_self">ToType< std::vector< const T * > ></a></td><td class="desc"></td></tr>
<tr id="row_4_0_129_71_" style="display:none;"><td class="entry"><span style="width:64px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="structug_1_1bridge_1_1_parameter_stack_1_1_to_type_3_01std_1_1vector_3_01_const_smart_ptr_3_01_t_01_4_01_4_01_4.html" target="_self">ToType< std::vector< ConstSmartPtr< T > > ></a></td><td class="desc"></td></tr>
<tr id="row_4_0_129_72_" style="display:none;"><td class="entry"><span style="width:64px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="structug_1_1bridge_1_1_parameter_stack_1_1_to_type_3_01std_1_1vector_3_01double_01_4_01_4.html" target="_self">ToType< std::vector< double > ></a></td><td class="desc"></td></tr>
<tr id="row_4_0_129_73_" style="display:none;"><td class="entry"><span style="width:64px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="structug_1_1bridge_1_1_parameter_stack_1_1_to_type_3_01std_1_1vector_3_01float_01_4_01_4.html" target="_self">ToType< std::vector< float > ></a></td><td class="desc"></td></tr>
<tr id="row_4_0_129_74_" style="display:none;"><td class="entry"><span style="width:64px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="structug_1_1bridge_1_1_parameter_stack_1_1_to_type_3_01std_1_1vector_3_01int_01_4_01_4.html" target="_self">ToType< std::vector< int > ></a></td><td class="desc"></td></tr>
<tr id="row_4_0_129_75_" style="display:none;"><td class="entry"><span style="width:64px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="structug_1_1bridge_1_1_parameter_stack_1_1_to_type_3_01std_1_1vector_3_01size__t_01_4_01_4.html" target="_self">ToType< std::vector< size_t > ></a></td><td class="desc"></td></tr>
<tr id="row_4_0_129_76_" style="display:none;"><td class="entry"><span style="width:64px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="structug_1_1bridge_1_1_parameter_stack_1_1_to_type_3_01std_1_1vector_3_01_smart_ptr_3_01_t_01_4_01_4_01_4.html" target="_self">ToType< std::vector< SmartPtr< T > > ></a></td><td class="desc"></td></tr>
<tr id="row_4_0_129_77_" style="display:none;"><td class="entry"><span style="width:64px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="structug_1_1bridge_1_1_parameter_stack_1_1_to_type_3_01std_1_1vector_3_01std_1_1string_01_4_01_4.html" target="_self">ToType< std::vector< std::string > ></a></td><td class="desc"></td></tr>
<tr id="row_4_0_129_78_" style="display:none;"><td class="entry"><span style="width:64px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="structug_1_1bridge_1_1_parameter_stack_1_1_to_type_3_01std_1_1vector_3_01_t_01_5_01_4_01_4.html" target="_self">ToType< std::vector< T * > ></a></td><td class="desc"></td></tr>
<tr id="row_4_0_129_79_" style="display:none;"><td class="entry"><span style="width:64px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="structug_1_1bridge_1_1_parameter_stack_1_1_to_type_3_01_t_01_6_01_4.html" target="_self">ToType< T & ></a></td><td class="desc"></td></tr>
<tr id="row_4_0_129_80_" style="display:none;"><td class="entry"><span style="width:64px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="structug_1_1bridge_1_1_parameter_stack_1_1_to_type_3_01_t_01_5_01_4.html" target="_self">ToType< T * ></a></td><td class="desc"></td></tr>
<tr id="row_4_0_129_81_" style="display:none;"><td class="entry"><span style="width:64px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="structug_1_1bridge_1_1_parameter_stack_1_1_to_type_3_01void_01_5_01_4.html" target="_self">ToType< void * ></a></td><td class="desc"></td></tr>
<tr id="row_4_0_130_" style="display:none;"><td class="entry"><span style="width:48px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="structug_1_1bridge_1_1_parameter_stack_to_type_value_list.html" target="_self">ParameterStackToTypeValueList</a></td><td class="desc"></td></tr>
<tr id="row_4_0_131_" style="display:none;"><td class="entry"><span style="width:48px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="structug_1_1bridge_1_1_parameter_stack_to_type_value_list_3_01_type_list_3_4_00_01index_01_4.html" target="_self">ParameterStackToTypeValueList< TypeList<>, index ></a></td><td class="desc"></td></tr>
<tr id="row_4_0_132_" style="display:none;"><td class="entry"><span style="width:48px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="classug_1_1bridge_1_1_piece.html" target="_self">Piece</a></td><td class="desc"></td></tr>
<tr id="row_4_0_133_" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span id="arr_4_0_133_" class="arrow" onclick="toggleFolder('4_0_133_')">►</span><span class="icona"><span class="icon">C</span></span><a class="el" href="structug_1_1bridge_1_1_register_algebra_dependent.html" target="_self">RegisterAlgebraDependent</a></td><td class="desc"></td></tr>
<tr id="row_4_0_133_0_" style="display:none;"><td class="entry"><span style="width:64px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="structug_1_1bridge_1_1_register_algebra_dependent_1_1_reg_end.html" target="_self">RegEnd</a></td><td class="desc"></td></tr>
<tr id="row_4_0_133_1_" style="display:none;"><td class="entry"><span style="width:64px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="structug_1_1bridge_1_1_register_algebra_dependent_1_1_reg_next.html" target="_self">RegNext</a></td><td class="desc"></td></tr>
<tr id="row_4_0_134_" style="display:none;"><td class="entry"><span style="width:48px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="structug_1_1bridge_1_1_register_domain1d_algebra_dependent.html" target="_self">RegisterDomain1dAlgebraDependent</a></td><td class="desc"></td></tr>
<tr id="row_4_0_135_" style="display:none;"><td class="entry"><span style="width:48px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="structug_1_1bridge_1_1_register_domain2d3d_algebra_dependent.html" target="_self">RegisterDomain2d3dAlgebraDependent</a></td><td class="desc"></td></tr>
<tr id="row_4_0_136_" style="display:none;"><td class="entry"><span style="width:48px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="structug_1_1bridge_1_1_register_domain2d_algebra_dependent.html" target="_self">RegisterDomain2dAlgebraDependent</a></td><td class="desc"></td></tr>
<tr id="row_4_0_137_" style="display:none;"><td class="entry"><span style="width:48px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="structug_1_1bridge_1_1_register_domain3d_algebra_dependent.html" target="_self">RegisterDomain3dAlgebraDependent</a></td><td class="desc"></td></tr>
<tr id="row_4_0_138_" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span id="arr_4_0_138_" class="arrow" onclick="toggleFolder('4_0_138_')">►</span><span class="icona"><span class="icon">C</span></span><a class="el" href="structug_1_1bridge_1_1_register_domain_algebra_dependent.html" target="_self">RegisterDomainAlgebraDependent</a></td><td class="desc"></td></tr>
<tr id="row_4_0_138_0_" style="display:none;"><td class="entry"><span style="width:64px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="structug_1_1bridge_1_1_register_domain_algebra_dependent_1_1_reg_algebra.html" target="_self">RegAlgebra</a></td><td class="desc"></td></tr>
<tr id="row_4_0_138_1_" style="display:none;"><td class="entry"><span style="width:64px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="structug_1_1bridge_1_1_register_domain_algebra_dependent_1_1_reg_end.html" target="_self">RegEnd</a></td><td class="desc"></td></tr>
<tr id="row_4_0_138_2_" style="display:none;"><td class="entry"><span style="width:64px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="structug_1_1bridge_1_1_register_domain_algebra_dependent_1_1_reg_next_domain.html" target="_self">RegNextDomain</a></td><td class="desc"></td></tr>
<tr id="row_4_0_138_3_" style="display:none;"><td class="entry"><span style="width:64px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="structug_1_1bridge_1_1_register_domain_algebra_dependent_1_1_reg_next_domain_algebra.html" target="_self">RegNextDomainAlgebra</a></td><td class="desc"></td></tr>
<tr id="row_4_0_139_" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span id="arr_4_0_139_" class="arrow" onclick="toggleFolder('4_0_139_')">►</span><span class="icona"><span class="icon">C</span></span><a class="el" href="structug_1_1bridge_1_1_register_domain_dependent.html" target="_self">RegisterDomainDependent</a></td><td class="desc"></td></tr>
<tr id="row_4_0_139_0_" style="display:none;"><td class="entry"><span style="width:64px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="structug_1_1bridge_1_1_register_domain_dependent_1_1_reg_end.html" target="_self">RegEnd</a></td><td class="desc"></td></tr>
<tr id="row_4_0_139_1_" style="display:none;"><td class="entry"><span style="width:64px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="structug_1_1bridge_1_1_register_domain_dependent_1_1_reg_next.html" target="_self">RegNext</a></td><td class="desc"></td></tr>
<tr id="row_4_0_140_" style="display:none;"><td class="entry"><span style="width:48px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="classug_1_1bridge_1_1_registry.html" target="_self">Registry</a></td><td class="desc"><a class="el" href="classug_1_1bridge_1_1_registry.html" title="Registry for functions and classes that are exported to scripts and visualizations.">Registry</a> for functions and classes that are exported to scripts and visualizations </td></tr>
<tr id="row_4_0_141_" style="display:none;"><td class="entry"><span style="width:48px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="classug_1_1bridge_1_1_smart_test.html" target="_self">SmartTest</a></td><td class="desc"><a class="el" href="classug_1_1bridge_1_1_smart_test.html" title="SmartTest is a test-class which shall only be used encapsulated in a smart-pointer.">SmartTest</a> is a test-class which shall only be used encapsulated in a smart-pointer </td></tr>
<tr id="row_4_0_142_" style="display:none;"><td class="entry"><span style="width:48px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="classug_1_1bridge_1_1_smart_test_derived.html" target="_self">SmartTestDerived</a></td><td class="desc"></td></tr>
<tr id="row_4_0_143_" style="display:none;"><td class="entry"><span style="width:48px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="classug_1_1bridge_1_1_test.html" target="_self">Test</a></td><td class="desc"></td></tr>
<tr id="row_4_0_144_" style="display:none;"><td class="entry"><span style="width:48px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="classug_1_1bridge_1_1_test_message.html" target="_self">TestMessage</a></td><td class="desc"></td></tr>
<tr id="row_4_0_145_" style="display:none;"><td class="entry"><span style="width:48px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="structug_1_1bridge_1_1_u_g___r_e_g_i_s_t_r_y___e_r_r_o_r___function_or_method_name_missing.html" target="_self">UG_REGISTRY_ERROR_FunctionOrMethodNameMissing</a></td><td class="desc">Exception throw, if method name has not been given </td></tr>
<tr id="row_4_0_146_" style="display:none;"><td class="entry"><span style="width:48px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="structug_1_1bridge_1_1_u_g_error___class_cast_failed.html" target="_self">UGError_ClassCastFailed</a></td><td class="desc"></td></tr>
<tr id="row_4_0_147_" style="display:none;"><td class="entry"><span style="width:48px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="structug_1_1bridge_1_1_u_g_registry_error.html" target="_self">UGRegistryError</a></td><td class="desc"></td></tr>
<tr id="row_4_0_148_" style="display:none;"><td class="entry"><span style="width:48px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="classug_1_1bridge_1_1_unregistered.html" target="_self">Unregistered</a></td><td class="desc"></td></tr>
<tr id="row_4_1_" style="display:none;"><td class="entry"><span style="width:16px;display:inline-block;"> </span><span id="arr_4_1_" class="arrow" onclick="toggleFolder('4_1_')">►</span><span class="icona"><span class="icon">N</span></span><a class="el" href="namespaceug_1_1detail.html" target="_self">detail</a></td><td class="desc"></td></tr>
<tr id="row_4_1_0_" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span id="arr_4_1_0_" class="arrow" onclick="toggleFolder('4_1_0_')">►</span><span class="icona"><span class="icon">N</span></span><a class="el" href="namespaceug_1_1detail_1_1quad_util.html" target="_self">quadUtil</a></td><td class="desc"></td></tr>
<tr id="row_4_1_0_0_" style="display:none;"><td class="entry"><span style="width:64px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="structug_1_1detail_1_1quad_util_1_1_edge_to_quad_info.html" target="_self">EdgeToQuadInfo</a></td><td class="desc"></td></tr>
<tr id="row_4_1_1_" style="display:none;"><td class="entry"><span style="width:48px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="classug_1_1detail_1_1bglp__vertex__descriptor.html" target="_self">bglp_vertex_descriptor</a></td><td class="desc"></td></tr>
<tr id="row_4_1_2_" style="display:none;"><td class="entry"><span style="width:48px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="structug_1_1detail_1_1_register_type_pair_functor.html" target="_self">RegisterTypePairFunctor</a></td><td class="desc"></td></tr>
<tr id="row_4_2_" style="display:none;"><td class="entry"><span style="width:16px;display:inline-block;"> </span><span id="arr_4_2_" class="arrow" onclick="toggleFolder('4_2_')">►</span><span class="icona"><span class="icon">N</span></span><a class="el" href="namespaceug_1_1fieldutil.html" target="_self">fieldutil</a></td><td class="desc"></td></tr>
<tr id="row_4_2_0_" style="display:none;"><td class="entry"><span style="width:48px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="structug_1_1fieldutil_1_1_cell.html" target="_self">Cell</a></td><td class="desc"></td></tr>
<tr id="row_4_3_" style="display:none;"><td class="entry"><span style="width:16px;display:inline-block;"> </span><span id="arr_4_3_" class="arrow" onclick="toggleFolder('4_3_')">►</span><span class="icona"><span class="icon">N</span></span><a class="el" href="namespaceug_1_1impl.html" target="_self">impl</a></td><td class="desc"></td></tr>
<tr id="row_4_3_0_" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span id="arr_4_3_0_" class="arrow" onclick="toggleFolder('4_3_0_')">►</span><span class="icona"><span class="icon">N</span></span><a class="el" href="namespaceug_1_1impl_1_1_project_vertices_to_close_edges.html" target="_self">ProjectVerticesToCloseEdges</a></td><td class="desc"></td></tr>
<tr id="row_4_3_0_0_" style="display:none;"><td class="entry"><span style="width:64px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="structug_1_1impl_1_1_project_vertices_to_close_edges_1_1_record.html" target="_self">Record</a></td><td class="desc"></td></tr>
<tr id="row_4_3_1_" style="display:none;"><td class="entry"><span style="width:48px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="structug_1_1impl_1_1_lua_table_handle__.html" target="_self">LuaTableHandle_</a></td><td class="desc"></td></tr>
<tr id="row_4_4_" style="display:none;"><td class="entry"><span style="width:16px;display:inline-block;"> </span><span id="arr_4_4_" class="arrow" onclick="toggleFolder('4_4_')">►</span><span class="icona"><span class="icon">N</span></span><a class="el" href="namespaceug_1_1node__tree.html" target="_self">node_tree</a></td><td class="desc"></td></tr>
<tr id="row_4_4_0_" style="display:none;"><td class="entry"><span style="width:48px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="classug_1_1node__tree_1_1_boxed_group_node.html" target="_self">BoxedGroupNode</a></td><td class="desc">A group node featuring a bounding box </td></tr>
<tr id="row_4_4_1_" style="display:none;"><td class="entry"><span style="width:48px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="classug_1_1node__tree_1_1_collision_edges_node.html" target="_self">CollisionEdgesNode</a></td><td class="desc">Holds index pairs defining edges </td></tr>
<tr id="row_4_4_2_" style="display:none;"><td class="entry"><span style="width:48px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="structug_1_1node__tree_1_1_collision_element_i_d.html" target="_self">CollisionElementID</a></td><td class="desc"></td></tr>
<tr id="row_4_4_3_" style="display:none;"><td class="entry"><span style="width:48px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="classug_1_1node__tree_1_1_collision_tree_root_node.html" target="_self">CollisionTreeRootNode</a></td><td class="desc">A group node featuring a bounding box and a set of points </td></tr>
<tr id="row_4_4_4_" style="display:none;"><td class="entry"><span style="width:48px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="classug_1_1node__tree_1_1_collision_triangles_node.html" target="_self">CollisionTrianglesNode</a></td><td class="desc">Holds index tuples defining triangles </td></tr>
<tr id="row_4_4_5_" style="display:none;"><td class="entry"><span style="width:48px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="classug_1_1node__tree_1_1_group_node.html" target="_self">GroupNode</a></td><td class="desc">You can group nodes using the <a class="el" href="classug_1_1node__tree_1_1_group_node.html" title="You can group nodes using the GroupNode.">GroupNode</a> </td></tr>
<tr id="row_4_4_6_" style="display:none;"><td class="entry"><span style="width:48px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="classug_1_1node__tree_1_1_node.html" target="_self">Node</a></td><td class="desc">Nodes serve as base-objects for items of wich a scene-graph consists </td></tr>
<tr id="row_4_4_7_" style="display:none;"><td class="entry"><span style="width:48px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="classug_1_1node__tree_1_1_object.html" target="_self">Object</a></td><td class="desc">An <a class="el" href="classug_1_1node__tree_1_1_object.html" title="An Object serves as the base-class for most of the polymorphic node-tree objects.">Object</a> serves as the base-class for most of the polymorphic node-tree objects </td></tr>
<tr id="row_4_4_8_" style="display:none;"><td class="entry"><span style="width:48px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="classug_1_1node__tree_1_1_traverser.html" target="_self">Traverser</a></td><td class="desc">Derivates of a <a class="el" href="classug_1_1node__tree_1_1_traverser.html" title="Derivates of a Traverser can be used to traverse a scenegraph.">Traverser</a> can be used to traverse a scenegraph </td></tr>
<tr id="row_4_4_9_" style="display:none;"><td class="entry"><span style="width:48px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="classug_1_1node__tree_1_1_traverser___collision_tree.html" target="_self">Traverser_CollisionTree</a></td><td class="desc">Enhances the <a class="el" href="classug_1_1node__tree_1_1_traverser.html" title="Derivates of a Traverser can be used to traverse a scenegraph.">Traverser</a> base-class by methods to traverse a collision tree </td></tr>
<tr id="row_4_4_10_" style="display:none;"><td class="entry"><span style="width:48px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="classug_1_1node__tree_1_1_traverser___intersect_faces.html" target="_self">Traverser_IntersectFaces</a></td><td class="desc">Traverses a node-tree and intersect a given face with the contained geometry </td></tr>
<tr id="row_4_4_11_" style="display:none;"><td class="entry"><span style="width:48px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="classug_1_1node__tree_1_1_traverser___project_point.html" target="_self">Traverser_ProjectPoint</a></td><td class="desc">Traverses a node-tree and projects a given point to the contained geometry </td></tr>
<tr id="row_4_5_" style="display:none;"><td class="entry"><span style="width:16px;display:inline-block;"> </span><span id="arr_4_5_" class="arrow" onclick="toggleFolder('4_5_')">►</span><span class="icona"><span class="icon">N</span></span><a class="el" href="namespaceug_1_1raster__kernels.html" target="_self">raster_kernels</a></td><td class="desc"></td></tr>
<tr id="row_4_5_0_" style="display:none;"><td class="entry"><span style="width:48px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="classug_1_1raster__kernels_1_1_blur.html" target="_self">Blur</a></td><td class="desc">Kernel which blurs all values of a raster it was called on </td></tr>
<tr id="row_4_5_1_" style="display:none;"><td class="entry"><span style="width:48px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="classug_1_1raster__kernels_1_1_count.html" target="_self">Count</a></td><td class="desc">Kernel which counts the number of times it was run on valid data values </td></tr>
<tr id="row_4_5_2_" style="display:none;"><td class="entry"><span style="width:48px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="classug_1_1raster__kernels_1_1_sum.html" target="_self">Sum</a></td><td class="desc">Kernel which sums the values for all entries it was called on </td></tr>
<tr id="row_4_6_" style="display:none;"><td class="entry"><span style="width:16px;display:inline-block;"> </span><span id="arr_4_6_" class="arrow" onclick="toggleFolder('4_6_')">►</span><span class="icona"><span class="icon">N</span></span><a class="el" href="namespaceug_1_1script.html" target="_self">script</a></td><td class="desc"></td></tr>
<tr id="row_4_6_0_" style="display:none;"><td class="entry"><span style="width:48px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="classug_1_1script_1_1_lua_error.html" target="_self">LuaError</a></td><td class="desc">Error class thrown if an error occurs during parsing </td></tr>
<tr id="row_4_7_" style="display:none;"><td class="entry"><span style="width:16px;display:inline-block;"> </span><span id="arr_4_7_" class="arrow" onclick="toggleFolder('4_7_')">►</span><span class="icona"><span class="icon">N</span></span><a class="el" href="namespaceug_1_1swc__types.html" target="_self">swc_types</a></td><td class="desc"></td></tr>
<tr id="row_4_7_0_" style="display:none;"><td class="entry"><span style="width:48px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="structug_1_1swc__types_1_1_s_w_c_point.html" target="_self">SWCPoint</a></td><td class="desc"></td></tr>
<tr id="row_4_8_" style="display:none;"><td class="entry"><span style="width:16px;display:inline-block;"> </span><span id="arr_4_8_" class="arrow" onclick="toggleFolder('4_8_')">►</span><span class="icona"><span class="icon">N</span></span><a class="el" href="namespaceug_1_1vrl.html" target="_self">vrl</a></td><td class="desc"></td></tr>
<tr id="row_4_8_0_" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span id="arr_4_8_0_" class="arrow" onclick="toggleFolder('4_8_0_')">►</span><span class="icona"><span class="icon">N</span></span><a class="el" href="namespaceug_1_1vrl_1_1threading.html" target="_self">threading</a></td><td class="desc"></td></tr>
<tr id="row_4_8_0_0_" style="display:none;"><td class="entry"><span style="width:64px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="classug_1_1vrl_1_1threading_1_1_j_n_i_thread_exception.html" target="_self">JNIThreadException</a></td><td class="desc"></td></tr>
<tr id="row_4_8_1_" style="display:none;"><td class="entry"><span style="width:48px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="classug_1_1vrl_1_1_basic_test.html" target="_self">BasicTest</a></td><td class="desc"></td></tr>
<tr id="row_4_8_2_" style="display:none;"><td class="entry"><span style="width:48px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="structug_1_1vrl_1_1_functionality.html" target="_self">Functionality</a></td><td class="desc"></td></tr>
<tr id="row_4_8_3_" style="display:none;"><td class="entry"><span style="width:48px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="classug_1_1vrl_1_1_message_buffer.html" target="_self">MessageBuffer</a></td><td class="desc"></td></tr>
<tr id="row_4_8_4_" style="display:none;"><td class="entry"><span style="width:48px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="classug_1_1vrl_1_1_number_array.html" target="_self">NumberArray</a></td><td class="desc"></td></tr>
<tr id="row_4_8_5_" style="display:none;"><td class="entry"><span style="width:48px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="classug_1_1vrl_1_1_print_cond_user_data2d.html" target="_self">PrintCondUserData2d</a></td><td class="desc"></td></tr>
<tr id="row_4_8_6_" style="display:none;"><td class="entry"><span style="width:48px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="classug_1_1vrl_1_1_print_user_data2d.html" target="_self">PrintUserData2d</a></td><td class="desc"></td></tr>
<tr id="row_4_8_7_" style="display:none;"><td class="entry"><span style="width:48px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="classug_1_1vrl_1_1_smart_ptr_cls.html" target="_self">SmartPtrCls</a></td><td class="desc"></td></tr>
<tr id="row_4_8_8_" style="display:none;"><td class="entry"><span style="width:48px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="classug_1_1vrl_1_1_test_class.html" target="_self">TestClass</a></td><td class="desc"></td></tr>
<tr id="row_4_8_9_" style="display:none;"><td class="entry"><span style="width:48px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="structug_1_1vrl_1_1_type_and_array.html" target="_self">TypeAndArray</a></td><td class="desc"></td></tr>
<tr id="row_4_8_10_" style="display:none;"><td class="entry"><span style="width:48px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="structug_1_1vrl_1_1vrl__traits.html" target="_self">vrl_traits</a></td><td class="desc"></td></tr>
<tr id="row_4_8_11_" style="display:none;"><td class="entry"><span style="width:48px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="structug_1_1vrl_1_1vrl__traits_3_01number_01_4.html" target="_self">vrl_traits< number ></a></td><td class="desc"></td></tr>
<tr id="row_4_8_12_" style="display:none;"><td class="entry"><span style="width:48px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="structug_1_1vrl_1_1vrl__traits_3_01ug_1_1_math_matrix_3_01dim_00_01dim_01_4_01_4.html" target="_self">vrl_traits< ug::MathMatrix< dim, dim > ></a></td><td class="desc"></td></tr>
<tr id="row_4_8_13_" style="display:none;"><td class="entry"><span style="width:48px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="structug_1_1vrl_1_1vrl__traits_3_01ug_1_1_math_vector_3_01dim_01_4_01_4.html" target="_self">vrl_traits< ug::MathVector< dim > ></a></td><td class="desc"></td></tr>
<tr id="row_4_8_14_" style="display:none;"><td class="entry"><span style="width:48px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="classug_1_1vrl_1_1_v_r_l_cond_user_number.html" target="_self">VRLCondUserNumber</a></td><td class="desc"></td></tr>
<tr id="row_4_8_15_" style="display:none;"><td class="entry"><span style="width:48px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="classug_1_1vrl_1_1_v_r_l_user_data.html" target="_self">VRLUserData</a></td><td class="desc"></td></tr>
<tr id="row_4_8_16_" style="display:none;"><td class="entry"><span style="width:48px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="classug_1_1vrl_1_1_v_r_l_user_linker.html" target="_self">VRLUserLinker</a></td><td class="desc"></td></tr>
<tr id="row_4_8_17_" style="display:none;"><td class="entry"><span style="width:48px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="classug_1_1vrl_1_1_v_test.html" target="_self">VTest</a></td><td class="desc"></td></tr>
<tr id="row_4_9_" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="structug_1_1_a_a_box.html" target="_self">AABox</a></td><td class="desc"></td></tr>
<tr id="row_4_10_" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="structug_1_1ab.html" target="_self">ab</a></td><td class="desc"></td></tr>
<tr id="row_4_11_" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="classug_1_1_absolute_marking.html" target="_self">AbsoluteMarking</a></td><td class="desc">Marks elements above an absolute threshold (based on S. Reiter's idea) </td></tr>
<tr id="row_4_12_" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="classug_1_1_active_set.html" target="_self">ActiveSet</a></td><td class="desc">Active Set method </td></tr>
<tr id="row_4_13_" style="display:none;"><td class="entry"><span style="width:16px;display:inline-block;"> </span><span id="arr_4_13_" class="arrow" onclick="toggleFolder('4_13_')">►</span><span class="icona"><span class="icon">C</span></span><a class="el" href="classug_1_1_adaption_surface_grid_function.html" target="_self">AdaptionSurfaceGridFunction</a></td><td class="desc"></td></tr>
<tr id="row_4_13_0_" style="display:none;"><td class="entry"><span style="width:48px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="classug_1_1_adaption_surface_grid_function_1_1_value_accessor.html" target="_self">ValueAccessor</a></td><td class="desc"></td></tr>
<tr id="row_4_14_" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="classug_1_1_adaptive_regular_refiner___multi_grid.html" target="_self">AdaptiveRegularRefiner_MultiGrid</a></td><td class="desc">Specialization of <a class="el" href="classug_1_1_i_refiner.html" title="The refiner interface allows to mark elements for refinement and to call refine.">IRefiner</a> for adaptive multigrid refinement with closure </td></tr>
<tr id="row_4_15_" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="structug_1_1_adjust_edge_length_desc.html" target="_self">AdjustEdgeLengthDesc</a></td><td class="desc"></td></tr>
<tr id="row_4_16_" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="classug_1_1_agglomerating_base.html" target="_self">AgglomeratingBase</a></td><td class="desc"></td></tr>
<tr id="row_4_17_" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="classug_1_1_agglomerating_iterator.html" target="_self">AgglomeratingIterator</a></td><td class="desc"></td></tr>
<tr id="row_4_18_" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="classug_1_1_agglomerating_preconditioner.html" target="_self">AgglomeratingPreconditioner</a></td><td class="desc"></td></tr>
<tr id="row_4_19_" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="classug_1_1_agglomerating_solver.html" target="_self">AgglomeratingSolver</a></td><td class="desc"></td></tr>
<tr id="row_4_20_" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="classug_1_1_algebra_debug_writer.html" target="_self">AlgebraDebugWriter</a></td><td class="desc">Debug writer for connection viewer (based on algebraic information + vector positions only) </td></tr>
<tr id="row_4_21_" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="classug_1_1_algebraic_connection.html" target="_self">AlgebraicConnection</a></td><td class="desc"></td></tr>
<tr id="row_4_22_" style="display:none;"><td class="entry"><span style="width:16px;display:inline-block;"> </span><span id="arr_4_22_" class="arrow" onclick="toggleFolder('4_22_')">►</span><span class="icona"><span class="icon">C</span></span><a class="el" href="classug_1_1_algebraic_conv_check.html" target="_self">AlgebraicConvCheck</a></td><td class="desc"></td></tr>
<tr id="row_4_22_0_" style="display:none;"><td class="entry"><span style="width:48px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="structug_1_1_algebraic_conv_check_1_1_cmp_info.html" target="_self">CmpInfo</a></td><td class="desc"></td></tr>
<tr id="row_4_23_" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="classug_1_1_algebraic_space.html" target="_self">AlgebraicSpace</a></td><td class="desc"></td></tr>
<tr id="row_4_24_" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="structug_1_1_algebra_i_d.html" target="_self">AlgebraID</a></td><td class="desc">This type is used to identify distributed objects </td></tr>
<tr id="row_4_25_" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="classug_1_1_algebra_layouts.html" target="_self">AlgebraLayouts</a></td><td class="desc">Extends the <a class="el" href="classug_1_1_horizontal_algebra_layouts.html" title="Holds Interfaces and communicators for horizontal communication.">HorizontalAlgebraLayouts</a> by vertical layouts </td></tr>
<tr id="row_4_26_" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="classug_1_1_algebra_type.html" target="_self">AlgebraType</a></td><td class="desc">Class describing the type of an algebra </td></tr>
<tr id="row_4_27_" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="classug_1_1_alpha_mat___expression.html" target="_self">AlphaMat_Expression</a></td><td class="desc"></td></tr>
<tr id="row_4_28_" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="classug_1_1_alpha_mat_vec___x___expression.html" target="_self">AlphaMatVec_X_Expression</a></td><td class="desc"></td></tr>
<tr id="row_4_29_" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="classug_1_1_alpha_vec___expression.html" target="_self">AlphaVec_Expression</a></td><td class="desc"></td></tr>
<tr id="row_4_30_" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="classug_1_1_analyzing_solver.html" target="_self">AnalyzingSolver</a></td><td class="desc"></td></tr>
<tr id="row_4_31_" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="classug_1_1_anisotropic_balance_weights.html" target="_self">AnisotropicBalanceWeights</a></td><td class="desc">The higher the volume, the higher the weight when anisotropic refinement is used.. </td></tr>
<tr id="row_4_32_" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="classug_1_1_a_posteriori_coarsening.html" target="_self">APosterioriCoarsening</a></td><td class="desc"></td></tr>
<tr id="row_4_33_" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="classug_1_1_approximation_space.html" target="_self">ApproximationSpace</a></td><td class="desc">Base class for approximation spaces without type of algebra or dof distribution </td></tr>
<tr id="row_4_34_" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="classug_1_1_archivar.html" target="_self">Archivar</a></td><td class="desc"></td></tr>
<tr id="row_4_35_" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="structug_1_1_archive_info.html" target="_self">ArchiveInfo</a></td><td class="desc">Provides custom information for different archives </td></tr>
<tr id="row_4_36_" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="structug_1_1_aspect_ratio_info.html" target="_self">AspectRatioInfo</a></td><td class="desc">Holds information on the min, max, mean, and standard deviation of a sample </td></tr>
<tr id="row_4_37_" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="classug_1_1_assembled_linear_operator.html" target="_self">AssembledLinearOperator</a></td><td class="desc">Matrix operator based on the assembling of a problem </td></tr>
<tr id="row_4_38_" style="display:none;"><td class="entry"><span style="width:16px;display:inline-block;"> </span><span id="arr_4_38_" class="arrow" onclick="toggleFolder('4_38_')">►</span><span class="icona"><span class="icon">C</span></span><a class="el" href="classug_1_1_assembled_multi_grid_cycle.html" target="_self">AssembledMultiGridCycle</a></td><td class="desc">Geometric multi grid preconditioner </td></tr>
<tr id="row_4_38_0_" style="display:none;"><td class="entry"><span style="width:48px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="structug_1_1_assembled_multi_grid_cycle_1_1_lev_data.html" target="_self">LevData</a></td><td class="desc"></td></tr>
<tr id="row_4_38_1_" style="display:none;"><td class="entry"><span style="width:48px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="structug_1_1_assembled_multi_grid_cycle_1_1_level_index.html" target="_self">LevelIndex</a></td><td class="desc"></td></tr>
<tr id="row_4_38_2_" style="display:none;"><td class="entry"><span style="width:48px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="structug_1_1_assembled_multi_grid_cycle_1_1_surf_level_map.html" target="_self">SurfLevelMap</a></td><td class="desc"></td></tr>
<tr id="row_4_39_" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="classug_1_1_assembled_operator.html" target="_self">AssembledOperator</a></td><td class="desc"></td></tr>
<tr id="row_4_40_" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="classug_1_1_assembled_transforming_smoother.html" target="_self">AssembledTransformingSmoother</a></td><td class="desc"></td></tr>
<tr id="row_4_41_" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="classug_1_1_assembling_tuner.html" target="_self">AssemblingTuner</a></td><td class="desc">The <a class="el" href="classug_1_1_assembling_tuner.html" title="The AssemblingTuner class combines tools to adapt the assembling routine.">AssemblingTuner</a> class combines tools to adapt the assembling routine </td></tr>
<tr id="row_4_42_" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="classug_1_1_assoc_elem_iter.html" target="_self">AssocElemIter</a></td><td class="desc">Iterator that allows to traverse associated elements of a given element </td></tr>
<tr id="row_4_43_" style="display:none;"><td class="entry"><span style="width:16px;display:inline-block;"> </span><span id="arr_4_43_" class="arrow" onclick="toggleFolder('4_43_')">►</span><span class="icona"><span class="icon">C</span></span><a class="el" href="classug_1_1_attached_element_list.html" target="_self">AttachedElementList</a></td><td class="desc">A linked list of elements living in an attachment </td></tr>
<tr id="row_4_43_0_" style="display:none;"><td class="entry"><span style="width:48px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="structug_1_1_attached_element_list_1_1_entry.html" target="_self">Entry</a></td><td class="desc"></td></tr>
<tr id="row_4_44_" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="classug_1_1_attached_element_list_iterator.html" target="_self">AttachedElementListIterator</a></td><td class="desc">A special iterator which allows to iterate over elements in a <a class="el" href="classug_1_1_attached_element_list.html" title="A linked list of elements living in an attachment.">AttachedElementList</a> </td></tr>
<tr id="row_4_45_" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="classug_1_1_attachment.html" target="_self">Attachment</a></td><td class="desc">A generic specialization of <a class="el" href="classug_1_1_i_attachment.html" title="the interface for attachments.">IAttachment</a> </td></tr>
<tr id="row_4_46_" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="structug_1_1attachment__info__traits.html" target="_self">attachment_info_traits</a></td><td class="desc"></td></tr>
<tr id="row_4_47_" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="structug_1_1attachment__io__traits.html" target="_self">attachment_io_traits</a></td><td class="desc"></td></tr>
<tr id="row_4_48_" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="structug_1_1attachment__io__traits_3_01_attachment_3_01bool_01_4_01_4.html" target="_self">attachment_io_traits< Attachment< bool > ></a></td><td class="desc"></td></tr>
<tr id="row_4_49_" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="structug_1_1attachment__io__traits_3_01_attachment_3_01std_1_1vector_3_01_t_01_4_01_4_01_4.html" target="_self">attachment_io_traits< Attachment< std::vector< T > > ></a></td><td class="desc">Serialization for std::vector<T> with type T - e. g. std::vector<bool> </td></tr>
<tr id="row_4_50_" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="structug_1_1attachment__io__traits_3_01_attachment_3_01vector1_01_4_01_4.html" target="_self">attachment_io_traits< Attachment< vector1 > ></a></td><td class="desc"></td></tr>
<tr id="row_4_51_" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="structug_1_1attachment__io__traits_3_01_attachment_3_01vector2_01_4_01_4.html" target="_self">attachment_io_traits< Attachment< vector2 > ></a></td><td class="desc"></td></tr>
<tr id="row_4_52_" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="structug_1_1attachment__io__traits_3_01_attachment_3_01vector3_01_4_01_4.html" target="_self">attachment_io_traits< Attachment< vector3 > ></a></td><td class="desc"></td></tr>
<tr id="row_4_53_" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="structug_1_1attachment__io__traits_3_01_attachment_3_01vector4_01_4_01_4.html" target="_self">attachment_io_traits< Attachment< vector4 > ></a></td><td class="desc"></td></tr>
<tr id="row_4_54_" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="structug_1_1attachment__reduce__traits.html" target="_self">attachment_reduce_traits</a></td><td class="desc">Methods defined in those traits are used by <a class="el" href="classug_1_1_com_pol___attachment_reduce.html" title="Performs reduce operations on the specified attachment.">ComPol_AttachmentReduce</a> </td></tr>
<tr id="row_4_55_" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="structug_1_1attachment__reduce__traits_3_01double_01_4.html" target="_self">attachment_reduce_traits< double ></a></td><td class="desc"></td></tr>
<tr id="row_4_56_" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="structug_1_1attachment__reduce__traits_3_01float_01_4.html" target="_self">attachment_reduce_traits< float ></a></td><td class="desc"></td></tr>
<tr id="row_4_57_" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="structug_1_1attachment__reduce__traits_3_01_math_vector_3_011_01_4_01_4.html" target="_self">attachment_reduce_traits< MathVector< 1 > ></a></td><td class="desc"></td></tr>
<tr id="row_4_58_" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="structug_1_1attachment__reduce__traits_3_01_math_vector_3_012_01_4_01_4.html" target="_self">attachment_reduce_traits< MathVector< 2 > ></a></td><td class="desc"></td></tr>
<tr id="row_4_59_" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="structug_1_1attachment__reduce__traits_3_01_math_vector_3_013_01_4_01_4.html" target="_self">attachment_reduce_traits< MathVector< 3 > ></a></td><td class="desc"></td></tr>
<tr id="row_4_60_" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="structug_1_1attachment__reduce__traits_3_01_math_vector_3_014_01_4_01_4.html" target="_self">attachment_reduce_traits< MathVector< 4 > ></a></td><td class="desc"></td></tr>
<tr id="row_4_61_" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="structug_1_1attachment__reduce__traits_3_01std_1_1vector_3_01number_01_4_01_4.html" target="_self">attachment_reduce_traits< std::vector< number > ></a></td><td class="desc"></td></tr>
<tr id="row_4_62_" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="classug_1_1attachment__traits.html" target="_self">attachment_traits</a></td><td class="desc">Define the interface that enables you to use your own types as element-types in an <a class="el" href="classug_1_1_attachment_pipe.html" title="Handles data which has been attached to the pipe using callbacks for the element.">AttachmentPipe</a> </td></tr>
<tr id="row_4_63_" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="classug_1_1attachment__traits_3_01_edge_01_5_00_01_element_storage_3_01_edge_01_4_01_4.html" target="_self">attachment_traits< Edge *, ElementStorage< Edge > ></a></td><td class="desc"></td></tr>
<tr id="row_4_64_" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="classug_1_1attachment__traits_3_01_face_01_5_00_01_element_storage_3_01_face_01_4_01_4.html" target="_self">attachment_traits< Face *, ElementStorage< Face > ></a></td><td class="desc"></td></tr>
<tr id="row_4_65_" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="classug_1_1attachment__traits_3_01_vertex_01_5_00_01_element_storage_3_01_vertex_01_4_01_4.html" target="_self">attachment_traits< Vertex *, ElementStorage< Vertex > ></a></td><td class="desc"></td></tr>
<tr id="row_4_66_" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="classug_1_1attachment__traits_3_01_volume_01_5_00_01_element_storage_3_01_volume_01_4_01_4.html" target="_self">attachment_traits< Volume *, ElementStorage< Volume > ></a></td><td class="desc"></td></tr>
<tr id="row_4_67_" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="structug_1_1attachment__value__traits.html" target="_self">attachment_value_traits</a></td><td class="desc">Define reference and const reference types for attachment values </td></tr>
<tr id="row_4_68_" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="structug_1_1attachment__value__traits_3_01bool_01_4.html" target="_self">attachment_value_traits< bool ></a></td><td class="desc">Specialization of <a class="el" href="structug_1_1attachment__value__traits.html" title="define reference and const reference types for attachment values.">attachment_value_traits</a> for the bool type </td></tr>
<tr id="row_4_69_" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="classug_1_1_attachment_accessor.html" target="_self">AttachmentAccessor</a></td><td class="desc">Used to access data that has been attached to an attachment pipe </td></tr>
<tr id="row_4_70_" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="classug_1_1_attachment_data_container.html" target="_self">AttachmentDataContainer</a></td><td class="desc">A generic specialization of IAttachedDataContainer </td></tr>
<tr id="row_4_71_" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="structug_1_1_attachment_entry.html" target="_self">AttachmentEntry</a></td><td class="desc">This struct is used by <a class="el" href="classug_1_1_attachment_pipe.html" title="Handles data which has been attached to the pipe using callbacks for the element.">AttachmentPipe</a> in order to manage its attachments </td></tr>
<tr id="row_4_72_" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="classug_1_1_attachment_pipe.html" target="_self">AttachmentPipe</a></td><td class="desc">Handles data which has been attached to the pipe using callbacks for the element </td></tr>
<tr id="row_4_73_" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="classug_1_1_attachment_unequal.html" target="_self">AttachmentUnequal</a></td><td class="desc">This class can be used in Element callbacks </td></tr>
<tr id="row_4_74_" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="classug_1_1_auto_linear_solver.html" target="_self">AutoLinearSolver</a></td><td class="desc">Linear solver using abstract preconditioner interface </td></tr>
<tr id="row_4_75_" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="classug_1_1_average_component.html" target="_self">AverageComponent</a></td><td class="desc"></td></tr>
<tr id="row_4_76_" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="classug_1_1_backward_gauss_seidel.html" target="_self">BackwardGaussSeidel</a></td><td class="desc">Gauss-Seidel preconditioner for the 'backward' ordering of the dofs </td></tr>
<tr id="row_4_77_" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="classug_1_1_balance_weights_lua_callback.html" target="_self">BalanceWeightsLuaCallback</a></td><td class="desc"></td></tr>
<tr id="row_4_78_" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="classug_1_1_balance_weights_ref_marks.html" target="_self">BalanceWeightsRefMarks</a></td><td class="desc"></td></tr>
<tr id="row_4_79_" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="classug_1_1_base64_file_writer.html" target="_self">Base64FileWriter</a></td><td class="desc">File writer allowing selective base64 encoding of arbitrary data </td></tr>
<tr id="row_4_80_" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="classug_1_1_base_l_s_f_s.html" target="_self">BaseLSFS</a></td><td class="desc">Static interface for trial spaces </td></tr>
<tr id="row_4_81_" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="classug_1_1_base_reference_mapping.html" target="_self">BaseReferenceMapping</a></td><td class="desc">Base class for Reference mappings helping to implement interface </td></tr>
<tr id="row_4_82_" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="classug_1_1_b_d_f.html" target="_self">BDF</a></td><td class="desc"></td></tr>
<tr id="row_4_83_" style="display:none;"><td class="entry"><span style="width:16px;display:inline-block;"> </span><span id="arr_4_83_" class="arrow" onclick="toggleFolder('4_83_')">►</span><span class="icona"><span class="icon">C</span></span><a class="el" href="classug_1_1_b_g_l_parallel_matrix.html" target="_self">BGLParallelMatrix</a></td><td class="desc"></td></tr>
<tr id="row_4_83_0_" style="display:none;"><td class="entry"><span style="width:48px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="classug_1_1_b_g_l_parallel_matrix_1_1adjacency__iterator.html" target="_self">adjacency_iterator</a></td><td class="desc"></td></tr>
<tr id="row_4_83_1_" style="display:none;"><td class="entry"><span style="width:48px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="classug_1_1_b_g_l_parallel_matrix_1_1edge.html" target="_self">edge</a></td><td class="desc"></td></tr>
<tr id="row_4_83_2_" style="display:none;"><td class="entry"><span style="width:48px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="structug_1_1_b_g_l_parallel_matrix_1_1filter__local.html" target="_self">filter_local</a></td><td class="desc"></td></tr>
<tr id="row_4_83_3_" style="display:none;"><td class="entry"><span style="width:48px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="classug_1_1_b_g_l_parallel_matrix_1_1out__edge__iterator.html" target="_self">out_edge_iterator</a></td><td class="desc"></td></tr>
<tr id="row_4_83_4_" style="display:none;"><td class="entry"><span style="width:48px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="classug_1_1_b_g_l_parallel_matrix_1_1vertex__iterator__.html" target="_self">vertex_iterator_</a></td><td class="desc"></td></tr>
<tr id="row_4_84_" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="classug_1_1_bi_c_g_stab.html" target="_self">BiCGStab</a></td><td class="desc"><a class="el" href="classug_1_1_bi_c_g_stab.html" title="the BiCGStab method as a solver for linear operators">BiCGStab</a> method as a solver for linear operators </td></tr>
<tr id="row_4_85_" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="classug_1_1_bidirectional_matrix.html" target="_self">BidirectionalMatrix</a></td><td class="desc"></td></tr>
<tr id="row_4_86_" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="classug_1_1_binary_buffer.html" target="_self">BinaryBuffer</a></td><td class="desc">A Buffer for binary data </td></tr>
<tr id="row_4_87_" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="classug_1_1_binary_stream.html" target="_self">BinaryStream</a></td><td class="desc">Specialzation of std::iostream, that uses a </td></tr>
<tr id="row_4_88_" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="classug_1_1_binary_stream_buffer.html" target="_self">BinaryStreamBuffer</a></td><td class="desc">A special version of a std::streambuf, writes data directly into a buffer that is accessible at any time </td></tr>
<tr id="row_4_89_" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="classug_1_1_bingham_viscosity_linker.html" target="_self">BinghamViscosityLinker</a></td><td class="desc">Linker for the Bingham viscosity </td></tr>
<tr id="row_4_90_" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="structug_1_1_binomial_coefficient.html" target="_self">BinomialCoefficient</a></td><td class="desc"></td></tr>
<tr id="row_4_91_" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="structug_1_1_binomial_coefficient_3_01n_00_010_01_4.html" target="_self">BinomialCoefficient< n, 0 ></a></td><td class="desc"></td></tr>
<tr id="row_4_92_" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="structug_1_1_binomial_coefficient_3_01n_00-1_01_4.html" target="_self">BinomialCoefficient< n,-1 ></a></td><td class="desc"></td></tr>
<tr id="row_4_93_" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="structug_1_1_binomial_coefficient_3_01n_00-2_01_4.html" target="_self">BinomialCoefficient< n,-2 ></a></td><td class="desc"></td></tr>
<tr id="row_4_94_" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="structug_1_1_binomial_coefficient_3_01n_00-3_01_4.html" target="_self">BinomialCoefficient< n,-3 ></a></td><td class="desc"></td></tr>
<tr id="row_4_95_" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="structug_1_1_binomial_coefficient_3_01n_00-4_01_4.html" target="_self">BinomialCoefficient< n,-4 ></a></td><td class="desc"></td></tr>
<tr id="row_4_96_" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="structug_1_1block__multiply__traits.html" target="_self">block_multiply_traits</a></td><td class="desc"></td></tr>
<tr id="row_4_97_" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="structug_1_1block__multiply__traits_3_01_dense_matrix_3_01_t_01_4_00_01_dense_matrix_3_01_t_01_4_01_4.html" target="_self">block_multiply_traits< DenseMatrix< T >, DenseMatrix< T > ></a></td><td class="desc"></td></tr>
<tr id="row_4_98_" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="structug_1_1block__multiply__traits_3_01_dense_matrix_3_01_t1_01_4_00_01_dense_vector_3_01_t2_01_4_01_4.html" target="_self">block_multiply_traits< DenseMatrix< T1 >, DenseVector< T2 > ></a></td><td class="desc"></td></tr>
<tr id="row_4_99_" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="structug_1_1block__multiply__traits_3_01number_00_01number_01_4.html" target="_self">block_multiply_traits< number, number ></a></td><td class="desc"></td></tr>
<tr id="row_4_100_" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="structug_1_1block__multiply__traits_3_01number_00_01_t_01_4.html" target="_self">block_multiply_traits< number, T ></a></td><td class="desc"></td></tr>
<tr id="row_4_101_" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="structug_1_1block__multiply__traits_3_01_t_00_01number_01_4.html" target="_self">block_multiply_traits< T, number ></a></td><td class="desc"></td></tr>
<tr id="row_4_102_" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="structug_1_1block__multiply__traits_3_01_t1_00_01_t2_01_4.html" target="_self">block_multiply_traits< T1, T2 ></a></td><td class="desc"></td></tr>
<tr id="row_4_103_" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="structug_1_1block__traits.html" target="_self">block_traits</a></td><td class="desc"></td></tr>
<tr id="row_4_104_" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="structug_1_1block__traits_3_01_dense_matrix_3_01_fixed_array2_3_01number_00_011_00_011_00_01_t_ordering_01_4_01_4_01_4.html" target="_self">block_traits< DenseMatrix< FixedArray2< number, 1, 1, TOrdering > > ></a></td><td class="desc"></td></tr>
<tr id="row_4_105_" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="structug_1_1block__traits_3_01_dense_matrix_3_01_fixed_array2_3_01number_00_012_00_012_00_01_t_ordering_01_4_01_4_01_4.html" target="_self">block_traits< DenseMatrix< FixedArray2< number, 2, 2, TOrdering > > ></a></td><td class="desc"></td></tr>
<tr id="row_4_106_" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="structug_1_1block__traits_3_01_dense_matrix_3_01_fixed_array2_3_01number_00_013_00_013_00_01_t_ordering_01_4_01_4_01_4.html" target="_self">block_traits< DenseMatrix< FixedArray2< number, 3, 3, TOrdering > > ></a></td><td class="desc"></td></tr>
<tr id="row_4_107_" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="structug_1_1block__traits_3_01_dense_matrix_3_01_fixed_array2_3_01number_00_01_t_block_size_00_0d4e2b908bb1593218469e02e34c65762.html" target="_self">block_traits< DenseMatrix< FixedArray2< number, TBlockSize, TBlockSize, TOrdering > > ></a></td><td class="desc"></td></tr>
<tr id="row_4_108_" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="structug_1_1block__traits_3_01_dense_matrix_3_01_fixed_array2_3_01_t_value_00_01_t_block_size_003b3497658e29301f472335cdb0d5a239.html" target="_self">block_traits< DenseMatrix< FixedArray2< TValue, TBlockSize, TBlockSize, TOrdering > > ></a></td><td class="desc"></td></tr>
<tr id="row_4_109_" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="structug_1_1block__traits_3_01_dense_matrix_3_01_t_01_4_01_4.html" target="_self">block_traits< DenseMatrix< T > ></a></td><td class="desc"></td></tr>
<tr id="row_4_110_" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="structug_1_1block__traits_3_01_dense_matrix_3_01_variable_array2_3_01number_00_01_t_ordering_01_4_01_4_01_4.html" target="_self">block_traits< DenseMatrix< VariableArray2< number, TOrdering > > ></a></td><td class="desc"></td></tr>
<tr id="row_4_111_" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="structug_1_1block__traits_3_01_dense_matrix_3_01_variable_array2_3_01_t_value_00_01_t_ordering_01_4_01_4_01_4.html" target="_self">block_traits< DenseMatrix< VariableArray2< TValue, TOrdering > > ></a></td><td class="desc"></td></tr>
<tr id="row_4_112_" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="structug_1_1block__traits_3_01_dense_vector_3_01_t_01_4_01_4.html" target="_self">block_traits< DenseVector< T > ></a></td><td class="desc"></td></tr>
<tr id="row_4_113_" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="structug_1_1block__traits_3_01number_01_4.html" target="_self">block_traits< number ></a></td><td class="desc"></td></tr>
<tr id="row_4_114_" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="structug_1_1block__traits_3_01_t_01_4.html" target="_self">block_traits< T ></a></td><td class="desc"></td></tr>
<tr id="row_4_115_" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="structug_1_1block__traits_3_01vector_3_01int_01_4_01_4.html" target="_self">block_traits< vector< int > ></a></td><td class="desc">Vector<int> has a variable size </td></tr>
<tr id="row_4_116_" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="classug_1_1_block_gauss_seidel.html" target="_self">BlockGaussSeidel</a></td><td class="desc"></td></tr>
<tr id="row_4_117_" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="classug_1_1_block_gauss_seidel_iterative.html" target="_self">BlockGaussSeidelIterative</a></td><td class="desc"></td></tr>
<tr id="row_4_118_" style="display:none;"><td class="entry"><span style="width:16px;display:inline-block;"> </span><span id="arr_4_118_" class="arrow" onclick="toggleFolder('4_118_')">►</span><span class="icona"><span class="icon">C</span></span><a class="el" href="classug_1_1_block_slice_index_view.html" target="_self">BlockSliceIndexView</a></td><td class="desc"></td></tr>
<tr id="row_4_118_0_" style="display:none;"><td class="entry"><span style="width:48px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="structug_1_1_block_slice_index_view_1_1iterator.html" target="_self">iterator</a></td><td class="desc"></td></tr>
<tr id="row_4_119_" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="classug_1_1_b_o_o_l.html" target="_self">BOOL</a></td><td class="desc"></td></tr>
<tr id="row_4_120_" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="classug_1_1_bool_marker.html" target="_self">BoolMarker</a></td><td class="desc">Allows to mark elements </td></tr>
<tr id="row_4_121_" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="classug_1_1_boost_cuthill_mc_kee_ordering.html" target="_self">BoostCuthillMcKeeOrdering</a></td><td class="desc"></td></tr>
<tr id="row_4_122_" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="classug_1_1_boost_minimum_degree_ordering.html" target="_self">BoostMinimumDegreeOrdering</a></td><td class="desc"></td></tr>
<tr id="row_4_123_" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="classug_1_1_bounded_equidistant_lagrange1_d.html" target="_self">BoundedEquidistantLagrange1D</a></td><td class="desc"></td></tr>
<tr id="row_4_124_" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="classug_1_1_box_priority_queue.html" target="_self">BoxPriorityQueue</a></td><td class="desc">Updateable priority queue class. this priority queue works on an external array of elements T </td></tr>
<tr id="row_4_125_" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="classug_1_1_box_priority_queue2.html" target="_self">BoxPriorityQueue2</a></td><td class="desc">Updateable priority queue class. this priority queue works on an external array of elements T </td></tr>
<tr id="row_4_126_" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="structug_1_1_cell_idx.html" target="_self">CellIdx</a></td><td class="desc"></td></tr>
<tr id="row_4_127_" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="classug_1_1_c_g.html" target="_self">CG</a></td><td class="desc"><a class="el" href="classug_1_1_c_g.html" title="the CG method as a solver for linear operators">CG</a> method as a solver for linear operators </td></tr>
<tr id="row_4_128_" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="classug_1_1cgraph.html" target="_self">cgraph</a></td><td class="desc"></td></tr>
<tr id="row_4_129_" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="structug_1_1_chain_info.html" target="_self">ChainInfo</a></td><td class="desc"></td></tr>
<tr id="row_4_130_" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="classug_1_1_cluster_element_stacks.html" target="_self">ClusterElementStacks</a></td><td class="desc"></td></tr>
<tr id="row_4_131_" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="classug_1_1_cmp_vrts_by_hash.html" target="_self">CmpVrtsByHash</a></td><td class="desc">Can be used to compare vertices of their grids through their hash-value </td></tr>
<tr id="row_4_132_" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="classug_1_1_combined_linear_iterator.html" target="_self">CombinedLinearIterator</a></td><td class="desc"></td></tr>
<tr id="row_4_133_" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="classug_1_1_common_local_do_f_set.html" target="_self">CommonLocalDoFSet</a></td><td class="desc"></td></tr>
<tr id="row_4_134_" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="classug_1_1_communication_scheme.html" target="_self">CommunicationScheme</a></td><td class="desc">CRTP Base class for communications on layout/interfaces </td></tr>
<tr id="row_4_135_" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="classug_1_1_communication_scheme_3_01_t_derived_00_01bool_01_4.html" target="_self">CommunicationScheme< TDerived, bool ></a></td><td class="desc">CRTP Base class for communications on layout/interfaces </td></tr>
<tr id="row_4_136_" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="classug_1_1_compare_by_attachment.html" target="_self">CompareByAttachment</a></td><td class="desc">Instances can be used as compare operators, e.g., for std::sort </td></tr>
<tr id="row_4_137_" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="structug_1_1_compare_degree.html" target="_self">CompareDegree</a></td><td class="desc">Help class to provide compare operator for indices based on their degree </td></tr>
<tr id="row_4_138_" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="classug_1_1_com_pol___adjust_type.html" target="_self">ComPol_AdjustType</a></td><td class="desc"></td></tr>
<tr id="row_4_139_" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="classug_1_1_com_pol___attachment_reduce.html" target="_self">ComPol_AttachmentReduce</a></td><td class="desc">Performs reduce operations on the specified attachment </td></tr>
<tr id="row_4_140_" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="classug_1_1_com_pol___bool_marker___add_marks.html" target="_self">ComPol_BoolMarker_AddMarks</a></td><td class="desc">Adds marking at extracting side </td></tr>
<tr id="row_4_141_" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="classug_1_1_com_pol___bool_marker___remove_marks.html" target="_self">ComPol_BoolMarker_RemoveMarks</a></td><td class="desc">Removes marks at extracting side, if no mark was received </td></tr>
<tr id="row_4_142_" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="classug_1_1_com_pol___broadcast_coarsen_marks.html" target="_self">ComPol_BroadcastCoarsenMarks</a></td><td class="desc"></td></tr>
<tr id="row_4_143_" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="classug_1_1_com_pol___broadcast_refine_marks.html" target="_self">ComPol_BroadcastRefineMarks</a></td><td class="desc"></td></tr>
<tr id="row_4_144_" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="classug_1_1_com_pol___check_consistency.html" target="_self">ComPol_CheckConsistency</a></td><td class="desc">Communication Policy to check consistency of a vector </td></tr>
<tr id="row_4_145_" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="classug_1_1_com_pol___check_distributed_parent_states.html" target="_self">ComPol_CheckDistributedParentStates</a></td><td class="desc"></td></tr>
<tr id="row_4_146_" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="classug_1_1_com_pol___copy_attachment.html" target="_self">ComPol_CopyAttachment</a></td><td class="desc">Copies values from a specified attachment to a stream and back </td></tr>
<tr id="row_4_147_" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="classug_1_1_com_pol___enable_selection_state_bits.html" target="_self">ComPol_EnableSelectionStateBits</a></td><td class="desc"></td></tr>
<tr id="row_4_148_" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="classug_1_1_com_pol___gather_surface_states.html" target="_self">ComPol_GatherSurfaceStates</a></td><td class="desc">Adds marking at extracting side </td></tr>
<tr id="row_4_149_" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="classug_1_1_com_pol___gather_vec_attachment.html" target="_self">ComPol_GatherVecAttachment</a></td><td class="desc">Gathers the values stored in vector-attachments </td></tr>
<tr id="row_4_150_" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="classug_1_1_com_pol___interface_status.html" target="_self">ComPol_InterfaceStatus</a></td><td class="desc">Exchanges information on the interface-status of connected elements </td></tr>
<tr id="row_4_151_" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="classug_1_1_com_pol___mat_add_rows_overlap0.html" target="_self">ComPol_MatAddRowsOverlap0</a></td><td class="desc">Communication Policy to copy slave couplings to master row </td></tr>
<tr id="row_4_152_" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="classug_1_1_com_pol___mat_add_set_zero_inner_interface_couplings.html" target="_self">ComPol_MatAddSetZeroInnerInterfaceCouplings</a></td><td class="desc">Comm-Pol to add matrix rows of inner-interface couplings </td></tr>
<tr id="row_4_153_" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="classug_1_1_com_pol___mat_copy_diag.html" target="_self">ComPol_MatCopyDiag</a></td><td class="desc"></td></tr>
<tr id="row_4_154_" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="classug_1_1_com_pol___mat_copy_rows_overlap0.html" target="_self">ComPol_MatCopyRowsOverlap0</a></td><td class="desc">Communication Policy to copy couplings between interfaces </td></tr>
<tr id="row_4_155_" style="display:none;"><td class="entry"><span style="width:16px;display:inline-block;"> </span><span id="arr_4_155_" class="arrow" onclick="toggleFolder('4_155_')">►</span><span class="icona"><span class="icon">C</span></span><a class="el" href="classug_1_1_com_pol___mat_create_overlap.html" target="_self">ComPol_MatCreateOverlap</a></td><td class="desc">Highly specialized communication policy for matrix overlap creation </td></tr>
<tr id="row_4_155_0_" style="display:none;"><td class="entry"><span style="width:48px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="structug_1_1_com_pol___mat_create_overlap_1_1_ext_con.html" target="_self">ExtCon</a></td><td class="desc"></td></tr>
<tr id="row_4_156_" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="classug_1_1_com_pol___mat_distribute_diag.html" target="_self">ComPol_MatDistributeDiag</a></td><td class="desc">Communication Policy sending fractions to </td></tr>
<tr id="row_4_157_" style="display:none;"><td class="entry"><span style="width:16px;display:inline-block;"> </span><span id="arr_4_157_" class="arrow" onclick="toggleFolder('4_157_')">►</span><span class="icona"><span class="icon">C</span></span><a class="el" href="classug_1_1_com_pol___new_constrained_verticals.html" target="_self">ComPol_NewConstrainedVerticals</a></td><td class="desc"></td></tr>
<tr id="row_4_157_0_" style="display:none;"><td class="entry"><span style="width:48px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="structug_1_1_com_pol___new_constrained_verticals_1_1_entry.html" target="_self">Entry</a></td><td class="desc"></td></tr>
<tr id="row_4_158_" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="classug_1_1_com_pol___selection.html" target="_self">ComPol_Selection</a></td><td class="desc"></td></tr>
<tr id="row_4_159_" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="classug_1_1_com_pol___subset.html" target="_self">ComPol_Subset</a></td><td class="desc"></td></tr>
<tr id="row_4_160_" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="classug_1_1_com_pol___synchronize_dist_infos.html" target="_self">ComPol_SynchronizeDistInfos</a></td><td class="desc">Communicates the distribution infos through existing interfaces </td></tr>
<tr id="row_4_161_" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="classug_1_1_com_pol___vec_add.html" target="_self">ComPol_VecAdd</a></td><td class="desc">Communication Policy to add values of a vector </td></tr>
<tr id="row_4_162_" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="classug_1_1_com_pol___vec_add_set_zero.html" target="_self">ComPol_VecAddSetZero</a></td><td class="desc">Communication Policy to add values of a vector and reset value to zero on sending interface </td></tr>
<tr id="row_4_163_" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="classug_1_1_com_pol___vec_copy.html" target="_self">ComPol_VecCopy</a></td><td class="desc">Communication Policy to copy values of a vector </td></tr>
<tr id="row_4_164_" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="classug_1_1_com_pol___vec_scale_add.html" target="_self">ComPol_VecScaleAdd</a></td><td class="desc">Communication Policy to add values of a vector </td></tr>
<tr id="row_4_165_" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="classug_1_1_com_pol___vec_scale_copy.html" target="_self">ComPol_VecScaleCopy</a></td><td class="desc">Communication Policy to copy scaled values of a vector </td></tr>
<tr id="row_4_166_" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="classug_1_1_com_pol___vec_subtract.html" target="_self">ComPol_VecSubtract</a></td><td class="desc">Communication Policy to subtract values of a vector </td></tr>
<tr id="row_4_167_" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="classug_1_1_com_pol___vec_subtract_only_one_slave.html" target="_self">ComPol_VecSubtractOnlyOneSlave</a></td><td class="desc">Communication Policy to subtract only one slave value per master of a vector </td></tr>
<tr id="row_4_168_" style="display:none;"><td class="entry"><span style="width:16px;display:inline-block;"> </span><span id="arr_4_168_" class="arrow" onclick="toggleFolder('4_168_')">►</span><span class="icona"><span class="icon">C</span></span><a class="el" href="classug_1_1_component_gauss_seidel.html" target="_self">ComponentGaussSeidel</a></td><td class="desc"><a class="el" href="classug_1_1_component_gauss_seidel.html" title="ComponentGaussSeidel Preconditioner.">ComponentGaussSeidel</a> Preconditioner </td></tr>
<tr id="row_4_168_0_" style="display:none;"><td class="entry"><span style="width:48px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="structug_1_1_component_gauss_seidel_1_1_dim_cache.html" target="_self">DimCache</a></td><td class="desc"></td></tr>
<tr id="row_4_169_" style="display:none;"><td class="entry"><span style="width:16px;display:inline-block;"> </span><span id="arr_4_169_" class="arrow" onclick="toggleFolder('4_169_')">►</span><span class="icona"><span class="icon">C</span></span><a class="el" href="classug_1_1_composite_conv_check.html" target="_self">CompositeConvCheck</a></td><td class="desc"></td></tr>
<tr id="row_4_169_0_" style="display:none;"><td class="entry"><span style="width:48px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="structug_1_1_composite_conv_check_1_1_cmp_info.html" target="_self">CmpInfo</a></td><td class="desc"></td></tr>
<tr id="row_4_169_1_" style="display:none;"><td class="entry"><span style="width:48px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="structug_1_1_composite_conv_check_1_1_nativ_cmp_info.html" target="_self">NativCmpInfo</a></td><td class="desc"></td></tr>
<tr id="row_4_170_" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="classug_1_1_composite_space.html" target="_self">CompositeSpace</a></td><td class="desc">Defines a composite space, (i.e., additive composition from other spaces) </td></tr>
<tr id="row_4_171_" style="display:none;"><td class="entry"><span style="width:16px;display:inline-block;"> </span><span id="arr_4_171_" class="arrow" onclick="toggleFolder('4_171_')">►</span><span class="icona"><span class="icon">C</span></span><a class="el" href="classug_1_1_composite_time_discretization.html" target="_self">CompositeTimeDiscretization</a></td><td class="desc">Combine several time discretizations into one </td></tr>
<tr id="row_4_171_0_" style="display:none;"><td class="entry"><span style="width:48px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="classug_1_1_composite_time_discretization_1_1_composite_ass_tuner.html" target="_self">CompositeAssTuner</a></td><td class="desc"></td></tr>
<tr id="row_4_172_" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="classug_1_1_composite_user_data.html" target="_self">CompositeUserData</a></td><td class="desc">This is a compositum for user data defined on different subsets </td></tr>
<tr id="row_4_173_" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="structug_1_1_connected_to_one_marked_vrt.html" target="_self">ConnectedToOneMarkedVrt</a></td><td class="desc"></td></tr>
<tr id="row_4_174_" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="classug_1_1_consider_all.html" target="_self">ConsiderAll</a></td><td class="desc">Callback that always returns true </td></tr>
<tr id="row_4_175_" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="classug_1_1_consider_none.html" target="_self">ConsiderNone</a></td><td class="desc">Callback that always returns false </td></tr>
<tr id="row_4_176_" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="classug_1_1_consistency_check_class.html" target="_self">ConsistencyCheckClass</a></td><td class="desc"></td></tr>
<tr id="row_4_177_" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="classug_1_1_consistency_check_class_send.html" target="_self">ConsistencyCheckClassSend</a></td><td class="desc"></td></tr>
<tr id="row_4_178_" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="classug_1_1_consistency_check_class_send_3_01_t_vec_00_01bool_01_4.html" target="_self">ConsistencyCheckClassSend< TVec, bool ></a></td><td class="desc"></td></tr>
<tr id="row_4_179_" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="classug_1_1const__local_matrix__from__mat__and__array.html" target="_self">const_localMatrix_from_mat_and_array</a></td><td class="desc"></td></tr>
<tr id="row_4_180_" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="classug_1_1const__ntree__element__iterator.html" target="_self">const_ntree_element_iterator</a></td><td class="desc">This iterator is used by the ntree class to provide access to the elements of a given node </td></tr>
<tr id="row_4_181_" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="classug_1_1_constant_damping.html" target="_self">ConstantDamping</a></td><td class="desc">Constant damping factor </td></tr>
<tr id="row_4_182_" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="classug_1_1_const_attached_element_list_iterator.html" target="_self">ConstAttachedElementListIterator</a></td><td class="desc">A special iterator which allows to iterate over elements in a <a class="el" href="classug_1_1_attached_element_list.html" title="A linked list of elements living in an attachment.">AttachedElementList</a> </td></tr>
<tr id="row_4_183_" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="classug_1_1_const_generic_grid_object_iterator.html" target="_self">ConstGenericGridObjectIterator</a></td><td class="desc">Use this class as a tool to create const_iterators to your own geometric objects </td></tr>
<tr id="row_4_184_" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="classug_1_1_const_matrix_row.html" target="_self">ConstMatrixRow</a></td><td class="desc"></td></tr>
<tr id="row_4_185_" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="classug_1_1_constrained_edge.html" target="_self">ConstrainedEdge</a></td><td class="desc">This edge is a sub-edge of a </td></tr>
<tr id="row_4_186_" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="classug_1_1_constrained_face.html" target="_self">ConstrainedFace</a></td><td class="desc">This class stores the constraining object </td></tr>
<tr id="row_4_187_" style="display:none;"><td class="entry"><span style="width:16px;display:inline-block;"> </span><span id="arr_4_187_" class="arrow" onclick="toggleFolder('4_187_')">►</span><span class="icona"><span class="icon">C</span></span><a class="el" href="classug_1_1_constrained_linear_iterator.html" target="_self">ConstrainedLinearIterator</a></td><td class="desc"></td></tr>
<tr id="row_4_187_0_" style="display:none;"><td class="entry"><span style="width:48px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="structug_1_1_constrained_linear_iterator_1_1apply__update__defect__impl.html" target="_self">apply_update_defect_impl</a></td><td class="desc"></td></tr>
<tr id="row_4_187_1_" style="display:none;"><td class="entry"><span style="width:48px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="structug_1_1_constrained_linear_iterator_1_1apply__update__defect__impl_3_01_s_00_01typename_01b310bc2fcf5ee106b57194deac7e3da2e.html" target="_self">apply_update_defect_impl< S, typename boost::enable_if< boost::is_base_of< IPreconditioner< TAlgebra >, S > >::type ></a></td><td class="desc"></td></tr>
<tr id="row_4_188_" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="classug_1_1_constrained_quadrilateral.html" target="_self">ConstrainedQuadrilateral</a></td><td class="desc"><a class="el" href="classug_1_1_quadrilateral.html" title="a face with four points.">Quadrilateral</a> constrained by another object </td></tr>
<tr id="row_4_189_" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="classug_1_1_constrained_triangle.html" target="_self">ConstrainedTriangle</a></td><td class="desc"><a class="el" href="classug_1_1_triangle.html" title="the most simple form of a face">Triangle</a> constrained by another object </td></tr>
<tr id="row_4_190_" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="classug_1_1_constrained_vertex.html" target="_self">ConstrainedVertex</a></td><td class="desc">A vertex appearing on edges or faces </td></tr>
<tr id="row_4_191_" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="classug_1_1_constraining_edge.html" target="_self">ConstrainingEdge</a></td><td class="desc">Elements of type </td></tr>
<tr id="row_4_192_" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="classug_1_1_constraining_face.html" target="_self">ConstrainingFace</a></td><td class="desc">This class is used to store constrained geometric objects </td></tr>
<tr id="row_4_193_" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="classug_1_1_constraining_quadrilateral.html" target="_self">ConstrainingQuadrilateral</a></td><td class="desc"><a class="el" href="classug_1_1_quadrilateral.html" title="a face with four points.">Quadrilateral</a> constraining other objects </td></tr>
<tr id="row_4_194_" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="classug_1_1_constraining_triangle.html" target="_self">ConstrainingTriangle</a></td><td class="desc"><a class="el" href="classug_1_1_triangle.html" title="the most simple form of a face">Triangle</a> constraining other objects </td></tr>
<tr id="row_4_195_" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="structug_1_1constraint__traits.html" target="_self">constraint_traits</a></td><td class="desc"></td></tr>
<tr id="row_4_196_" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="structug_1_1constraint__traits_3_01_edge_01_4.html" target="_self">constraint_traits< Edge ></a></td><td class="desc"></td></tr>
<tr id="row_4_197_" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="structug_1_1constraint__traits_3_01_face_01_4.html" target="_self">constraint_traits< Face ></a></td><td class="desc"></td></tr>
<tr id="row_4_198_" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="structug_1_1constraint__traits_3_01_quadrilateral_01_4.html" target="_self">constraint_traits< Quadrilateral ></a></td><td class="desc"></td></tr>
<tr id="row_4_199_" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="structug_1_1constraint__traits_3_01_triangle_01_4.html" target="_self">constraint_traits< Triangle ></a></td><td class="desc"></td></tr>
<tr id="row_4_200_" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="structug_1_1constraint__traits_3_01_vertex_01_4.html" target="_self">constraint_traits< Vertex ></a></td><td class="desc"></td></tr>
<tr id="row_4_201_" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="structug_1_1_construct_grid_of_s_c_v_f_wrapper.html" target="_self">ConstructGridOfSCVFWrapper</a></td><td class="desc"></td></tr>
<tr id="row_4_202_" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="structug_1_1_construct_grid_of_s_c_v_f_wrapper_3_01_t_f_v_geom_00_011_01_4.html" target="_self">ConstructGridOfSCVFWrapper< TFVGeom, 1 ></a></td><td class="desc"></td></tr>
<tr id="row_4_203_" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="structug_1_1_construct_grid_of_s_c_v_f_wrapper_3_01_t_f_v_geom_00_012_01_4.html" target="_self">ConstructGridOfSCVFWrapper< TFVGeom, 2 ></a></td><td class="desc"></td></tr>
<tr id="row_4_204_" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="structug_1_1_construct_grid_of_s_c_v_f_wrapper_3_01_t_f_v_geom_00_013_01_4.html" target="_self">ConstructGridOfSCVFWrapper< TFVGeom, 3 ></a></td><td class="desc"></td></tr>
<tr id="row_4_205_" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="structug_1_1_construct_grid_of_s_c_v_wrapper.html" target="_self">ConstructGridOfSCVWrapper</a></td><td class="desc"></td></tr>
<tr id="row_4_206_" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="structug_1_1_construct_grid_of_s_c_v_wrapper_3_01_t_f_v_geom_00_011_01_4.html" target="_self">ConstructGridOfSCVWrapper< TFVGeom, 1 ></a></td><td class="desc"></td></tr>
<tr id="row_4_207_" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="structug_1_1_construct_grid_of_s_c_v_wrapper_3_01_t_f_v_geom_00_012_01_4.html" target="_self">ConstructGridOfSCVWrapper< TFVGeom, 2 ></a></td><td class="desc"></td></tr>
<tr id="row_4_208_" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="structug_1_1_construct_grid_of_s_c_v_wrapper_3_01_t_f_v_geom_00_013_01_4.html" target="_self">ConstructGridOfSCVWrapper< TFVGeom, 3 ></a></td><td class="desc"></td></tr>
<tr id="row_4_209_" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="classug_1_1_const_scalar_sub_vector_adapter.html" target="_self">ConstScalarSubVectorAdapter</a></td><td class="desc"></td></tr>
<tr id="row_4_210_" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="classug_1_1_const_user_matrix.html" target="_self">ConstUserMatrix</a></td><td class="desc">Constant matrix user data </td></tr>
<tr id="row_4_211_" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="classug_1_1_const_user_number.html" target="_self">ConstUserNumber</a></td><td class="desc">Constant scalar user data </td></tr>
<tr id="row_4_212_" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="classug_1_1_const_user_tensor.html" target="_self">ConstUserTensor</a></td><td class="desc">Constant tensor user data </td></tr>
<tr id="row_4_213_" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="classug_1_1_const_user_vector.html" target="_self">ConstUserVector</a></td><td class="desc">Constant vector user data </td></tr>
<tr id="row_4_214_" style="display:none;"><td class="entry"><span style="width:16px;display:inline-block;"> </span><span id="arr_4_214_" class="arrow" onclick="toggleFolder('4_214_')">►</span><span class="icona"><span class="icon">C</span></span><a class="el" href="classug_1_1_convection_shapes_full_upwind.html" target="_self">ConvectionShapesFullUpwind</a></td><td class="desc"></td></tr>
<tr id="row_4_214_0_" style="display:none;"><td class="entry"><span style="width:48px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="structug_1_1_convection_shapes_full_upwind_1_1_register_elem_func.html" target="_self">RegisterElemFunc</a></td><td class="desc">Functor for registering the shapes for the element-templated FV geometries </td></tr>
<tr id="row_4_214_1_" style="display:none;"><td class="entry"><span style="width:48px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="structug_1_1_convection_shapes_full_upwind_1_1_register_ref_dim_func.html" target="_self">RegisterRefDimFunc</a></td><td class="desc">Functor for registering the shapes for the reference-dimension-templated FV geometries </td></tr>
<tr id="row_4_215_" style="display:none;"><td class="entry"><span style="width:16px;display:inline-block;"> </span><span id="arr_4_215_" class="arrow" onclick="toggleFolder('4_215_')">►</span><span class="icona"><span class="icon">C</span></span><a class="el" href="classug_1_1_convection_shapes_linear_profile_skewed_upwind.html" target="_self">ConvectionShapesLinearProfileSkewedUpwind</a></td><td class="desc"></td></tr>
<tr id="row_4_215_0_" style="display:none;"><td class="entry"><span style="width:48px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="structug_1_1_convection_shapes_linear_profile_skewed_upwind_1_1_register_elem_func.html" target="_self">RegisterElemFunc</a></td><td class="desc">Functor for registering the shapes for the element-templated FV geometries </td></tr>
<tr id="row_4_215_1_" style="display:none;"><td class="entry"><span style="width:48px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="structug_1_1_convection_shapes_linear_profile_skewed_upwind_1_1_register_ref_dim_func.html" target="_self">RegisterRefDimFunc</a></td><td class="desc">Functor for registering the shapes for the reference-dimension-templated FV geometries </td></tr>
<tr id="row_4_216_" style="display:none;"><td class="entry"><span style="width:16px;display:inline-block;"> </span><span id="arr_4_216_" class="arrow" onclick="toggleFolder('4_216_')">►</span><span class="icona"><span class="icon">C</span></span><a class="el" href="classug_1_1_convection_shapes_no_upwind.html" target="_self">ConvectionShapesNoUpwind</a></td><td class="desc"></td></tr>
<tr id="row_4_216_0_" style="display:none;"><td class="entry"><span style="width:48px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="structug_1_1_convection_shapes_no_upwind_1_1_register_elem_func.html" target="_self">RegisterElemFunc</a></td><td class="desc">Functor for registering the shapes for the element-templated FV geometries </td></tr>
<tr id="row_4_216_1_" style="display:none;"><td class="entry"><span style="width:48px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="structug_1_1_convection_shapes_no_upwind_1_1_register_ref_dim_func.html" target="_self">RegisterRefDimFunc</a></td><td class="desc">Functor for registering the shapes for the reference-dimension-templated FV geometries </td></tr>
<tr id="row_4_217_" style="display:none;"><td class="entry"><span style="width:16px;display:inline-block;"> </span><span id="arr_4_217_" class="arrow" onclick="toggleFolder('4_217_')">►</span><span class="icona"><span class="icon">C</span></span><a class="el" href="classug_1_1_convection_shapes_partial_upwind.html" target="_self">ConvectionShapesPartialUpwind</a></td><td class="desc"></td></tr>
<tr id="row_4_217_0_" style="display:none;"><td class="entry"><span style="width:48px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="structug_1_1_convection_shapes_partial_upwind_1_1_register_elem_func.html" target="_self">RegisterElemFunc</a></td><td class="desc">Functor for registering the shapes for the element-templated FV geometries </td></tr>
<tr id="row_4_217_1_" style="display:none;"><td class="entry"><span style="width:48px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="structug_1_1_convection_shapes_partial_upwind_1_1_register_ref_dim_func.html" target="_self">RegisterRefDimFunc</a></td><td class="desc">Functor for registering the shapes for the reference-dimension-templated FV geometries </td></tr>
<tr id="row_4_218_" style="display:none;"><td class="entry"><span style="width:16px;display:inline-block;"> </span><span id="arr_4_218_" class="arrow" onclick="toggleFolder('4_218_')">►</span><span class="icona"><span class="icon">C</span></span><a class="el" href="classug_1_1_convection_shapes_skewed_upwind.html" target="_self">ConvectionShapesSkewedUpwind</a></td><td class="desc"></td></tr>
<tr id="row_4_218_0_" style="display:none;"><td class="entry"><span style="width:48px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="structug_1_1_convection_shapes_skewed_upwind_1_1_register_elem_func.html" target="_self">RegisterElemFunc</a></td><td class="desc">Functor for registering the shapes for the element-templated FV geometries </td></tr>
<tr id="row_4_218_1_" style="display:none;"><td class="entry"><span style="width:48px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="structug_1_1_convection_shapes_skewed_upwind_1_1_register_ref_dim_func.html" target="_self">RegisterRefDimFunc</a></td><td class="desc">Functor for registering the shapes for the reference-dimension-templated FV geometries </td></tr>
<tr id="row_4_219_" style="display:none;"><td class="entry"><span style="width:16px;display:inline-block;"> </span><span id="arr_4_219_" class="arrow" onclick="toggleFolder('4_219_')">►</span><span class="icona"><span class="icon">C</span></span><a class="el" href="classug_1_1_convection_shapes_weighted_upwind.html" target="_self">ConvectionShapesWeightedUpwind</a></td><td class="desc"></td></tr>
<tr id="row_4_219_0_" style="display:none;"><td class="entry"><span style="width:48px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="structug_1_1_convection_shapes_weighted_upwind_1_1_register_elem_func.html" target="_self">RegisterElemFunc</a></td><td class="desc">Functor for registering the shapes for the element-templated FV geometries </td></tr>
<tr id="row_4_219_1_" style="display:none;"><td class="entry"><span style="width:48px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="structug_1_1_convection_shapes_weighted_upwind_1_1_register_ref_dim_func.html" target="_self">RegisterRefDimFunc</a></td><td class="desc">Functor for registering the shapes for the reference-dimension-templated FV geometries </td></tr>
<tr id="row_4_220_" style="display:none;"><td class="entry"><span style="width:16px;display:inline-block;"> </span><span id="arr_4_220_" class="arrow" onclick="toggleFolder('4_220_')">►</span><span class="icona"><span class="icon">C</span></span><a class="el" href="classug_1_1_copy_attachment_handler.html" target="_self">CopyAttachmentHandler</a></td><td class="desc">Handler for attachments in a multi-grid </td></tr>
<tr id="row_4_220_0_" style="display:none;"><td class="entry"><span style="width:48px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="structug_1_1_copy_attachment_handler_1_1propagate.html" target="_self">propagate</a></td><td class="desc"></td></tr>
<tr id="row_4_220_1_" style="display:none;"><td class="entry"><span style="width:48px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="structug_1_1_copy_attachment_handler_1_1propagate_3_01_t_elem_00_01_dummy_01_4.html" target="_self">propagate< TElem, Dummy ></a></td><td class="desc"></td></tr>
<tr id="row_4_220_2_" style="display:none;"><td class="entry"><span style="width:48px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="structug_1_1_copy_attachment_handler_1_1register__as__observer.html" target="_self">register_as_observer</a></td><td class="desc"></td></tr>
<tr id="row_4_220_3_" style="display:none;"><td class="entry"><span style="width:48px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="structug_1_1_copy_attachment_handler_1_1register__as__observer_3_01_edge_00_01_dummy_01_4.html" target="_self">register_as_observer< Edge, Dummy ></a></td><td class="desc"></td></tr>
<tr id="row_4_220_4_" style="display:none;"><td class="entry"><span style="width:48px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="structug_1_1_copy_attachment_handler_1_1register__as__observer_3_01_face_00_01_dummy_01_4.html" target="_self">register_as_observer< Face, Dummy ></a></td><td class="desc"></td></tr>
<tr id="row_4_220_5_" style="display:none;"><td class="entry"><span style="width:48px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="structug_1_1_copy_attachment_handler_1_1register__as__observer_3_01_vertex_00_01_dummy_01_4.html" target="_self">register_as_observer< Vertex, Dummy ></a></td><td class="desc"></td></tr>
<tr id="row_4_220_6_" style="display:none;"><td class="entry"><span style="width:48px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="structug_1_1_copy_attachment_handler_1_1register__as__observer_3_01_volume_00_01_dummy_01_4.html" target="_self">register_as_observer< Volume, Dummy ></a></td><td class="desc"></td></tr>
<tr id="row_4_221_" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="classug_1_1_cpl_user_data.html" target="_self">CplUserData</a></td><td class="desc">Type based <a class="el" href="classug_1_1_user_data.html" title="Type based UserData.">UserData</a> </td></tr>
<tr id="row_4_222_" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="structug_1_1_c_p_u_algebra.html" target="_self">CPUAlgebra</a></td><td class="desc"></td></tr>
<tr id="row_4_223_" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="structug_1_1_c_p_u_block_algebra.html" target="_self">CPUBlockAlgebra</a></td><td class="desc"></td></tr>
<tr id="row_4_224_" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="structug_1_1_c_p_u_variable_block_algebra.html" target="_self">CPUVariableBlockAlgebra</a></td><td class="desc"></td></tr>
<tr id="row_4_225_" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="structug_1_1crfv__traits.html" target="_self">crfv_traits</a></td><td class="desc"></td></tr>
<tr id="row_4_226_" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="structug_1_1crfv__traits_3_011_00_011_01_4.html" target="_self">crfv_traits< 1, 1 ></a></td><td class="desc"></td></tr>
<tr id="row_4_227_" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="structug_1_1crfv__traits_3_011_00_012_01_4.html" target="_self">crfv_traits< 1, 2 ></a></td><td class="desc"></td></tr>
<tr id="row_4_228_" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="structug_1_1crfv__traits_3_012_00_012_01_4.html" target="_self">crfv_traits< 2, 2 ></a></td><td class="desc"></td></tr>
<tr id="row_4_229_" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="structug_1_1crfv__traits_3_012_00_013_01_4.html" target="_self">crfv_traits< 2, 3 ></a></td><td class="desc"></td></tr>
<tr id="row_4_230_" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="structug_1_1crfv__traits_3_013_00_013_01_4.html" target="_self">crfv_traits< 3, 3 ></a></td><td class="desc"></td></tr>
<tr id="row_4_231_" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="structug_1_1crfv__traits_3_013_00_014_01_4.html" target="_self">crfv_traits< 3, 4 ></a></td><td class="desc"></td></tr>
<tr id="row_4_232_" style="display:none;"><td class="entry"><span style="width:16px;display:inline-block;"> </span><span id="arr_4_232_" class="arrow" onclick="toggleFolder('4_232_')">►</span><span class="icona"><span class="icon">C</span></span><a class="el" href="classug_1_1_c_r_f_v_geometry.html" target="_self">CRFVGeometry</a></td><td class="desc"></td></tr>
<tr id="row_4_232_0_" style="display:none;"><td class="entry"><span style="width:48px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="classug_1_1_c_r_f_v_geometry_1_1_b_f.html" target="_self">BF</a></td><td class="desc">Boundary face </td></tr>
<tr id="row_4_232_1_" style="display:none;"><td class="entry"><span style="width:48px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="classug_1_1_c_r_f_v_geometry_1_1_c_o_n_s_t_r_a_i_n_e_d___d_o_f.html" target="_self">CONSTRAINED_DOF</a></td><td class="desc">Public hanging node interface for compatibility reasons </td></tr>
<tr id="row_4_232_2_" style="display:none;"><td class="entry"><span style="width:48px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="classug_1_1_c_r_f_v_geometry_1_1_s_c_v.html" target="_self">SCV</a></td><td class="desc">Sub control volume structure </td></tr>
<tr id="row_4_232_3_" style="display:none;"><td class="entry"><span style="width:48px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="classug_1_1_c_r_f_v_geometry_1_1_s_c_v_f.html" target="_self">SCVF</a></td><td class="desc">Sub-Control <a class="el" href="classug_1_1_volume.html" title="Volumes are 3-dimensional objects.">Volume</a> <a class="el" href="classug_1_1_face.html" title="Faces are 2-dimensional objects.">Face</a> structure </td></tr>
<tr id="row_4_233_" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="classug_1_1_crouzeix_raviart_base.html" target="_self">CrouzeixRaviartBase</a></td><td class="desc">Crouzeix - Raviart Set </td></tr>
<tr id="row_4_234_" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="classug_1_1_crouzeix_raviart_elem_transfer.html" target="_self">CrouzeixRaviartElemTransfer</a></td><td class="desc"></td></tr>
<tr id="row_4_235_" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="classug_1_1_crouzeix_raviart_l_s_f_s.html" target="_self">CrouzeixRaviartLSFS</a></td><td class="desc">Lagrange Shape Function Set without virtual functions and fixed order </td></tr>
<tr id="row_4_236_" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="classug_1_1_crouzeix_raviart_l_s_f_s_3_01_reference_hexahedron_01_4.html" target="_self">CrouzeixRaviartLSFS< ReferenceHexahedron ></a></td><td class="desc"></td></tr>
<tr id="row_4_237_" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="classug_1_1_crouzeix_raviart_l_s_f_s_3_01_reference_prism_01_4.html" target="_self">CrouzeixRaviartLSFS< ReferencePrism ></a></td><td class="desc"></td></tr>
<tr id="row_4_238_" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="classug_1_1_crouzeix_raviart_l_s_f_s_3_01_reference_pyramid_01_4.html" target="_self">CrouzeixRaviartLSFS< ReferencePyramid ></a></td><td class="desc"></td></tr>
<tr id="row_4_239_" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="classug_1_1_crouzeix_raviart_l_s_f_s_3_01_reference_quadrilateral_01_4.html" target="_self">CrouzeixRaviartLSFS< ReferenceQuadrilateral ></a></td><td class="desc"></td></tr>
<tr id="row_4_240_" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="classug_1_1_crouzeix_raviart_l_s_f_s_3_01_reference_tetrahedron_01_4.html" target="_self">CrouzeixRaviartLSFS< ReferenceTetrahedron ></a></td><td class="desc"></td></tr>
<tr id="row_4_241_" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="classug_1_1_crouzeix_raviart_l_s_f_s_3_01_reference_triangle_01_4.html" target="_self">CrouzeixRaviartLSFS< ReferenceTriangle ></a></td><td class="desc"></td></tr>
<tr id="row_4_242_" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="classug_1_1_cuckoo_clock.html" target="_self">CuckooClock</a></td><td class="desc"></td></tr>
<tr id="row_4_243_" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="classug_1_1_c_u_d_a_manager.html" target="_self">CUDAManager</a></td><td class="desc"></td></tr>
<tr id="row_4_244_" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="classug_1_1custom_lex_less.html" target="_self">customLexLess</a></td><td class="desc"></td></tr>
<tr id="row_4_245_" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="classug_1_1_custom_quadrilateral.html" target="_self">CustomQuadrilateral</a></td><td class="desc">Concrete types share this base-type. It is not intended for direct use </td></tr>
<tr id="row_4_246_" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="classug_1_1_custom_triangle.html" target="_self">CustomTriangle</a></td><td class="desc">Concrete types share this base-type. It is not intended for direct use </td></tr>
<tr id="row_4_247_" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="classug_1_1_custom_vertex_group.html" target="_self">CustomVertexGroup</a></td><td class="desc">This class can be used if one wants to create a custom element from a set of vertices </td></tr>
<tr id="row_4_248_" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="classug_1_1_cylinder_cut_projector.html" target="_self">CylinderCutProjector</a></td><td class="desc">Refines linearily except for when a refined edge intersects the given cylinder </td></tr>
<tr id="row_4_249_" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="classug_1_1_cylinder_projector.html" target="_self">CylinderProjector</a></td><td class="desc">Projects new vertices onto a sphere during refinement </td></tr>
<tr id="row_4_250_" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="classug_1_1_darcy_velocity_linker.html" target="_self">DarcyVelocityLinker</a></td><td class="desc">Hard Coded Linker for the Darcy velocity </td></tr>
<tr id="row_4_251_" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="classug_1_1_data_evaluator.html" target="_self">DataEvaluator</a></td><td class="desc">Evaluation for <a class="el" href="classug_1_1_i_elem_disc.html">IElemDisc</a> </td></tr>
<tr id="row_4_252_" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="classug_1_1_data_evaluator_base.html" target="_self">DataEvaluatorBase</a></td><td class="desc">Helper class to evaluate data evaluation for local contributions during assembling </td></tr>
<tr id="row_4_253_" style="display:none;"><td class="entry"><span style="width:16px;display:inline-block;"> </span><span id="arr_4_253_" class="arrow" onclick="toggleFolder('4_253_')">►</span><span class="icona"><span class="icon">C</span></span><a class="el" href="classug_1_1_data_export.html" target="_self">DataExport</a></td><td class="desc">Data export </td></tr>
<tr id="row_4_253_0_" style="display:none;"><td class="entry"><span style="width:48px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="classug_1_1_data_export_1_1_free_function_functor.html" target="_self">FreeFunctionFunctor</a></td><td class="desc"></td></tr>
<tr id="row_4_253_1_" style="display:none;"><td class="entry"><span style="width:48px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="classug_1_1_data_export_1_1_functor.html" target="_self">Functor</a></td><td class="desc"></td></tr>
<tr id="row_4_253_2_" style="display:none;"><td class="entry"><span style="width:48px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="classug_1_1_data_export_1_1_functor_base.html" target="_self">FunctorBase</a></td><td class="desc"></td></tr>
<tr id="row_4_253_3_" style="display:none;"><td class="entry"><span style="width:48px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="classug_1_1_data_export_1_1_member_function_functor.html" target="_self">MemberFunctionFunctor</a></td><td class="desc"></td></tr>
<tr id="row_4_254_" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="classug_1_1_data_import.html" target="_self">DataImport</a></td><td class="desc">Data import </td></tr>
<tr id="row_4_255_" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="classug_1_1_debug_i_d.html" target="_self">DebugID</a></td><td class="desc"></td></tr>
<tr id="row_4_256_" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="classug_1_1_debug_i_d_manager.html" target="_self">DebugIDManager</a></td><td class="desc"></td></tr>
<tr id="row_4_257_" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="classug_1_1_debug_iterator.html" target="_self">DebugIterator</a></td><td class="desc">Debugging iterator </td></tr>
<tr id="row_4_258_" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="classug_1_1_debug_writer_context.html" target="_self">DebugWriterContext</a></td><td class="desc">Context of a debugger writer: Keeps the debugging section etc </td></tr>
<tr id="row_4_259_" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="classug_1_1_debug_writing_object.html" target="_self">DebugWritingObject</a></td><td class="desc"></td></tr>
<tr id="row_4_260_" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="classug_1_1_default_algebra.html" target="_self">DefaultAlgebra</a></td><td class="desc">Singleton, providing the current default algebra </td></tr>
<tr id="row_4_261_" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="classug_1_1_degenerated_layer_manager.html" target="_self">DegeneratedLayerManager</a></td><td class="desc">Gegenerated layer subset manager </td></tr>
<tr id="row_4_262_" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="classug_1_1_delaunay_debug_saver.html" target="_self">DelaunayDebugSaver</a></td><td class="desc"></td></tr>
<tr id="row_4_263_" style="display:none;"><td class="entry"><span style="width:16px;display:inline-block;"> </span><span id="arr_4_263_" class="arrow" onclick="toggleFolder('4_263_')">►</span><span class="icona"><span class="icon">C</span></span><a class="el" href="classug_1_1_delaunay_info.html" target="_self">DelaunayInfo</a></td><td class="desc"></td></tr>
<tr id="row_4_263_0_" style="display:none;"><td class="entry"><span style="width:48px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="structug_1_1_delaunay_info_1_1_compare_face_info.html" target="_self">CompareFaceInfo</a></td><td class="desc"></td></tr>
<tr id="row_4_263_1_" style="display:none;"><td class="entry"><span style="width:48px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="structug_1_1_delaunay_info_1_1_face_info.html" target="_self">FaceInfo</a></td><td class="desc"></td></tr>
<tr id="row_4_264_" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="classug_1_1_dense_matrix.html" target="_self">DenseMatrix</a></td><td class="desc"></td></tr>
<tr id="row_4_265_" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="structug_1_1_dense_matrix_from_sparse_matrix.html" target="_self">DenseMatrixFromSparseMatrix</a></td><td class="desc"></td></tr>
<tr id="row_4_266_" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="classug_1_1_dense_matrix_inverse.html" target="_self">DenseMatrixInverse</a></td><td class="desc"></td></tr>
<tr id="row_4_267_" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="classug_1_1_dense_vector.html" target="_self">DenseVector</a></td><td class="desc"></td></tr>
<tr id="row_4_268_" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="classug_1_1_dependent_user_data.html" target="_self">DependentUserData</a></td><td class="desc">Dependent <a class="el" href="classug_1_1_user_data.html" title="Type based UserData.">UserData</a> </td></tr>
<tr id="row_4_269_" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="classug_1_1_diag_vanka.html" target="_self">DiagVanka</a></td><td class="desc">Diagvanka Preconditioner, description see above diagvanka_step function </td></tr>
<tr id="row_4_270_" style="display:none;"><td class="entry"><span style="width:16px;display:inline-block;"> </span><span id="arr_4_270_" class="arrow" onclick="toggleFolder('4_270_')">►</span><span class="icona"><span class="icon">C</span></span><a class="el" href="classug_1_1_dim_c_r_f_v_geometry.html" target="_self">DimCRFVGeometry</a></td><td class="desc"><a class="el" href="classug_1_1_geometry.html" title="provides a grid and access to the coordinates of the vertices">Geometry</a> and shape functions for 1st order Vertex-Centered Finite <a class="el" href="classug_1_1_volume.html" title="Volumes are 3-dimensional objects.">Volume</a> with Crouzeix-Raviart elements </td></tr>
<tr id="row_4_270_0_" style="display:none;"><td class="entry"><span style="width:48px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="classug_1_1_dim_c_r_f_v_geometry_1_1_b_f.html" target="_self">BF</a></td><td class="desc">Boundary face </td></tr>
<tr id="row_4_270_1_" style="display:none;"><td class="entry"><span style="width:48px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="classug_1_1_dim_c_r_f_v_geometry_1_1_c_o_n_s_t_r_a_i_n_e_d___d_o_f.html" target="_self">CONSTRAINED_DOF</a></td><td class="desc"></td></tr>
<tr id="row_4_270_2_" style="display:none;"><td class="entry"><span style="width:48px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="classug_1_1_dim_c_r_f_v_geometry_1_1_handled_edge.html" target="_self">HandledEdge</a></td><td class="desc"></td></tr>
<tr id="row_4_270_3_" style="display:none;"><td class="entry"><span style="width:48px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="classug_1_1_dim_c_r_f_v_geometry_1_1_s_c_v.html" target="_self">SCV</a></td><td class="desc">Sub control volume structure </td></tr>
<tr id="row_4_270_4_" style="display:none;"><td class="entry"><span style="width:48px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="classug_1_1_dim_c_r_f_v_geometry_1_1_s_c_v_f.html" target="_self">SCVF</a></td><td class="desc">Sub-Control <a class="el" href="classug_1_1_volume.html" title="Volumes are 3-dimensional objects.">Volume</a> <a class="el" href="classug_1_1_face.html" title="Faces are 2-dimensional objects.">Face</a> structure </td></tr>
<tr id="row_4_271_" style="display:none;"><td class="entry"><span style="width:16px;display:inline-block;"> </span><span id="arr_4_271_" class="arrow" onclick="toggleFolder('4_271_')">►</span><span class="icona"><span class="icon">C</span></span><a class="el" href="classug_1_1_dim_f_e_geometry.html" target="_self">DimFEGeometry</a></td><td class="desc"></td></tr>
<tr id="row_4_271_0_" style="display:none;"><td class="entry"><span style="width:48px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="classug_1_1_dim_f_e_geometry_1_1_b_f.html" target="_self">BF</a></td><td class="desc">Boundary face </td></tr>
<tr id="row_4_272_" style="display:none;"><td class="entry"><span style="width:16px;display:inline-block;"> </span><span id="arr_4_272_" class="arrow" onclick="toggleFolder('4_272_')">►</span><span class="icona"><span class="icon">C</span></span><a class="el" href="classug_1_1_dim_f_v1_geometry.html" target="_self">DimFV1Geometry</a></td><td class="desc"><a class="el" href="classug_1_1_geometry.html" title="provides a grid and access to the coordinates of the vertices">Geometry</a> and shape functions for 1st order Vertex-Centered Finite <a class="el" href="classug_1_1_volume.html" title="Volumes are 3-dimensional objects.">Volume</a> </td></tr>
<tr id="row_4_272_0_" style="display:none;"><td class="entry"><span style="width:48px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="classug_1_1_dim_f_v1_geometry_1_1_b_f.html" target="_self">BF</a></td><td class="desc">Boundary face </td></tr>
<tr id="row_4_272_1_" style="display:none;"><td class="entry"><span style="width:48px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="classug_1_1_dim_f_v1_geometry_1_1_s_c_v.html" target="_self">SCV</a></td><td class="desc">Sub control volume structure </td></tr>
<tr id="row_4_272_2_" style="display:none;"><td class="entry"><span style="width:48px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="classug_1_1_dim_f_v1_geometry_1_1_s_c_v_f.html" target="_self">SCVF</a></td><td class="desc">Sub-Control <a class="el" href="classug_1_1_volume.html" title="Volumes are 3-dimensional objects.">Volume</a> <a class="el" href="classug_1_1_face.html" title="Faces are 2-dimensional objects.">Face</a> structure </td></tr>
<tr id="row_4_273_" style="display:none;"><td class="entry"><span style="width:16px;display:inline-block;"> </span><span id="arr_4_273_" class="arrow" onclick="toggleFolder('4_273_')">►</span><span class="icona"><span class="icon">C</span></span><a class="el" href="classug_1_1_dim_f_v1_i_b_geometry.html" target="_self">DimFV1IBGeometry</a></td><td class="desc"><a class="el" href="classug_1_1_geometry.html" title="provides a grid and access to the coordinates of the vertices">Geometry</a> and shape functions for 1st order Vertex-Centered Finite <a class="el" href="classug_1_1_volume.html" title="Volumes are 3-dimensional objects.">Volume</a> </td></tr>
<tr id="row_4_273_0_" style="display:none;"><td class="entry"><span style="width:48px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="classug_1_1_dim_f_v1_i_b_geometry_1_1_b_f.html" target="_self">BF</a></td><td class="desc">Boundary face </td></tr>
<tr id="row_4_273_1_" style="display:none;"><td class="entry"><span style="width:48px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="classug_1_1_dim_f_v1_i_b_geometry_1_1_s_c_v.html" target="_self">SCV</a></td><td class="desc">Sub control volume structure </td></tr>
<tr id="row_4_273_2_" style="display:none;"><td class="entry"><span style="width:48px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="classug_1_1_dim_f_v1_i_b_geometry_1_1_s_c_v_f.html" target="_self">SCVF</a></td><td class="desc">Sub-Control <a class="el" href="classug_1_1_volume.html" title="Volumes are 3-dimensional objects.">Volume</a> <a class="el" href="classug_1_1_face.html" title="Faces are 2-dimensional objects.">Face</a> structure </td></tr>
<tr id="row_4_274_" style="display:none;"><td class="entry"><span style="width:16px;display:inline-block;"> </span><span id="arr_4_274_" class="arrow" onclick="toggleFolder('4_274_')">►</span><span class="icona"><span class="icon">C</span></span><a class="el" href="classug_1_1_dim_f_v_geometry.html" target="_self">DimFVGeometry</a></td><td class="desc"><a class="el" href="classug_1_1_geometry.html" title="provides a grid and access to the coordinates of the vertices">Geometry</a> and shape functions for any order Vertex-Centered Finite <a class="el" href="classug_1_1_volume.html" title="Volumes are 3-dimensional objects.">Volume</a> </td></tr>
<tr id="row_4_274_0_" style="display:none;"><td class="entry"><span style="width:48px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="classug_1_1_dim_f_v_geometry_1_1_b_f.html" target="_self">BF</a></td><td class="desc">Boundary face </td></tr>
<tr id="row_4_274_1_" style="display:none;"><td class="entry"><span style="width:48px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="classug_1_1_dim_f_v_geometry_1_1_s_c_v.html" target="_self">SCV</a></td><td class="desc">Sub control volume structure </td></tr>
<tr id="row_4_274_2_" style="display:none;"><td class="entry"><span style="width:48px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="classug_1_1_dim_f_v_geometry_1_1_s_c_v_f.html" target="_self">SCVF</a></td><td class="desc">Sub-Control <a class="el" href="classug_1_1_volume.html" title="Volumes are 3-dimensional objects.">Volume</a> <a class="el" href="classug_1_1_face.html" title="Faces are 2-dimensional objects.">Face</a> structure </td></tr>
<tr id="row_4_274_3_" style="display:none;"><td class="entry"><span style="width:48px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="structug_1_1_dim_f_v_geometry_1_1_sub_element.html" target="_self">SubElement</a></td><td class="desc"></td></tr>
<tr id="row_4_275_" style="display:none;"><td class="entry"><span style="width:16px;display:inline-block;"> </span><span id="arr_4_275_" class="arrow" onclick="toggleFolder('4_275_')">►</span><span class="icona"><span class="icon">C</span></span><a class="el" href="classug_1_1_dim_h_f_v1_geometry.html" target="_self">DimHFV1Geometry</a></td><td class="desc"></td></tr>
<tr id="row_4_275_0_" style="display:none;"><td class="entry"><span style="width:48px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="structug_1_1_dim_h_f_v1_geometry_1_1_mid_i_d.html" target="_self">MidID</a></td><td class="desc"></td></tr>
<tr id="row_4_275_1_" style="display:none;"><td class="entry"><span style="width:48px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="structug_1_1_dim_h_f_v1_geometry_1_1_nat_edge_info.html" target="_self">NatEdgeInfo</a></td><td class="desc"></td></tr>
<tr id="row_4_275_2_" style="display:none;"><td class="entry"><span style="width:48px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="structug_1_1_dim_h_f_v1_geometry_1_1_new_edge_info.html" target="_self">NewEdgeInfo</a></td><td class="desc"></td></tr>
<tr id="row_4_275_3_" style="display:none;"><td class="entry"><span style="width:48px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="classug_1_1_dim_h_f_v1_geometry_1_1_s_c_v.html" target="_self">SCV</a></td><td class="desc"></td></tr>
<tr id="row_4_275_4_" style="display:none;"><td class="entry"><span style="width:48px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="classug_1_1_dim_h_f_v1_geometry_1_1_s_c_v_f.html" target="_self">SCVF</a></td><td class="desc"></td></tr>
<tr id="row_4_276_" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="classug_1_1_dim_local_do_f_set.html" target="_self">DimLocalDoFSet</a></td><td class="desc"></td></tr>
<tr id="row_4_277_" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="classug_1_1_dim_reference_element.html" target="_self">DimReferenceElement</a></td><td class="desc">Dimension dependent base class for reference elements </td></tr>
<tr id="row_4_278_" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="classug_1_1_dim_reference_mapping.html" target="_self">DimReferenceMapping</a></td><td class="desc">Virtual base class for reference mappings </td></tr>
<tr id="row_4_279_" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="classug_1_1_dim_reference_mapping_wrapper.html" target="_self">DimReferenceMappingWrapper</a></td><td class="desc">Wrapper of a ReferenceElementMapping into the virtual base class </td></tr>
<tr id="row_4_280_" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="classug_1_1_dirac_source_disc.html" target="_self">DiracSourceDisc</a></td><td class="desc"></td></tr>
<tr id="row_4_281_" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="classug_1_1_directional_ordering.html" target="_self">DirectionalOrdering</a></td><td class="desc"></td></tr>
<tr id="row_4_282_" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="classug_1_1dirichlet__iterator.html" target="_self">dirichlet_iterator</a></td><td class="desc"></td></tr>
<tr id="row_4_283_" style="display:none;"><td class="entry"><span style="width:16px;display:inline-block;"> </span><span id="arr_4_283_" class="arrow" onclick="toggleFolder('4_283_')">►</span><span class="icona"><span class="icon">C</span></span><a class="el" href="classug_1_1_dirichlet_boundary.html" target="_self">DirichletBoundary</a></td><td class="desc"></td></tr>
<tr id="row_4_283_0_" style="display:none;"><td class="entry"><span style="width:48px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="structug_1_1_dirichlet_boundary_1_1_cond_number_data.html" target="_self">CondNumberData</a></td><td class="desc">Grouping for subset and conditional data </td></tr>
<tr id="row_4_283_1_" style="display:none;"><td class="entry"><span style="width:48px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="structug_1_1_dirichlet_boundary_1_1_const_number_data.html" target="_self">ConstNumberData</a></td><td class="desc">Grouping for subset and constant data </td></tr>
<tr id="row_4_283_2_" style="display:none;"><td class="entry"><span style="width:48px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="structug_1_1_dirichlet_boundary_1_1_number_data.html" target="_self">NumberData</a></td><td class="desc">Grouping for subset and non-conditional data </td></tr>
<tr id="row_4_283_3_" style="display:none;"><td class="entry"><span style="width:48px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="structug_1_1_dirichlet_boundary_1_1_old_number_data.html" target="_self">OldNumberData</a></td><td class="desc">Grouping for subset and the data already stored in the solution </td></tr>
<tr id="row_4_283_4_" style="display:none;"><td class="entry"><span style="width:48px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="structug_1_1_dirichlet_boundary_1_1_vector_data.html" target="_self">VectorData</a></td><td class="desc">Grouping for subset and non-conditional vector data </td></tr>
<tr id="row_4_284_" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="classug_1_1_dist_info_supplier.html" target="_self">DistInfoSupplier</a></td><td class="desc">Automatically attaches ADistInfo to all elements of a grid </td></tr>
<tr id="row_4_285_" style="display:none;"><td class="entry"><span style="width:16px;display:inline-block;"> </span><span id="arr_4_285_" class="arrow" onclick="toggleFolder('4_285_')">►</span><span class="icona"><span class="icon">C</span></span><a class="el" href="classug_1_1_distributed_grid_manager.html" target="_self">DistributedGridManager</a></td><td class="desc">Manages the layouts and interfaces which are associated with a distributed grid </td></tr>
<tr id="row_4_285_0_" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span id="arr_4_285_0_" class="arrow" onclick="toggleFolder('4_285_0_')">►</span><span class="icona"><span class="icon">C</span></span><a class="el" href="classug_1_1_distributed_grid_manager_1_1_element_info.html" target="_self">ElementInfo</a></td><td class="desc">Be careful when creating copies of <a class="el" href="classug_1_1_distributed_grid_manager_1_1_element_info.html" title="Be careful when creating copies of ElementInfo.">ElementInfo</a> </td></tr>
<tr id="row_4_285_0_0_" style="display:none;"><td class="entry"><span style="width:64px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="structug_1_1_distributed_grid_manager_1_1_element_info_1_1_data.html" target="_self">Data</a></td><td class="desc"></td></tr>
<tr id="row_4_285_0_1_" style="display:none;"><td class="entry"><span style="width:64px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="structug_1_1_distributed_grid_manager_1_1_element_info_1_1_entry.html" target="_self">Entry</a></td><td class="desc"></td></tr>
<tr id="row_4_285_1_" style="display:none;"><td class="entry"><span style="width:48px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="structug_1_1_distributed_grid_manager_1_1_scheduled_element.html" target="_self">ScheduledElement</a></td><td class="desc">Used to schedule an element for insertion during ordered-insertion-mode </td></tr>
<tr id="row_4_286_" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="classug_1_1_distro_adjuster.html" target="_self">DistroAdjuster</a></td><td class="desc"></td></tr>
<tr id="row_4_287_" style="display:none;"><td class="entry"><span style="width:16px;display:inline-block;"> </span><span id="arr_4_287_" class="arrow" onclick="toggleFolder('4_287_')">►</span><span class="icona"><span class="icon">C</span></span><a class="el" href="classug_1_1_do_f_count.html" target="_self">DoFCount</a></td><td class="desc"></td></tr>
<tr id="row_4_287_0_" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span id="arr_4_287_0_" class="arrow" onclick="toggleFolder('4_287_0_')">►</span><span class="icona"><span class="icon">C</span></span><a class="el" href="structug_1_1_do_f_count_1_1_cnt.html" target="_self">Cnt</a></td><td class="desc"></td></tr>
<tr id="row_4_287_0_0_" style="display:none;"><td class="entry"><span style="width:64px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="structug_1_1_do_f_count_1_1_cnt_1_1_p_cnt.html" target="_self">PCnt</a></td><td class="desc"></td></tr>
<tr id="row_4_288_" style="display:none;"><td class="entry"><span style="width:16px;display:inline-block;"> </span><span id="arr_4_288_" class="arrow" onclick="toggleFolder('4_288_')">►</span><span class="icona"><span class="icon">C</span></span><a class="el" href="classug_1_1_do_f_distribution.html" target="_self">DoFDistribution</a></td><td class="desc"></td></tr>
<tr id="row_4_288_0_" style="display:none;"><td class="entry"><span style="width:48px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="structug_1_1_do_f_distribution_1_1dim__traits.html" target="_self">dim_traits</a></td><td class="desc"></td></tr>
<tr id="row_4_288_1_" style="display:none;"><td class="entry"><span style="width:48px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="structug_1_1_do_f_distribution_1_1traits.html" target="_self">traits</a></td><td class="desc"></td></tr>
<tr id="row_4_289_" style="display:none;"><td class="entry"><span style="width:16px;display:inline-block;"> </span><span id="arr_4_289_" class="arrow" onclick="toggleFolder('4_289_')">►</span><span class="icona"><span class="icon">C</span></span><a class="el" href="classug_1_1_do_f_distribution_info.html" target="_self">DoFDistributionInfo</a></td><td class="desc"></td></tr>
<tr id="row_4_289_0_" style="display:none;"><td class="entry"><span style="width:48px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="structug_1_1_do_f_distribution_info_1_1_fct_info.html" target="_self">FctInfo</a></td><td class="desc"></td></tr>
<tr id="row_4_290_" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="classug_1_1_do_f_distribution_info_provider.html" target="_self">DoFDistributionInfoProvider</a></td><td class="desc"></td></tr>
<tr id="row_4_291_" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="classug_1_1_do_f_index_storage.html" target="_self">DoFIndexStorage</a></td><td class="desc"></td></tr>
<tr id="row_4_292_" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="classug_1_1_domain.html" target="_self">Domain</a></td><td class="desc"></td></tr>
<tr id="row_4_293_" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="structug_1_1domain__traits.html" target="_self">domain_traits</a></td><td class="desc"></td></tr>
<tr id="row_4_294_" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="structug_1_1domain__traits_3_010_01_4.html" target="_self">domain_traits< 0 ></a></td><td class="desc"></td></tr>
<tr id="row_4_295_" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="structug_1_1domain__traits_3_011_01_4.html" target="_self">domain_traits< 1 ></a></td><td class="desc"></td></tr>
<tr id="row_4_296_" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="structug_1_1domain__traits_3_012_01_4.html" target="_self">domain_traits< 2 ></a></td><td class="desc"></td></tr>
<tr id="row_4_297_" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="structug_1_1domain__traits_3_013_01_4.html" target="_self">domain_traits< 3 ></a></td><td class="desc"></td></tr>
<tr id="row_4_298_" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="classug_1_1_domain_balance_weights.html" target="_self">DomainBalanceWeights</a></td><td class="desc"></td></tr>
<tr id="row_4_299_" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="classug_1_1_domain_communication_cost_weights.html" target="_self">DomainCommunicationCostWeights</a></td><td class="desc"></td></tr>
<tr id="row_4_300_" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="classug_1_1_domain_discretization.html" target="_self">DomainDiscretization</a></td><td class="desc"><a class="el" href="classug_1_1_domain.html">Domain</a> discretization implementing the interface </td></tr>
<tr id="row_4_301_" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="classug_1_1_domain_discretization_base.html" target="_self">DomainDiscretizationBase</a></td><td class="desc">Generic domain discretization implementing the interface </td></tr>
<tr id="row_4_302_" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="classug_1_1_domain_info.html" target="_self">DomainInfo</a></td><td class="desc">Describes the contents of a domain </td></tr>
<tr id="row_4_303_" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="classug_1_1_domain_load_balancer.html" target="_self">DomainLoadBalancer</a></td><td class="desc">A small wrapper for <a class="el" href="classug_1_1_load_balancer.html" title="A load-balancer redistributes grids using the specified partitioner and process-hierarchy.">LoadBalancer</a> which adds comfort methods to balance and distribute domains </td></tr>
<tr id="row_4_304_" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="classug_1_1_domain_partitioner.html" target="_self">DomainPartitioner</a></td><td class="desc"></td></tr>
<tr id="row_4_305_" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="classug_1_1_domain_ray_tracer.html" target="_self">DomainRayTracer</a></td><td class="desc">TEMPORARY QUICK HACK! DON'T USE! WILL BE REPLACED SOON! </td></tr>
<tr id="row_4_306_" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="classug_1_1_dual_graph_neighbor_collector.html" target="_self">DualGraphNeighborCollector</a></td><td class="desc"></td></tr>
<tr id="row_4_307_" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="classug_1_1_edge.html" target="_self">Edge</a></td><td class="desc">Base-class for edges </td></tr>
<tr id="row_4_308_" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="classug_1_1_edge_descriptor.html" target="_self">EdgeDescriptor</a></td><td class="desc">Can be used to store information about an edge and to construct an edge </td></tr>
<tr id="row_4_309_" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="classug_1_1_edge_orientation.html" target="_self">EdgeOrientation</a></td><td class="desc">User data for the orientation of a line element </td></tr>
<tr id="row_4_310_" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="classug_1_1_edge_vertices.html" target="_self">EdgeVertices</a></td><td class="desc">Holds the vertices of an <a class="el" href="classug_1_1_edge.html" title="Base-class for edges.">Edge</a> or an <a class="el" href="classug_1_1_edge_descriptor.html" title="Can be used to store information about an edge and to construct an edge.">EdgeDescriptor</a> </td></tr>
<tr id="row_4_311_" style="display:none;"><td class="entry"><span style="width:16px;display:inline-block;"> </span><span id="arr_4_311_" class="arrow" onclick="toggleFolder('4_311_')">►</span><span class="icona"><span class="icon">C</span></span><a class="el" href="classug_1_1element__list__traits.html" target="_self">element_list_traits</a></td><td class="desc">Class for computing integral properties of geometric objects types in lists </td></tr>
<tr id="row_4_311_0_" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span id="arr_4_311_0_" class="arrow" onclick="toggleFolder('4_311_0_')">►</span><span class="icona"><span class="icon">C</span></span><a class="el" href="structug_1_1element__list__traits_1_1mfc__num__corners__of__elem.html" target="_self">mfc_num_corners_of_elem</a></td><td class="desc">Metafunction class for counting corners in an element type </td></tr>
<tr id="row_4_311_0_0_" style="display:none;"><td class="entry"><span style="width:64px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="classug_1_1element__list__traits_1_1mfc__num__corners__of__elem_1_1apply.html" target="_self">apply</a></td><td class="desc"></td></tr>
<tr id="row_4_311_1_" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span id="arr_4_311_1_" class="arrow" onclick="toggleFolder('4_311_1_')">►</span><span class="icona"><span class="icon">C</span></span><a class="el" href="structug_1_1element__list__traits_1_1mfc__num__edges__of__elem.html" target="_self">mfc_num_edges_of_elem</a></td><td class="desc">Metafunction class for counting edges in an element type </td></tr>
<tr id="row_4_311_1_0_" style="display:none;"><td class="entry"><span style="width:64px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="classug_1_1element__list__traits_1_1mfc__num__edges__of__elem_1_1apply.html" target="_self">apply</a></td><td class="desc"></td></tr>
<tr id="row_4_311_2_" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span id="arr_4_311_2_" class="arrow" onclick="toggleFolder('4_311_2_')">►</span><span class="icona"><span class="icon">C</span></span><a class="el" href="structug_1_1element__list__traits_1_1mfc__num__faces__of__elem.html" target="_self">mfc_num_faces_of_elem</a></td><td class="desc">Metafunction class for counting faces in an element type </td></tr>
<tr id="row_4_311_2_0_" style="display:none;"><td class="entry"><span style="width:64px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="classug_1_1element__list__traits_1_1mfc__num__faces__of__elem_1_1apply.html" target="_self">apply</a></td><td class="desc"></td></tr>
<tr id="row_4_311_3_" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span id="arr_4_311_3_" class="arrow" onclick="toggleFolder('4_311_3_')">►</span><span class="icona"><span class="icon">C</span></span><a class="el" href="structug_1_1element__list__traits_1_1mfc__num__sides__of__elem.html" target="_self">mfc_num_sides_of_elem</a></td><td class="desc">Metafunction class for counting sides (i.e. edges or faces) in an element type </td></tr>
<tr id="row_4_311_3_0_" style="display:none;"><td class="entry"><span style="width:64px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="classug_1_1element__list__traits_1_1mfc__num__sides__of__elem_1_1apply.html" target="_self">apply</a></td><td class="desc"></td></tr>
<tr id="row_4_311_4_" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span id="arr_4_311_4_" class="arrow" onclick="toggleFolder('4_311_4_')">►</span><span class="icona"><span class="icon">C</span></span><a class="el" href="structug_1_1element__list__traits_1_1mfc__num__volumes__of__elem.html" target="_self">mfc_num_volumes_of_elem</a></td><td class="desc">Metafunction class for counting volumes in an element type </td></tr>
<tr id="row_4_311_4_0_" style="display:none;"><td class="entry"><span style="width:64px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="classug_1_1element__list__traits_1_1mfc__num__volumes__of__elem_1_1apply.html" target="_self">apply</a></td><td class="desc"></td></tr>
<tr id="row_4_312_" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="classug_1_1_element_callback.html" target="_self">ElementCallback</a></td><td class="desc"></td></tr>
<tr id="row_4_313_" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="classug_1_1_element_gauss_seidel.html" target="_self">ElementGaussSeidel</a></td><td class="desc"><a class="el" href="classug_1_1_element_gauss_seidel.html" title="ElementGaussSeidel Preconditioner.">ElementGaussSeidel</a> Preconditioner </td></tr>
<tr id="row_4_314_" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="structug_1_1_element_side_ray_intersection_wrapper.html" target="_self">ElementSideRayIntersectionWrapper</a></td><td class="desc"></td></tr>
<tr id="row_4_315_" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="structug_1_1_element_side_ray_intersection_wrapper_3_01_t_ref_elem_00_012_00_012_01_4.html" target="_self">ElementSideRayIntersectionWrapper< TRefElem, 2, 2 ></a></td><td class="desc"></td></tr>
<tr id="row_4_316_" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="structug_1_1_element_side_ray_intersection_wrapper_3_01_t_ref_elem_00_013_00_013_01_4.html" target="_self">ElementSideRayIntersectionWrapper< TRefElem, 3, 3 ></a></td><td class="desc"></td></tr>
<tr id="row_4_317_" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="classug_1_1_element_storage.html" target="_self">ElementStorage</a></td><td class="desc">This struct is used to hold GridObjects and their attachment pipes </td></tr>
<tr id="row_4_318_" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="structug_1_1_element_storage_selector.html" target="_self">ElementStorageSelector</a></td><td class="desc">Helper class to access the correct element storage from its element type </td></tr>
<tr id="row_4_319_" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="structug_1_1_element_storage_selector_3_01_edge_01_4.html" target="_self">ElementStorageSelector< Edge ></a></td><td class="desc"></td></tr>
<tr id="row_4_320_" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="structug_1_1_element_storage_selector_3_01_face_01_4.html" target="_self">ElementStorageSelector< Face ></a></td><td class="desc"></td></tr>
<tr id="row_4_321_" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="structug_1_1_element_storage_selector_3_01_vertex_01_4.html" target="_self">ElementStorageSelector< Vertex ></a></td><td class="desc"></td></tr>
<tr id="row_4_322_" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="structug_1_1_element_storage_selector_3_01_volume_01_4.html" target="_self">ElementStorageSelector< Volume ></a></td><td class="desc"></td></tr>
<tr id="row_4_323_" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="structug_1_1_elem_error_sort_desc.html" target="_self">ElemErrorSortDesc</a></td><td class="desc"></td></tr>
<tr id="row_4_324_" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="classug_1_1_elem_prolongation_base.html" target="_self">ElemProlongationBase</a></td><td class="desc"></td></tr>
<tr id="row_4_325_" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="classug_1_1_elem_restriction_base.html" target="_self">ElemRestrictionBase</a></td><td class="desc"></td></tr>
<tr id="row_4_326_" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="classug_1_1_elliptic_cylinder_projector.html" target="_self">EllipticCylinderProjector</a></td><td class="desc">Projects new vertices onto a cylinder with an elliptic base </td></tr>
<tr id="row_4_327_" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="classug_1_1_empty_o_stream.html" target="_self">EmptyOStream</a></td><td class="desc">Specialization of std::ostream, which doesn't write anything </td></tr>
<tr id="row_4_328_" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="classug_1_1_empty_stream_buffer.html" target="_self">EmptyStreamBuffer</a></td><td class="desc">Used by EmptyStream, to send tokens into nirvana! </td></tr>
<tr id="row_4_329_" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="structug_1_1_empty_type.html" target="_self">EmptyType</a></td><td class="desc"></td></tr>
<tr id="row_4_330_" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="structug_1_1end__boost__list.html" target="_self">end_boost_list</a></td><td class="desc"></td></tr>
<tr id="row_4_331_" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="classug_1_1_energy_conv_check.html" target="_self">EnergyConvCheck</a></td><td class="desc"></td></tr>
<tr id="row_4_332_" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="classug_1_1_equidistant_lagrange1_d.html" target="_self">EquidistantLagrange1D</a></td><td class="desc"></td></tr>
<tr id="row_4_333_" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="classug_1_1_equilibration_marking_strategy.html" target="_self">EquilibrationMarkingStrategy</a></td><td class="desc">Marks elements above a certain fraction of the maximum </td></tr>
<tr id="row_4_334_" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="classug_1_1_error_evaluator.html" target="_self">ErrorEvaluator</a></td><td class="desc">Evaluation for <a class="el" href="classug_1_1_i_elem_error.html">IElemError</a> </td></tr>
<tr id="row_4_335_" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="classug_1_1_expected_error_marking_strategy.html" target="_self">ExpectedErrorMarkingStrategy</a></td><td class="desc"></td></tr>
<tr id="row_4_336_" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="classug_1_1_explicit_grid_function_gradient.html" target="_self">ExplicitGridFunctionGradient</a></td><td class="desc"></td></tr>
<tr id="row_4_337_" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="classug_1_1_explicit_grid_function_value.html" target="_self">ExplicitGridFunctionValue</a></td><td class="desc"></td></tr>
<tr id="row_4_338_" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="classug_1_1_explicit_grid_function_vector.html" target="_self">ExplicitGridFunctionVector</a></td><td class="desc"></td></tr>