Lai,Risheng
2023-11-02 30c02e0c981b16be0918483543f4b812956c45d4
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
3020
3021
3022
3023
3024
3025
3026
3027
3028
3029
3030
3031
3032
3033
3034
3035
3036
3037
3038
3039
3040
3041
3042
3043
3044
3045
3046
3047
3048
3049
3050
3051
3052
3053
3054
3055
3056
3057
3058
3059
3060
3061
3062
3063
3064
3065
3066
3067
3068
3069
3070
3071
3072
3073
3074
3075
3076
3077
3078
3079
3080
3081
3082
3083
3084
3085
3086
3087
3088
3089
3090
3091
3092
3093
3094
3095
3096
3097
3098
3099
3100
3101
3102
3103
3104
3105
3106
3107
3108
3109
3110
3111
3112
3113
3114
3115
3116
3117
3118
3119
3120
3121
3122
3123
3124
3125
3126
3127
3128
3129
3130
3131
3132
3133
3134
3135
3136
3137
3138
3139
3140
3141
3142
3143
3144
3145
3146
3147
3148
3149
3150
3151
3152
3153
3154
3155
3156
3157
3158
3159
3160
3161
3162
3163
3164
3165
3166
3167
3168
3169
3170
3171
3172
3173
3174
3175
3176
3177
3178
3179
3180
3181
3182
3183
3184
3185
3186
3187
3188
3189
3190
3191
3192
3193
3194
3195
3196
3197
3198
3199
3200
3201
3202
3203
3204
3205
3206
3207
3208
3209
3210
3211
3212
3213
3214
3215
3216
3217
3218
3219
3220
3221
3222
3223
3224
3225
3226
3227
3228
3229
3230
3231
3232
3233
3234
3235
3236
3237
3238
3239
3240
3241
3242
3243
3244
3245
3246
3247
3248
3249
3250
3251
3252
3253
3254
3255
3256
3257
3258
3259
3260
3261
3262
3263
3264
3265
3266
3267
3268
3269
3270
3271
3272
3273
3274
3275
3276
3277
3278
3279
3280
3281
3282
3283
3284
3285
3286
3287
3288
3289
3290
3291
3292
3293
3294
3295
3296
3297
3298
3299
3300
3301
3302
3303
3304
3305
3306
3307
3308
3309
3310
3311
3312
3313
3314
3315
3316
3317
3318
3319
3320
3321
3322
3323
3324
3325
3326
3327
3328
3329
3330
3331
3332
3333
3334
3335
3336
3337
3338
3339
3340
3341
3342
3343
3344
3345
3346
3347
3348
3349
3350
3351
3352
3353
3354
3355
3356
3357
3358
3359
3360
3361
3362
3363
3364
3365
3366
3367
3368
3369
3370
3371
3372
3373
3374
3375
3376
3377
3378
3379
3380
3381
3382
3383
3384
3385
3386
3387
3388
3389
3390
3391
3392
3393
3394
3395
3396
3397
3398
3399
3400
3401
3402
3403
3404
3405
3406
3407
3408
3409
3410
3411
3412
3413
3414
3415
3416
3417
3418
3419
3420
3421
3422
3423
3424
3425
3426
3427
3428
3429
3430
3431
3432
3433
3434
3435
3436
3437
3438
3439
3440
3441
3442
3443
3444
3445
3446
3447
3448
3449
3450
3451
3452
3453
3454
3455
3456
3457
3458
3459
3460
3461
3462
3463
3464
3465
3466
3467
3468
3469
3470
3471
3472
3473
3474
3475
3476
3477
3478
3479
3480
3481
3482
3483
3484
3485
3486
3487
3488
3489
3490
3491
3492
3493
3494
3495
3496
3497
3498
3499
3500
3501
3502
3503
3504
3505
3506
3507
3508
3509
3510
3511
3512
3513
3514
3515
3516
3517
3518
3519
3520
3521
3522
3523
3524
3525
3526
3527
3528
3529
3530
3531
3532
3533
3534
3535
3536
3537
3538
3539
3540
3541
3542
3543
3544
3545
3546
3547
3548
3549
3550
3551
3552
3553
3554
3555
3556
3557
3558
3559
3560
3561
3562
3563
3564
3565
3566
3567
3568
3569
3570
3571
3572
3573
3574
3575
3576
3577
3578
3579
3580
3581
3582
3583
3584
3585
3586
3587
3588
3589
3590
3591
3592
3593
3594
3595
3596
3597
3598
3599
3600
3601
3602
3603
3604
3605
3606
3607
3608
3609
3610
3611
3612
3613
3614
3615
3616
3617
3618
3619
3620
3621
3622
3623
3624
3625
3626
3627
3628
3629
3630
3631
3632
3633
3634
3635
3636
3637
3638
3639
3640
3641
3642
3643
3644
3645
3646
3647
3648
3649
3650
3651
3652
3653
3654
3655
3656
3657
3658
3659
3660
3661
3662
3663
3664
3665
3666
3667
3668
3669
3670
3671
3672
3673
3674
3675
3676
3677
3678
3679
3680
3681
3682
3683
3684
3685
3686
3687
3688
3689
3690
3691
3692
3693
3694
3695
3696
3697
3698
3699
3700
3701
3702
3703
3704
3705
3706
3707
3708
3709
3710
3711
3712
3713
3714
3715
3716
3717
3718
3719
3720
3721
3722
3723
3724
3725
3726
3727
3728
3729
3730
3731
3732
3733
3734
3735
3736
3737
3738
3739
3740
3741
3742
3743
3744
3745
3746
3747
3748
3749
3750
3751
3752
3753
3754
3755
3756
3757
3758
3759
3760
3761
3762
3763
3764
3765
3766
3767
3768
3769
3770
3771
3772
3773
3774
3775
3776
3777
3778
3779
3780
3781
3782
3783
3784
3785
3786
3787
3788
3789
3790
3791
3792
3793
3794
3795
3796
3797
3798
3799
3800
3801
3802
3803
3804
3805
3806
3807
3808
3809
3810
3811
3812
3813
3814
3815
3816
3817
3818
3819
3820
3821
3822
3823
3824
3825
3826
3827
3828
3829
3830
3831
3832
3833
3834
3835
3836
3837
3838
3839
3840
3841
3842
3843
3844
3845
3846
3847
3848
3849
3850
3851
3852
3853
3854
3855
3856
3857
3858
3859
3860
3861
3862
3863
3864
3865
3866
3867
3868
3869
3870
3871
3872
3873
3874
3875
3876
3877
3878
3879
3880
3881
3882
3883
3884
3885
3886
3887
3888
3889
3890
3891
3892
3893
3894
3895
3896
3897
3898
3899
3900
3901
3902
3903
3904
3905
3906
3907
3908
3909
3910
3911
3912
3913
3914
3915
3916
3917
3918
3919
3920
3921
3922
3923
3924
3925
3926
3927
3928
3929
3930
3931
3932
3933
3934
3935
3936
3937
3938
3939
3940
3941
3942
3943
3944
3945
3946
3947
3948
3949
3950
3951
3952
3953
3954
3955
3956
3957
3958
3959
3960
3961
3962
3963
3964
3965
3966
3967
3968
3969
3970
3971
3972
3973
3974
3975
3976
3977
3978
3979
3980
3981
3982
3983
3984
3985
3986
3987
3988
3989
3990
3991
3992
3993
3994
3995
3996
3997
3998
3999
4000
4001
4002
4003
4004
4005
4006
4007
4008
4009
4010
4011
4012
4013
4014
4015
4016
4017
4018
4019
4020
4021
4022
4023
4024
4025
4026
4027
4028
4029
4030
4031
4032
4033
4034
4035
4036
4037
4038
4039
4040
4041
4042
4043
4044
4045
4046
4047
4048
4049
4050
4051
4052
4053
4054
4055
4056
4057
4058
4059
4060
4061
4062
4063
4064
4065
4066
4067
4068
4069
4070
4071
4072
4073
4074
4075
4076
4077
4078
4079
4080
4081
4082
4083
4084
4085
4086
4087
4088
4089
4090
4091
4092
4093
4094
4095
4096
4097
4098
4099
4100
4101
4102
4103
4104
4105
4106
4107
4108
4109
4110
4111
4112
4113
4114
4115
4116
4117
4118
4119
4120
4121
4122
4123
4124
4125
4126
4127
4128
4129
4130
4131
4132
4133
4134
4135
4136
4137
4138
4139
4140
4141
4142
4143
4144
4145
4146
4147
4148
4149
4150
4151
4152
4153
4154
4155
4156
4157
4158
4159
4160
4161
4162
4163
4164
4165
4166
4167
4168
4169
4170
4171
4172
4173
4174
4175
4176
4177
4178
4179
4180
4181
4182
4183
4184
4185
4186
4187
4188
4189
4190
4191
4192
4193
4194
4195
4196
4197
4198
4199
4200
4201
4202
4203
4204
4205
4206
4207
4208
4209
4210
4211
4212
4213
4214
4215
4216
4217
4218
4219
4220
4221
4222
4223
4224
4225
4226
4227
4228
4229
4230
4231
4232
4233
4234
4235
4236
4237
4238
4239
4240
4241
4242
4243
4244
4245
4246
4247
4248
4249
4250
4251
4252
4253
4254
4255
4256
4257
4258
4259
4260
4261
4262
4263
4264
4265
4266
4267
4268
4269
4270
4271
4272
4273
4274
4275
4276
4277
4278
4279
4280
4281
4282
4283
4284
4285
4286
4287
4288
4289
4290
4291
4292
4293
4294
4295
4296
4297
4298
4299
4300
4301
4302
4303
4304
4305
4306
4307
4308
4309
4310
4311
4312
4313
4314
4315
4316
4317
4318
4319
4320
4321
4322
4323
4324
4325
4326
4327
4328
4329
4330
4331
4332
4333
4334
4335
4336
4337
4338
4339
4340
4341
4342
4343
4344
4345
4346
4347
4348
4349
4350
4351
4352
4353
4354
4355
4356
4357
4358
4359
4360
4361
4362
4363
4364
4365
4366
4367
4368
4369
4370
4371
4372
4373
4374
4375
4376
4377
4378
4379
4380
4381
4382
4383
4384
4385
4386
4387
4388
4389
4390
4391
4392
4393
4394
4395
4396
4397
4398
4399
4400
4401
4402
4403
4404
4405
4406
4407
4408
4409
4410
4411
4412
4413
4414
4415
4416
4417
4418
4419
4420
4421
4422
4423
4424
4425
4426
4427
4428
4429
4430
4431
4432
4433
4434
4435
4436
4437
4438
4439
4440
4441
4442
4443
4444
4445
4446
4447
4448
4449
4450
4451
4452
4453
4454
4455
4456
4457
4458
4459
4460
4461
4462
4463
4464
4465
4466
4467
4468
4469
4470
4471
4472
4473
4474
4475
4476
4477
4478
4479
4480
4481
4482
4483
4484
4485
4486
4487
4488
4489
4490
4491
4492
4493
4494
4495
4496
4497
4498
4499
4500
4501
4502
4503
4504
4505
4506
4507
4508
4509
4510
4511
4512
4513
4514
4515
4516
4517
4518
4519
4520
4521
4522
4523
4524
4525
4526
4527
4528
4529
4530
4531
4532
4533
4534
4535
4536
4537
4538
4539
4540
4541
4542
4543
4544
4545
4546
4547
4548
4549
4550
4551
4552
4553
4554
4555
4556
4557
4558
4559
4560
4561
4562
4563
4564
4565
4566
4567
4568
4569
4570
4571
4572
4573
4574
4575
4576
4577
4578
4579
4580
4581
4582
4583
4584
4585
4586
4587
4588
4589
4590
4591
4592
4593
4594
4595
4596
4597
4598
4599
4600
4601
4602
4603
4604
4605
4606
4607
4608
4609
4610
4611
4612
4613
4614
4615
4616
4617
4618
4619
4620
4621
4622
4623
4624
4625
4626
4627
4628
4629
4630
4631
4632
4633
4634
4635
4636
4637
4638
4639
4640
4641
4642
4643
4644
4645
4646
4647
4648
4649
4650
4651
4652
4653
4654
4655
4656
4657
4658
4659
4660
4661
4662
4663
4664
4665
4666
4667
4668
4669
4670
4671
4672
4673
4674
4675
4676
4677
4678
4679
4680
4681
4682
4683
4684
4685
4686
4687
4688
4689
4690
4691
4692
4693
4694
4695
4696
4697
4698
4699
4700
4701
4702
4703
4704
4705
4706
4707
4708
4709
4710
4711
4712
4713
4714
4715
4716
4717
4718
4719
4720
4721
4722
4723
4724
4725
4726
4727
4728
4729
4730
4731
4732
4733
4734
4735
4736
4737
4738
4739
4740
4741
4742
4743
4744
4745
4746
4747
4748
4749
4750
4751
4752
4753
4754
4755
4756
4757
4758
4759
4760
4761
4762
4763
4764
4765
4766
4767
4768
4769
4770
4771
4772
4773
4774
4775
4776
4777
4778
4779
4780
4781
4782
4783
4784
4785
4786
4787
4788
4789
4790
4791
4792
4793
4794
4795
4796
4797
4798
4799
4800
4801
4802
4803
4804
4805
4806
4807
4808
4809
4810
4811
4812
4813
4814
4815
4816
4817
4818
4819
4820
4821
4822
4823
4824
4825
4826
4827
4828
4829
4830
4831
4832
4833
4834
4835
4836
4837
4838
4839
4840
4841
4842
4843
4844
4845
4846
4847
4848
4849
4850
4851
4852
4853
4854
4855
4856
4857
4858
4859
4860
4861
4862
4863
4864
4865
4866
4867
4868
4869
4870
4871
4872
4873
4874
4875
4876
4877
4878
4879
4880
4881
4882
4883
4884
4885
4886
4887
4888
4889
4890
4891
4892
4893
4894
4895
4896
4897
4898
4899
4900
4901
4902
4903
4904
4905
4906
4907
4908
4909
4910
4911
4912
4913
4914
4915
4916
4917
4918
4919
4920
4921
4922
4923
4924
4925
4926
4927
4928
4929
4930
4931
4932
4933
4934
4935
4936
4937
4938
4939
4940
4941
4942
4943
4944
4945
4946
4947
4948
4949
4950
4951
4952
4953
4954
4955
4956
4957
4958
4959
4960
4961
4962
4963
4964
4965
4966
4967
4968
4969
4970
4971
4972
4973
4974
4975
4976
4977
4978
4979
4980
4981
4982
4983
4984
4985
4986
4987
4988
4989
4990
4991
4992
4993
4994
4995
4996
4997
4998
4999
5000
5001
5002
5003
5004
5005
5006
5007
5008
5009
5010
5011
5012
5013
5014
5015
5016
5017
5018
5019
5020
5021
5022
5023
5024
5025
5026
5027
5028
5029
5030
5031
5032
5033
5034
5035
5036
5037
5038
5039
5040
5041
5042
5043
5044
5045
5046
5047
5048
5049
5050
5051
5052
5053
5054
5055
5056
5057
5058
5059
5060
5061
5062
5063
5064
5065
5066
5067
5068
5069
5070
5071
5072
5073
5074
5075
5076
5077
5078
5079
5080
5081
5082
5083
5084
5085
5086
5087
5088
5089
5090
5091
5092
5093
5094
5095
5096
5097
5098
5099
5100
5101
5102
5103
5104
5105
5106
5107
5108
5109
5110
5111
5112
5113
5114
5115
5116
5117
5118
5119
5120
5121
5122
5123
5124
5125
5126
5127
5128
5129
5130
5131
5132
5133
5134
5135
5136
5137
5138
5139
5140
5141
5142
5143
5144
5145
5146
5147
5148
5149
5150
5151
5152
5153
5154
5155
5156
5157
5158
5159
5160
5161
5162
5163
5164
5165
5166
5167
5168
5169
5170
5171
5172
5173
5174
5175
5176
5177
5178
5179
5180
5181
5182
5183
5184
5185
5186
5187
5188
5189
5190
5191
5192
5193
5194
5195
5196
5197
5198
5199
5200
5201
5202
5203
5204
5205
5206
5207
5208
5209
5210
5211
5212
5213
5214
5215
5216
5217
5218
5219
5220
5221
5222
5223
5224
5225
5226
5227
5228
5229
5230
5231
5232
5233
5234
5235
5236
5237
5238
5239
5240
5241
5242
5243
5244
5245
5246
5247
5248
5249
5250
5251
5252
5253
5254
5255
5256
5257
5258
5259
5260
5261
5262
5263
5264
5265
5266
5267
5268
5269
5270
5271
5272
5273
5274
5275
5276
5277
5278
5279
5280
5281
5282
5283
5284
5285
5286
5287
5288
5289
5290
5291
5292
5293
5294
5295
5296
5297
5298
5299
5300
5301
5302
5303
5304
5305
5306
5307
5308
5309
5310
5311
5312
5313
5314
5315
5316
5317
5318
5319
5320
5321
5322
5323
5324
5325
5326
5327
5328
5329
5330
5331
5332
5333
5334
5335
5336
5337
5338
5339
5340
5341
5342
5343
5344
5345
5346
5347
5348
5349
5350
5351
5352
5353
5354
5355
5356
5357
5358
5359
5360
5361
5362
5363
5364
5365
5366
5367
5368
5369
5370
5371
5372
5373
5374
5375
5376
5377
5378
5379
5380
5381
5382
5383
5384
5385
5386
5387
5388
5389
5390
5391
5392
5393
5394
5395
5396
5397
5398
5399
5400
5401
5402
5403
5404
5405
5406
5407
5408
5409
5410
5411
5412
5413
5414
5415
5416
5417
5418
5419
5420
5421
5422
5423
5424
5425
5426
5427
5428
5429
5430
5431
5432
5433
5434
5435
5436
5437
5438
5439
5440
5441
5442
5443
5444
5445
5446
5447
5448
5449
5450
5451
5452
5453
5454
5455
5456
5457
5458
5459
5460
5461
5462
5463
5464
5465
5466
5467
5468
5469
5470
5471
5472
5473
5474
5475
5476
5477
5478
5479
5480
5481
5482
5483
5484
5485
5486
5487
5488
5489
5490
5491
5492
5493
5494
5495
5496
5497
5498
5499
5500
5501
5502
5503
5504
5505
5506
5507
5508
5509
5510
5511
5512
5513
5514
5515
5516
5517
5518
5519
5520
5521
5522
5523
5524
5525
5526
5527
5528
5529
5530
5531
5532
5533
5534
5535
5536
5537
5538
5539
5540
5541
5542
5543
5544
5545
5546
5547
5548
5549
5550
5551
5552
5553
5554
5555
5556
5557
5558
5559
5560
5561
5562
5563
5564
5565
5566
5567
5568
5569
5570
5571
5572
5573
5574
5575
5576
5577
5578
5579
5580
5581
5582
5583
5584
5585
5586
5587
5588
5589
5590
5591
5592
5593
5594
5595
5596
5597
5598
5599
5600
5601
5602
5603
5604
5605
5606
5607
5608
5609
5610
5611
5612
5613
5614
5615
5616
5617
5618
5619
5620
5621
5622
5623
5624
5625
5626
5627
5628
5629
5630
5631
5632
5633
5634
5635
5636
5637
5638
5639
5640
5641
5642
5643
5644
5645
5646
5647
5648
5649
5650
5651
5652
5653
5654
5655
5656
5657
5658
5659
5660
5661
5662
5663
5664
5665
5666
5667
5668
5669
5670
5671
5672
5673
5674
5675
5676
5677
5678
5679
5680
5681
5682
5683
5684
5685
5686
5687
5688
5689
5690
5691
5692
5693
5694
5695
5696
5697
5698
5699
5700
5701
5702
5703
5704
5705
5706
5707
5708
5709
5710
5711
5712
5713
5714
5715
5716
5717
5718
5719
5720
5721
5722
5723
5724
5725
5726
5727
5728
5729
5730
5731
5732
5733
5734
5735
5736
5737
5738
5739
5740
5741
5742
5743
5744
5745
5746
ÿþQuintiq translations file
Translations
{
  id: 'Attribute::ASDIPInRun::Details.Description' value: 'This attribute contains information on the details of this `LibOpt_ScopeElement`.'
  id: 'Attribute::ASDIPInRun::Details.Name' value: 'Details'
  id: 'Attribute::ASDIPInRun::Identifier.Description' value: 'An identifier for the `LibOpt_ScopeElement`.'
  id: 'Attribute::ASDIPInRun::Identifier.Name' value: 'Identifier'
  id: 'Attribute::ASDIPInRun::InternalIdentifier.Description' value: 'An identifier to uniquely identify this `LibOpt_ScopeElement`.'
  id: 'Attribute::ASDIPInRun::InternalIdentifier.Name' value: 'InternalIdentifier'
  id: 'Attribute::AccountInOptimizerRun::Details.Description' value: 'This attribute contains information on the details of this `LibOpt_ScopeElement`.'
  id: 'Attribute::AccountInOptimizerRun::Details.Name' value: 'Details'
  id: 'Attribute::AccountInOptimizerRun::Identifier.Description' value: 'An identifier for the `LibOpt_ScopeElement`.'
  id: 'Attribute::AccountInOptimizerRun::Identifier.Name' value: 'Identifier'
  id: 'Attribute::AccountInOptimizerRun::InternalIdentifier.Description' value: 'An identifier to uniquely identify this `LibOpt_ScopeElement`.'
  id: 'Attribute::AccountInOptimizerRun::InternalIdentifier.Name' value: 'InternalIdentifier'
  id: 'Attribute::BT_HighPercentQualityDurationSeconds::IsMinimized.Description' value: 'Boolean indicator if this KPI is to minimized or not.'
  id: 'Attribute::BT_HighPercentQualityDurationSeconds::IsMinimized.Name' value: 'IsMinimized'
  id: 'Attribute::BT_HighPercentQualityDurationSeconds::Name.Description' value: 'The user provided name of the KPI.\nSet via CalcName which can be overridden.'
  id: 'Attribute::BT_HighPercentQualityDurationSeconds::Name.Name' value: 'Name'
  id: 'Attribute::BT_KPIBalanceViolation::IsMinimized.Description' value: 'Boolean indicator if this KPI is to minimized or not.'
  id: 'Attribute::BT_KPIBalanceViolation::IsMinimized.Name' value: 'IsMinimized'
  id: 'Attribute::BT_KPIBalanceViolation::Name.Description' value: 'The user provided name of the KPI.\nSet via CalcName which can be overridden.'
  id: 'Attribute::BT_KPIBalanceViolation::Name.Name' value: 'Name'
  id: 'Attribute::BT_KPIBlending::IsMinimized.Description' value: 'Boolean indicator if this KPI is to minimized or not.'
  id: 'Attribute::BT_KPIBlending::IsMinimized.Name' value: 'IsMinimized'
  id: 'Attribute::BT_KPIBlending::Name.Description' value: 'The user provided name of the KPI.\nSet via CalcName which can be overridden.'
  id: 'Attribute::BT_KPIBlending::Name.Name' value: 'Name'
  id: 'Attribute::BT_KPICampaign::IsMinimized.Description' value: 'Boolean indicator if this KPI is to minimized or not.'
  id: 'Attribute::BT_KPICampaign::IsMinimized.Name' value: 'IsMinimized'
  id: 'Attribute::BT_KPICampaign::Name.Description' value: 'The user provided name of the KPI.\nSet via CalcName which can be overridden.'
  id: 'Attribute::BT_KPICampaign::Name.Name' value: 'Name'
  id: 'Attribute::BT_KPIChangeover::IsMinimized.Description' value: 'Boolean indicator if this KPI is to minimized or not.'
  id: 'Attribute::BT_KPIChangeover::IsMinimized.Name' value: 'IsMinimized'
  id: 'Attribute::BT_KPIChangeover::Name.Description' value: 'The user provided name of the KPI.\nSet via CalcName which can be overridden.'
  id: 'Attribute::BT_KPIChangeover::Name.Name' value: 'Name'
  id: 'Attribute::BT_KPIFixedCost::IsMinimized.Description' value: 'Boolean indicator if this KPI is to minimized or not.'
  id: 'Attribute::BT_KPIFixedCost::IsMinimized.Name' value: 'IsMinimized'
  id: 'Attribute::BT_KPIFixedCost::Name.Description' value: 'The user provided name of the KPI.\nSet via CalcName which can be overridden.'
  id: 'Attribute::BT_KPIFixedCost::Name.Name' value: 'Name'
  id: 'Attribute::BT_KPIFulfillment::IsMinimized.Description' value: 'Boolean indicator if this KPI is to minimized or not.'
  id: 'Attribute::BT_KPIFulfillment::IsMinimized.Name' value: 'IsMinimized'
  id: 'Attribute::BT_KPIFulfillment::Name.Description' value: 'The user provided name of the KPI.\nSet via CalcName which can be overridden.'
  id: 'Attribute::BT_KPIFulfillment::Name.Name' value: 'Name'
  id: 'Attribute::BT_KPIFulfillmentTargetAbsolute::IsMinimized.Description' value: 'Boolean indicator if this KPI is to minimized or not.'
  id: 'Attribute::BT_KPIFulfillmentTargetAbsolute::IsMinimized.Name' value: 'IsMinimized'
  id: 'Attribute::BT_KPIFulfillmentTargetAbsolute::Name.Description' value: 'The user provided name of the KPI.\nSet via CalcName which can be overridden.'
  id: 'Attribute::BT_KPIFulfillmentTargetAbsolute::Name.Name' value: 'Name'
  id: 'Attribute::BT_KPIInputLotSize::IsMinimized.Description' value: 'Boolean indicator if this KPI is to minimized or not.'
  id: 'Attribute::BT_KPIInputLotSize::IsMinimized.Name' value: 'IsMinimized'
  id: 'Attribute::BT_KPIInputLotSize::Name.Description' value: 'The user provided name of the KPI.\nSet via CalcName which can be overridden.'
  id: 'Attribute::BT_KPIInputLotSize::Name.Name' value: 'Name'
  id: 'Attribute::BT_KPIInventoryMixBalancing::IsMinimized.Description' value: 'Boolean indicator if this KPI is to minimized or not.'
  id: 'Attribute::BT_KPIInventoryMixBalancing::IsMinimized.Name' value: 'IsMinimized'
  id: 'Attribute::BT_KPIInventoryMixBalancing::Name.Description' value: 'The user provided name of the KPI.\nSet via CalcName which can be overridden.'
  id: 'Attribute::BT_KPIInventoryMixBalancing::Name.Name' value: 'Name'
  id: 'Attribute::BT_KPIInventorySupplyCost::IsMinimized.Description' value: 'Boolean indicator if this KPI is to minimized or not.'
  id: 'Attribute::BT_KPIInventorySupplyCost::IsMinimized.Name' value: 'IsMinimized'
  id: 'Attribute::BT_KPIInventorySupplyCost::Name.Description' value: 'The user provided name of the KPI.\nSet via CalcName which can be overridden.'
  id: 'Attribute::BT_KPIInventorySupplyCost::Name.Name' value: 'Name'
  id: 'Attribute::BT_KPIInventoryTurns::IsMinimized.Description' value: 'Boolean indicator if this KPI is to minimized or not.'
  id: 'Attribute::BT_KPIInventoryTurns::IsMinimized.Name' value: 'IsMinimized'
  id: 'Attribute::BT_KPIInventoryTurns::Name.Description' value: 'The user provided name of the KPI.\nSet via CalcName which can be overridden.'
  id: 'Attribute::BT_KPIInventoryTurns::Name.Name' value: 'Name'
  id: 'Attribute::BT_KPILotSizeOperation::IsMinimized.Description' value: 'Boolean indicator if this KPI is to minimized or not.'
  id: 'Attribute::BT_KPILotSizeOperation::IsMinimized.Name' value: 'IsMinimized'
  id: 'Attribute::BT_KPILotSizeOperation::Name.Description' value: 'The user provided name of the KPI.\nSet via CalcName which can be overridden.'
  id: 'Attribute::BT_KPILotSizeOperation::Name.Name' value: 'Name'
  id: 'Attribute::BT_KPILotSizeTotal::IsMinimized.Description' value: 'Boolean indicator if this KPI is to minimized or not.'
  id: 'Attribute::BT_KPILotSizeTotal::IsMinimized.Name' value: 'IsMinimized'
  id: 'Attribute::BT_KPILotSizeTotal::Name.Description' value: 'The user provided name of the KPI.\nSet via CalcName which can be overridden.'
  id: 'Attribute::BT_KPILotSizeTotal::Name.Name' value: 'Name'
  id: 'Attribute::BT_KPIMargin::IsMinimized.Description' value: 'Boolean indicator if this KPI is to minimized or not.'
  id: 'Attribute::BT_KPIMargin::IsMinimized.Name' value: 'IsMinimized'
  id: 'Attribute::BT_KPIMargin::Name.Description' value: 'The user provided name of the KPI.\nSet via CalcName which can be overridden.'
  id: 'Attribute::BT_KPIMargin::Name.Name' value: 'Name'
  id: 'Attribute::BT_KPIMaximumInventoryLevel::IsMinimized.Description' value: 'Boolean indicator if this KPI is to minimized or not.'
  id: 'Attribute::BT_KPIMaximumInventoryLevel::IsMinimized.Name' value: 'IsMinimized'
  id: 'Attribute::BT_KPIMaximumInventoryLevel::Name.Description' value: 'The user provided name of the KPI.\nSet via CalcName which can be overridden.'
  id: 'Attribute::BT_KPIMaximumInventoryLevel::Name.Name' value: 'Name'
  id: 'Attribute::BT_KPIMaximumSupply::IsMinimized.Description' value: 'Boolean indicator if this KPI is to minimized or not.'
  id: 'Attribute::BT_KPIMaximumSupply::IsMinimized.Name' value: 'IsMinimized'
  id: 'Attribute::BT_KPIMaximumSupply::Name.Description' value: 'The user provided name of the KPI.\nSet via CalcName which can be overridden.'
  id: 'Attribute::BT_KPIMaximumSupply::Name.Name' value: 'Name'
  id: 'Attribute::BT_KPIMinimumInventoryLevel::IsMinimized.Description' value: 'Boolean indicator if this KPI is to minimized or not.'
  id: 'Attribute::BT_KPIMinimumInventoryLevel::IsMinimized.Name' value: 'IsMinimized'
  id: 'Attribute::BT_KPIMinimumInventoryLevel::Name.Description' value: 'The user provided name of the KPI.\nSet via CalcName which can be overridden.'
  id: 'Attribute::BT_KPIMinimumInventoryLevel::Name.Name' value: 'Name'
  id: 'Attribute::BT_KPIMinimumUnitCapacity::IsMinimized.Description' value: 'Boolean indicator if this KPI is to minimized or not.'
  id: 'Attribute::BT_KPIMinimumUnitCapacity::IsMinimized.Name' value: 'IsMinimized'
  id: 'Attribute::BT_KPIMinimumUnitCapacity::Name.Description' value: 'The user provided name of the KPI.\nSet via CalcName which can be overridden.'
  id: 'Attribute::BT_KPIMinimumUnitCapacity::Name.Name' value: 'Name'
  id: 'Attribute::BT_KPIMinimumsupply::IsMinimized.Description' value: 'Boolean indicator if this KPI is to minimized or not.'
  id: 'Attribute::BT_KPIMinimumsupply::IsMinimized.Name' value: 'IsMinimized'
  id: 'Attribute::BT_KPIMinimumsupply::Name.Description' value: 'The user provided name of the KPI.\nSet via CalcName which can be overridden.'
  id: 'Attribute::BT_KPIMinimumsupply::Name.Name' value: 'Name'
  id: 'Attribute::BT_KPIPostponementPenalty::IsMinimized.Description' value: 'Boolean indicator if this KPI is to minimized or not.'
  id: 'Attribute::BT_KPIPostponementPenalty::IsMinimized.Name' value: 'IsMinimized'
  id: 'Attribute::BT_KPIPostponementPenalty::Name.Description' value: 'The user provided name of the KPI.\nSet via CalcName which can be overridden.'
  id: 'Attribute::BT_KPIPostponementPenalty::Name.Name' value: 'Name'
  id: 'Attribute::BT_KPIProcessMaximumQuantity::IsMinimized.Description' value: 'Boolean indicator if this KPI is to minimized or not.'
  id: 'Attribute::BT_KPIProcessMaximumQuantity::IsMinimized.Name' value: 'IsMinimized'
  id: 'Attribute::BT_KPIProcessMaximumQuantity::Name.Description' value: 'The user provided name of the KPI.\nSet via CalcName which can be overridden.'
  id: 'Attribute::BT_KPIProcessMaximumQuantity::Name.Name' value: 'Name'
  id: 'Attribute::BT_KPIProcessMinimumQuantity::IsMinimized.Description' value: 'Boolean indicator if this KPI is to minimized or not.'
  id: 'Attribute::BT_KPIProcessMinimumQuantity::IsMinimized.Name' value: 'IsMinimized'
  id: 'Attribute::BT_KPIProcessMinimumQuantity::Name.Description' value: 'The user provided name of the KPI.\nSet via CalcName which can be overridden.'
  id: 'Attribute::BT_KPIProcessMinimumQuantity::Name.Name' value: 'Name'
  id: 'Attribute::BT_KPISales::IsMinimized.Description' value: 'Boolean indicator if this KPI is to minimized or not.'
  id: 'Attribute::BT_KPISales::IsMinimized.Name' value: 'IsMinimized'
  id: 'Attribute::BT_KPISales::Name.Description' value: 'The user provided name of the KPI.\nSet via CalcName which can be overridden.'
  id: 'Attribute::BT_KPISales::Name.Name' value: 'Name'
  id: 'Attribute::BT_KPISalesDemandPriority::IsMinimized.Description' value: 'Boolean indicator if this KPI is to minimized or not.'
  id: 'Attribute::BT_KPISalesDemandPriority::IsMinimized.Name' value: 'IsMinimized'
  id: 'Attribute::BT_KPISalesDemandPriority::Name.Description' value: 'The user provided name of the KPI.\nSet via CalcName which can be overridden.'
  id: 'Attribute::BT_KPISalesDemandPriority::Name.Name' value: 'Name'
  id: 'Attribute::BT_KPIServiceLevel::IsMinimized.Description' value: 'Boolean indicator if this KPI is to minimized or not.'
  id: 'Attribute::BT_KPIServiceLevel::IsMinimized.Name' value: 'IsMinimized'
  id: 'Attribute::BT_KPIServiceLevel::Name.Description' value: 'The user provided name of the KPI.\nSet via CalcName which can be overridden.'
  id: 'Attribute::BT_KPIServiceLevel::Name.Name' value: 'Name'
  id: 'Attribute::BT_KPIStockingPointCapacity::IsMinimized.Description' value: 'Boolean indicator if this KPI is to minimized or not.'
  id: 'Attribute::BT_KPIStockingPointCapacity::IsMinimized.Name' value: 'IsMinimized'
  id: 'Attribute::BT_KPIStockingPointCapacity::Name.Description' value: 'The user provided name of the KPI.\nSet via CalcName which can be overridden.'
  id: 'Attribute::BT_KPIStockingPointCapacity::Name.Name' value: 'Name'
  id: 'Attribute::BT_KPISupplyTarget::IsMinimized.Description' value: 'Boolean indicator if this KPI is to minimized or not.'
  id: 'Attribute::BT_KPISupplyTarget::IsMinimized.Name' value: 'IsMinimized'
  id: 'Attribute::BT_KPISupplyTarget::Name.Description' value: 'The user provided name of the KPI.\nSet via CalcName which can be overridden.'
  id: 'Attribute::BT_KPISupplyTarget::Name.Name' value: 'Name'
  id: 'Attribute::BT_KPITargetInventoryLevel::IsMinimized.Description' value: 'Boolean indicator if this KPI is to minimized or not.'
  id: 'Attribute::BT_KPITargetInventoryLevel::IsMinimized.Name' value: 'IsMinimized'
  id: 'Attribute::BT_KPITargetInventoryLevel::Name.Description' value: 'The user provided name of the KPI.\nSet via CalcName which can be overridden.'
  id: 'Attribute::BT_KPITargetInventoryLevel::Name.Name' value: 'Name'
  id: 'Attribute::BT_KPITotalExpiredQuantity::IsMinimized.Description' value: 'Boolean indicator if this KPI is to minimized or not.'
  id: 'Attribute::BT_KPITotalExpiredQuantity::IsMinimized.Name' value: 'IsMinimized'
  id: 'Attribute::BT_KPITotalExpiredQuantity::Name.Description' value: 'The user provided name of the KPI.\nSet via CalcName which can be overridden.'
  id: 'Attribute::BT_KPITotalExpiredQuantity::Name.Name' value: 'Name'
  id: 'Attribute::BT_KPIUnitCapacity::IsMinimized.Description' value: 'Boolean indicator if this KPI is to minimized or not.'
  id: 'Attribute::BT_KPIUnitCapacity::IsMinimized.Name' value: 'IsMinimized'
  id: 'Attribute::BT_KPIUnitCapacity::Name.Description' value: 'The user provided name of the KPI.\nSet via CalcName which can be overridden.'
  id: 'Attribute::BT_KPIUnitCapacity::Name.Name' value: 'Name'
  id: 'Attribute::BT_KPIUnitCapacityNotMet::IsMinimized.Description' value: 'Boolean indicator if this KPI is to minimized or not.'
  id: 'Attribute::BT_KPIUnitCapacityNotMet::IsMinimized.Name' value: 'IsMinimized'
  id: 'Attribute::BT_KPIUnitCapacityNotMet::Name.Description' value: 'The user provided name of the KPI.\nSet via CalcName which can be overridden.'
  id: 'Attribute::BT_KPIUnitCapacityNotMet::Name.Name' value: 'Name'
  id: 'Attribute::BT_KPIVolume::IsMinimized.Description' value: 'Boolean indicator if this KPI is to minimized or not.'
  id: 'Attribute::BT_KPIVolume::IsMinimized.Name' value: 'IsMinimized'
  id: 'Attribute::BT_KPIVolume::Name.Description' value: 'The user provided name of the KPI.\nSet via CalcName which can be overridden.'
  id: 'Attribute::BT_KPIVolume::Name.Name' value: 'Name'
  id: 'Attribute::BT_LowPercentQualityDurationSeconds::IsMinimized.Description' value: 'Boolean indicator if this KPI is to minimized or not.'
  id: 'Attribute::BT_LowPercentQualityDurationSeconds::IsMinimized.Name' value: 'IsMinimized'
  id: 'Attribute::BT_LowPercentQualityDurationSeconds::Name.Description' value: 'The user provided name of the KPI.\nSet via CalcName which can be overridden.'
  id: 'Attribute::BT_LowPercentQualityDurationSeconds::Name.Name' value: 'Name'
  id: 'Attribute::BT_MediumPercentQualityDurationSeconds::IsMinimized.Description' value: 'Boolean indicator if this KPI is to minimized or not.'
  id: 'Attribute::BT_MediumPercentQualityDurationSeconds::IsMinimized.Name' value: 'IsMinimized'
  id: 'Attribute::BT_MediumPercentQualityDurationSeconds::Name.Description' value: 'The user provided name of the KPI.\nSet via CalcName which can be overridden.'
  id: 'Attribute::BT_MediumPercentQualityDurationSeconds::Name.Name' value: 'Name'
  id: 'Attribute::BT_NeighborhoodAverageSize::IsMinimized.Description' value: 'Boolean indicator if this KPI is to minimized or not.'
  id: 'Attribute::BT_NeighborhoodAverageSize::IsMinimized.Name' value: 'IsMinimized'
  id: 'Attribute::BT_NeighborhoodAverageSize::Name.Description' value: 'The user provided name of the KPI.\nSet via CalcName which can be overridden.'
  id: 'Attribute::BT_NeighborhoodAverageSize::Name.Name' value: 'Name'
  id: 'Attribute::BT_NeighborhoodMaxSize::IsMinimized.Description' value: 'Boolean indicator if this KPI is to minimized or not.'
  id: 'Attribute::BT_NeighborhoodMaxSize::IsMinimized.Name' value: 'IsMinimized'
  id: 'Attribute::BT_NeighborhoodMaxSize::Name.Description' value: 'The user provided name of the KPI.\nSet via CalcName which can be overridden.'
  id: 'Attribute::BT_NeighborhoodMaxSize::Name.Name' value: 'Name'
  id: 'Attribute::BT_NeighborhoodSTDSize::IsMinimized.Description' value: 'Boolean indicator if this KPI is to minimized or not.'
  id: 'Attribute::BT_NeighborhoodSTDSize::IsMinimized.Name' value: 'IsMinimized'
  id: 'Attribute::BT_NeighborhoodSTDSize::Name.Description' value: 'The user provided name of the KPI.\nSet via CalcName which can be overridden.'
  id: 'Attribute::BT_NeighborhoodSTDSize::Name.Name' value: 'Name'
  id: 'Attribute::BT_NrInfeasible::IsMinimized.Description' value: 'Boolean indicator if this KPI is to minimized or not.'
  id: 'Attribute::BT_NrInfeasible::IsMinimized.Name' value: 'IsMinimized'
  id: 'Attribute::BT_NrInfeasible::Name.Description' value: 'The user provided name of the KPI.\nSet via CalcName which can be overridden.'
  id: 'Attribute::BT_NrInfeasible::Name.Name' value: 'Name'
  id: 'Attribute::BT_QualityThresholdHigh::IsMinimized.Description' value: 'Boolean indicator if this KPI is to minimized or not.'
  id: 'Attribute::BT_QualityThresholdHigh::IsMinimized.Name' value: 'IsMinimized'
  id: 'Attribute::BT_QualityThresholdHigh::Name.Description' value: 'The user provided name of the KPI.\nSet via CalcName which can be overridden.'
  id: 'Attribute::BT_QualityThresholdHigh::Name.Name' value: 'Name'
  id: 'Attribute::BT_QualityThresholdLow::IsMinimized.Description' value: 'Boolean indicator if this KPI is to minimized or not.'
  id: 'Attribute::BT_QualityThresholdLow::IsMinimized.Name' value: 'IsMinimized'
  id: 'Attribute::BT_QualityThresholdLow::Name.Description' value: 'The user provided name of the KPI.\nSet via CalcName which can be overridden.'
  id: 'Attribute::BT_QualityThresholdLow::Name.Name' value: 'Name'
  id: 'Attribute::BT_QualityThresholdMedium::IsMinimized.Description' value: 'Boolean indicator if this KPI is to minimized or not.'
  id: 'Attribute::BT_QualityThresholdMedium::IsMinimized.Name' value: 'IsMinimized'
  id: 'Attribute::BT_QualityThresholdMedium::Name.Description' value: 'The user provided name of the KPI.\nSet via CalcName which can be overridden.'
  id: 'Attribute::BT_QualityThresholdMedium::Name.Name' value: 'Name'
  id: 'Attribute::BT_ScoreL0::IsMinimized.Description' value: 'Boolean indicator if this KPI is to minimized or not.'
  id: 'Attribute::BT_ScoreL0::IsMinimized.Name' value: 'IsMinimized'
  id: 'Attribute::BT_ScoreL0::Name.Description' value: 'The user provided name of the KPI.\nSet via CalcName which can be overridden.'
  id: 'Attribute::BT_ScoreL0::Name.Name' value: 'Name'
  id: 'Attribute::BT_ScoreL1::IsMinimized.Description' value: 'Boolean indicator if this KPI is to minimized or not.'
  id: 'Attribute::BT_ScoreL1::IsMinimized.Name' value: 'IsMinimized'
  id: 'Attribute::BT_ScoreL1::Name.Description' value: 'The user provided name of the KPI.\nSet via CalcName which can be overridden.'
  id: 'Attribute::BT_ScoreL1::Name.Name' value: 'Name'
  id: 'Attribute::BT_ScoreL2::IsMinimized.Description' value: 'Boolean indicator if this KPI is to minimized or not.'
  id: 'Attribute::BT_ScoreL2::IsMinimized.Name' value: 'IsMinimized'
  id: 'Attribute::BT_ScoreL2::Name.Description' value: 'The user provided name of the KPI.\nSet via CalcName which can be overridden.'
  id: 'Attribute::BT_ScoreL2::Name.Name' value: 'Name'
  id: 'Attribute::BT_ScoreL3::IsMinimized.Description' value: 'Boolean indicator if this KPI is to minimized or not.'
  id: 'Attribute::BT_ScoreL3::IsMinimized.Name' value: 'IsMinimized'
  id: 'Attribute::BT_ScoreL3::Name.Description' value: 'The user provided name of the KPI.\nSet via CalcName which can be overridden.'
  id: 'Attribute::BT_ScoreL3::Name.Name' value: 'Name'
  id: 'Attribute::BT_ScoreL4::IsMinimized.Description' value: 'Boolean indicator if this KPI is to minimized or not.'
  id: 'Attribute::BT_ScoreL4::IsMinimized.Name' value: 'IsMinimized'
  id: 'Attribute::BT_ScoreL4::Name.Description' value: 'The user provided name of the KPI.\nSet via CalcName which can be overridden.'
  id: 'Attribute::BT_ScoreL4::Name.Name' value: 'Name'
  id: 'Attribute::BT_ScoreL5::IsMinimized.Description' value: 'Boolean indicator if this KPI is to minimized or not.'
  id: 'Attribute::BT_ScoreL5::IsMinimized.Name' value: 'IsMinimized'
  id: 'Attribute::BT_ScoreL5::Name.Description' value: 'The user provided name of the KPI.\nSet via CalcName which can be overridden.'
  id: 'Attribute::BT_ScoreL5::Name.Name' value: 'Name'
  id: 'Attribute::BT_ScoreL6::IsMinimized.Description' value: 'Boolean indicator if this KPI is to minimized or not.'
  id: 'Attribute::BT_ScoreL6::IsMinimized.Name' value: 'IsMinimized'
  id: 'Attribute::BT_ScoreL6::Name.Description' value: 'The user provided name of the KPI.\nSet via CalcName which can be overridden.'
  id: 'Attribute::BT_ScoreL6::Name.Name' value: 'Name'
  id: 'Attribute::BT_SecondsSelector::IsMinimized.Description' value: 'Boolean indicator if this KPI is to minimized or not.'
  id: 'Attribute::BT_SecondsSelector::IsMinimized.Name' value: 'IsMinimized'
  id: 'Attribute::BT_SecondsSelector::Name.Description' value: 'The user provided name of the KPI.\nSet via CalcName which can be overridden.'
  id: 'Attribute::BT_SecondsSelector::Name.Name' value: 'Name'
  id: 'Attribute::BT_SecondsSubOptimizer::IsMinimized.Description' value: 'Boolean indicator if this KPI is to minimized or not.'
  id: 'Attribute::BT_SecondsSubOptimizer::IsMinimized.Name' value: 'IsMinimized'
  id: 'Attribute::BT_SecondsSubOptimizer::Name.Description' value: 'The user provided name of the KPI.\nSet via CalcName which can be overridden.'
  id: 'Attribute::BT_SecondsSubOptimizer::Name.Name' value: 'Name'
  id: 'Attribute::BT_SecondsSubOptimizerInit::IsMinimized.Description' value: 'Boolean indicator if this KPI is to minimized or not.'
  id: 'Attribute::BT_SecondsSubOptimizerInit::IsMinimized.Name' value: 'IsMinimized'
  id: 'Attribute::BT_SecondsSubOptimizerInit::Name.Description' value: 'The user provided name of the KPI.\nSet via CalcName which can be overridden.'
  id: 'Attribute::BT_SecondsSubOptimizerInit::Name.Name' value: 'Name'
  id: 'Attribute::BT_SecondsSubOptimizerSolve::IsMinimized.Description' value: 'Boolean indicator if this KPI is to minimized or not.'
  id: 'Attribute::BT_SecondsSubOptimizerSolve::IsMinimized.Name' value: 'IsMinimized'
  id: 'Attribute::BT_SecondsSubOptimizerSolve::Name.Description' value: 'The user provided name of the KPI.\nSet via CalcName which can be overridden.'
  id: 'Attribute::BT_SecondsSubOptimizerSolve::Name.Name' value: 'Name'
  id: 'Attribute::BT_SubOptimizerOther::IsMinimized.Description' value: 'Boolean indicator if this KPI is to minimized or not.'
  id: 'Attribute::BT_SubOptimizerOther::IsMinimized.Name' value: 'IsMinimized'
  id: 'Attribute::BT_SubOptimizerOther::Name.Description' value: 'The user provided name of the KPI.\nSet via CalcName which can be overridden.'
  id: 'Attribute::BT_SubOptimizerOther::Name.Name' value: 'Name'
  id: 'Attribute::CapacityPlanningSuboptimizer::AcceptableRollbackThreshold.Description' value: "The rollback percentage that is deemed 'acceptable' for this `LibOpt_Suboptimizer` before an issue is created.\nMeant to be a value between 0.0 and 100.0"
  id: 'Attribute::CapacityPlanningSuboptimizer::AcceptableRollbackThreshold.Name' value: 'AcceptableRollbackThreshold'
  id: 'Attribute::CapacityPlanningSuboptimizer::AutoRegisterTypeDescriptors.Description' value: 'Whether the suboptimizer should call the `RegisterTypeDescriptors` method automatically or not.\n\nWhen this is enabled and the suboptimizer is not running in one transaction (with `InOneTransaction` is `false`) an additional transaction with a read-write lock on the dataset will be created to register the type descriptors.\nIf the suboptimizer is executed in parallel with some other transactions, this may slow down the suboptimizer.\nIf this is the case, one should set this attribute to `false` and manually register the type descriptors in the `Initialize` and/or `InitializeReactive` methods.'
  id: 'Attribute::CapacityPlanningSuboptimizer::AutoRegisterTypeDescriptors.Name' value: 'AutoRegisterTypeDescriptors'
  id: 'Attribute::CapacityPlanningSuboptimizer::CanBeCalled.Description' value: 'Whether or not this component can be called, given the selected start component.'
  id: 'Attribute::CapacityPlanningSuboptimizer::CanBeCalled.Name' value: 'CanBeCalled'
  id: 'Attribute::CapacityPlanningSuboptimizer::ComponentType.Description' value: 'A short name for this `LibOpt_Component` type.'
  id: 'Attribute::CapacityPlanningSuboptimizer::ComponentType.Name' value: 'ComponentType'
  id: 'Attribute::CapacityPlanningSuboptimizer::ConfigurationError.Description' value: 'The errors in the configuration.'
  id: 'Attribute::CapacityPlanningSuboptimizer::ConfigurationError.Name' value: 'ConfigurationError'
  id: 'Attribute::CapacityPlanningSuboptimizer::Depth.Description' value: 'The highest number of `LibOpt_Components` above this component.'
  id: 'Attribute::CapacityPlanningSuboptimizer::Depth.Name' value: 'Depth'
  id: 'Attribute::CapacityPlanningSuboptimizer::HasBreakpointEvent.Description' value: 'Whether the `LibOpt_Component` is waiting for a `LibOpt_BreakpointEvent`.'
  id: 'Attribute::CapacityPlanningSuboptimizer::HasBreakpointEvent.Name' value: 'HasBreakpointEvent'
  id: 'Attribute::CapacityPlanningSuboptimizer::HasNoBreakpoints.Description' value: 'Whether this `LibOpt_Component` has no `LibOpt_BreakpointConditional` attached to any of its component positions.'
  id: 'Attribute::CapacityPlanningSuboptimizer::HasNoBreakpoints.Name' value: 'HasNoBreakpoints'
  id: 'Attribute::CapacityPlanningSuboptimizer::HasNoDatasetCopies.Description' value: 'Whether this component has no `LibOpt_DatasetCopyConditional` attached to any of its component positions.'
  id: 'Attribute::CapacityPlanningSuboptimizer::HasNoDatasetCopies.Name' value: 'HasNoDatasetCopies'
  id: 'Attribute::CapacityPlanningSuboptimizer::HasRetrievedAlgorithmFromStore.Description' value: 'Indicates whether or not this `LibOpt_SuboptimizerAlgorithm` component retrieved an existing `Algorithm` from the `AlgorithmStore` (by using the `AlgorithmStoreReadAlgorithm` or `AlgorithmStoreReadLastAlgorithm` methods).\nThis attribute can be used later during the execution of the `LibOpt_SuboptimizerAlgorithm`. \n\nNote: If you use any of the `Retrieve*` methods on the `LibOpt_StoredAlgorithm` type, then this attribute is not set.'
  id: 'Attribute::CapacityPlanningSuboptimizer::HasRetrievedAlgorithmFromStore.Name' value: 'HasRetrievedAlgorithmFromStore'
  id: 'Attribute::CapacityPlanningSuboptimizer::HasUniqueName.Description' value: 'Whether the name of this `LibOpt_Component` is unique.'
  id: 'Attribute::CapacityPlanningSuboptimizer::HasUniqueName.Name' value: 'HasUniqueName'
  id: 'Attribute::CapacityPlanningSuboptimizer::InOneTransaction.Description' value: 'This setting determines whether the algorithm should be initialized, solved and the results handled in the same transaction, or if multiple can be used.\nDefault we prefer to have this setting as `false`, as the solving can be done in parallel.\n\nNote that we cannot prevent you from reactively starting a new transaction. If you do so, this setting is meaningless and running in one transaction is broken.'
  id: 'Attribute::CapacityPlanningSuboptimizer::InOneTransaction.Name' value: 'InOneTransaction'
  id: 'Attribute::CapacityPlanningSuboptimizer::IsCorrectlyConfigured.Name' value: 'IsCorrectlyConfigured'
  id: 'Attribute::CapacityPlanningSuboptimizer::IsDatasetCopyEnabled.Description' value: "Used in the UI to set the 'Dataset copies are disabled' image icon in the 'Components' form and to show a constraint to the user.\n    \nAn icon will be shown when:\n1: There is a dataset copy on any component position of this component.\nand either \n2a: The optimizer run is ongoing and `LibOpt_Run.IsCreatingDatasetCopiesEnabled` is set to `false` on the related `LibOpt_Run` object.\n2b: The optimizer run has finished and `LibOpt_Optimizer.IsCreatingDatasetCopiesEnabled` is set to `false` on the related `LibOpt_Optimizer` object."
  id: 'Attribute::CapacityPlanningSuboptimizer::IsDatasetCopyEnabled.Name' value: 'IsDatasetCopyEnabled'
  id: 'Attribute::CapacityPlanningSuboptimizer::IsPostProcessing.Description' value: 'If this attribute is true when a user aborts an optimizer run, then the optimizer will first execute any post processing `LibOpt_LinkIteratorForEach` links before aborting the run. \n\nFor the `LibOpt_IteratorForEachLink` component, this attribute is true when `LibOpt_LinkIteratorForEach.IsPostProcessing` is true for any of its links. \nFor all other components, this attribute is always false.'
  id: 'Attribute::CapacityPlanningSuboptimizer::IsPostProcessing.Name' value: 'IsPostProcessing'
  id: 'Attribute::CapacityPlanningSuboptimizer::Name.Description' value: 'The name of the `LibOpt_Component`.\n\nThe name should be unique within the `LibOpt_Run`.'
  id: 'Attribute::CapacityPlanningSuboptimizer::Name.Name' value: 'Name'
  id: 'Attribute::CapacityPlanningSuboptimizer::NrOfEnabledBreakpoints.Description' value: 'The number of enabled `LibOpt_BreakpointConditionals` that are attached to the `LibOpt_BreakpointPositions` of this component. \nThis attribute is used in the `HasNoBreakpoints` constraint.'
  id: 'Attribute::CapacityPlanningSuboptimizer::NrOfEnabledBreakpoints.Name' value: 'NrOfEnabledBreakpoints'
  id: 'Attribute::CapacityPlanningSuboptimizer::NrOfEnabledDatasetCopies.Description' value: 'The number of enabled `LibOpt_DatasetCopyConditionals` that are attached to the `LibOpt_BreakpointPositions` of this component. \nThis attribute is used in the `HasNoDatasetCopies` constraint.'
  id: 'Attribute::CapacityPlanningSuboptimizer::NrOfEnabledDatasetCopies.Name' value: 'NrOfEnabledDatasetCopies'
  id: 'Attribute::CapacityPlanningSuboptimizer::NrOfRollbacks.Description' value: 'The number of rollbacks that occured for this `LibOpt_Suboptimizer`'
  id: 'Attribute::CapacityPlanningSuboptimizer::NrOfRollbacks.Name' value: 'NrOfRollbacks'
  id: 'Attribute::CapacityPlanningSuboptimizer::NrTimesCalled.Description' value: 'The number of times this component was called (the DoTask method was called).'
  id: 'Attribute::CapacityPlanningSuboptimizer::NrTimesCalled.Name' value: 'NrTimesCalled'
  id: 'Attribute::CapacityPlanningSuboptimizer::Path.Description' value: 'A declarative attribute that contains one Path to this component.\nThis can be used to sort a list of components in a semi-logical way.'
  id: 'Attribute::CapacityPlanningSuboptimizer::Path.Name' value: 'Path'
  id: 'Attribute::CapacityPlanningSuboptimizer::RollbackPercent.Description' value: 'The rollback % for this `LibOpt_Suboptimizer`.'
  id: 'Attribute::CapacityPlanningSuboptimizer::RollbackPercent.Name' value: 'RollbackPercent'
  id: 'Attribute::CapacityPlanningSuboptimizer::SequenceNr.Description' value: 'The position in the sequence of the `LibOpt_Components` in the `LibOpt_Run`.\n\nThe `LibOpt_Components` are sorted according to the `Path`.\nThis is slightly different from sorting on the `Depth`.\n\nThe difference is that the `Path` keeps different branches in a `LibOpt_Switch` together, while sorting on `Depth` intertwines them.\n\nExample:\n\nIf we have a switch with 2 branches, A and C, with each a link to B and D respectively, the sorting order is different.\n\n switch -> A -> B\n switch -> C -> D\n \nNow the `Depth` (and the sorting on `Depth`) will be:\nswitch = 0\nA = 1\nC = 1\nB = 2\nD = 2\n\nThe `Path` (and sorting of the `Path`) will be:\nswitch = "switch"\nA = "switch" -> "A"\nB = "switch" -> "A" -> "B"\nC = "switch" -> "C"\nD = "switch" -> "C" -> "D"'
  id: 'Attribute::CapacityPlanningSuboptimizer::SequenceNr.Name' value: 'SequenceNr'
  id: 'Attribute::CapacityPlanningSuboptimizer::TotalDuration.Description' value: 'Total duration spent on the component during the run'
  id: 'Attribute::CapacityPlanningSuboptimizer::TotalDuration.Name' value: 'TotalDuration'
  id: 'Attribute::LSDIPInRun::Details.Description' value: 'This attribute contains information on the details of this `LibOpt_ScopeElement`.'
  id: 'Attribute::LSDIPInRun::Details.Name' value: 'Details'
  id: 'Attribute::LSDIPInRun::Identifier.Description' value: 'An identifier for the `LibOpt_ScopeElement`.'
  id: 'Attribute::LSDIPInRun::Identifier.Name' value: 'Identifier'
  id: 'Attribute::LSDIPInRun::InternalIdentifier.Description' value: 'An identifier to uniquely identify this `LibOpt_ScopeElement`.'
  id: 'Attribute::LSDIPInRun::InternalIdentifier.Name' value: 'InternalIdentifier'
  id: 'Attribute::LaneLegForOptimization::Details.Description' value: 'This attribute contains information on the details of this `LibOpt_ScopeElement`.'
  id: 'Attribute::LaneLegForOptimization::Details.Name' value: 'Details'
  id: 'Attribute::LaneLegForOptimization::Identifier.Description' value: 'An identifier for the `LibOpt_ScopeElement`.'
  id: 'Attribute::LaneLegForOptimization::Identifier.Name' value: 'Identifier'
  id: 'Attribute::LaneLegForOptimization::InternalIdentifier.Description' value: 'An identifier to uniquely identify this `LibOpt_ScopeElement`.'
  id: 'Attribute::LaneLegForOptimization::InternalIdentifier.Name' value: 'InternalIdentifier'
  id: 'Attribute::LaneLegOfSmartPlanPISPIPInOptimizerRun::Details.Description' value: 'This attribute contains information on the details of this `LibOpt_ScopeElement`.'
  id: 'Attribute::LaneLegOfSmartPlanPISPIPInOptimizerRun::Details.Name' value: 'Details'
  id: 'Attribute::LaneLegOfSmartPlanPISPIPInOptimizerRun::Identifier.Description' value: 'An identifier for the `LibOpt_ScopeElement`.'
  id: 'Attribute::LaneLegOfSmartPlanPISPIPInOptimizerRun::Identifier.Name' value: 'Identifier'
  id: 'Attribute::LaneLegOfSmartPlanPISPIPInOptimizerRun::InternalIdentifier.Description' value: 'An identifier to uniquely identify this `LibOpt_ScopeElement`.'
  id: 'Attribute::LaneLegOfSmartPlanPISPIPInOptimizerRun::InternalIdentifier.Name' value: 'InternalIdentifier'
  id: 'Attribute::LibOpt_Analysis::Filtered.Description' value: 'A `BooleanVector` used to store which snapshots are filtered.\nEach `LibOpt_AnalysisSnapshot` has a `LibOpt_AnalysisSnapshot.SnapshotNr` attribute. \nWhen the boolean in this `BooleanVector` at the `LibOpt_AnalysisSnapshot.SnapshotNr` position is `true`, then the `LibOpt_AnalysisSnapshot` is filtered out and should not be shown.'
  id: 'Attribute::LibOpt_Analysis::Filtered.Name' value: 'Filtered'
  id: 'Attribute::LibOpt_Analysis::HasIterations.Description' value: 'The `LibOpt_Analysis` is linked to a `LibOpt_Run` that has iteration calculation enabled.'
  id: 'Attribute::LibOpt_Analysis::HasIterations.Name' value: 'HasIterations'
  id: 'Attribute::LibOpt_Analysis::MaxSnapshotNr.Description' value: 'The maximum of all `LibOpt_AnalysisSnapshot.SnapshotNr` attributes that are taken into account in this analysis.\nThis attribute is used to not add new snapshots when the analysis is recalculated and the run has more snapshots.'
  id: 'Attribute::LibOpt_Analysis::MaxSnapshotNr.Name' value: 'MaxSnapshotNr'
  id: 'Attribute::LibOpt_Analysis::Name.Description' value: 'The name of the analysis, which allows the user to easily distinguish between multiple analysis. A default name will be given, but this can be changed.'
  id: 'Attribute::LibOpt_Analysis::Name.Name' value: 'Name'
  id: 'Attribute::LibOpt_Analysis::RecalcNr.Description' value: 'This value is increased each time the analysis is recalculated to indicate to the UI that it needs to recalculate as well.'
  id: 'Attribute::LibOpt_Analysis::RecalcNr.Name' value: 'RecalcNr'
  id: 'Attribute::LibOpt_AnalysisAttribute::Name.Description' value: 'The name of the attribute as is defined in the editor.'
  id: 'Attribute::LibOpt_AnalysisAttribute::Name.Name' value: 'Name'
  id: 'Attribute::LibOpt_AnalysisAttribute::Path.Description' value: 'The path of the attribute from its `LibOpt_SnapshotComponent`.\nFor example "Suboptimizer.POA solution initial" is the path from the component snapshot of the component named "Suboptimizer" that has a subsnapshot called "POA solution initial".'
  id: 'Attribute::LibOpt_AnalysisAttribute::Path.Name' value: 'Path'
  id: 'Attribute::LibOpt_AnalysisAttribute::ValueType.Description' value: 'The type of the attribute as defined in the editor.'
  id: 'Attribute::LibOpt_AnalysisAttribute::ValueType.Name' value: 'ValueType'
  id: 'Attribute::LibOpt_AnalysisCorrelation::Average.Description' value: 'The average value of the set of data points defined in the Y relation.'
  id: 'Attribute::LibOpt_AnalysisCorrelation::Average.Name' value: 'Average'
  id: 'Attribute::LibOpt_AnalysisCorrelation::CanBeDeleted.Description' value: 'Whether or not this correlation can be deleted. A correlation created to show specific attributes cannot be deleted, while customly created correlations can.'
  id: 'Attribute::LibOpt_AnalysisCorrelation::CanBeDeleted.Name' value: 'CanBeDeleted'
  id: 'Attribute::LibOpt_AnalysisCorrelation::Correlation.Description' value: 'The correlation coefficient.'
  id: 'Attribute::LibOpt_AnalysisCorrelation::Correlation.Name' value: 'Correlation'
  id: 'Attribute::LibOpt_AnalysisCorrelation::Count.Description' value: 'The amount of data points in this correlation.'
  id: 'Attribute::LibOpt_AnalysisCorrelation::Count.Name' value: 'Count'
  id: 'Attribute::LibOpt_AnalysisCorrelation::Covariance.Description' value: 'The covariance of the data points.'
  id: 'Attribute::LibOpt_AnalysisCorrelation::Covariance.Name' value: 'Covariance'
  id: 'Attribute::LibOpt_AnalysisCorrelation::FiltersInfiniteValues.Description' value: 'Whether this correlation contains infinite values that have been filtered.'
  id: 'Attribute::LibOpt_AnalysisCorrelation::FiltersInfiniteValues.Name' value: 'FiltersInfiniteValues'
  id: 'Attribute::LibOpt_AnalysisCorrelation::IQR.Description' value: 'The interquartile range. This is the distance between the middle 50% of the data. This value represents the IQR of the Y data points.'
  id: 'Attribute::LibOpt_AnalysisCorrelation::IQR.Name' value: 'IQR'
  id: 'Attribute::LibOpt_AnalysisCorrelation::ImgHidesInfiniteValues.Description' value: 'This correlation contains infinite values. They are hidden and not taken into account in the aggregated values.'
  id: 'Attribute::LibOpt_AnalysisCorrelation::ImgHidesInfiniteValues.Name' value: 'ImgHidesInfiniteValues'
  id: 'Attribute::LibOpt_AnalysisCorrelation::LowerFence.Description' value: 'The lowest number that is not considered an outlier of this set of data points defined in the Y relation.'
  id: 'Attribute::LibOpt_AnalysisCorrelation::LowerFence.Name' value: 'LowerFence'
  id: 'Attribute::LibOpt_AnalysisCorrelation::Max.Description' value: 'The highest Y data point.'
  id: 'Attribute::LibOpt_AnalysisCorrelation::Max.Name' value: 'Max'
  id: 'Attribute::LibOpt_AnalysisCorrelation::Median.Description' value: 'The median of the Y data points.\nThis is the value that such that 50% of all data points is lower or equal to this value and 50% of all data points is higher or equal to this value.'
  id: 'Attribute::LibOpt_AnalysisCorrelation::Median.Name' value: 'Median'
  id: 'Attribute::LibOpt_AnalysisCorrelation::Min.Description' value: 'The lowest Y data point.'
  id: 'Attribute::LibOpt_AnalysisCorrelation::Min.Name' value: 'Min'
  id: 'Attribute::LibOpt_AnalysisCorrelation::Name.Description' value: 'The name of the correlation, meant to easily find the correct correlation from the UI.'
  id: 'Attribute::LibOpt_AnalysisCorrelation::Name.Name' value: 'Name'
  id: 'Attribute::LibOpt_AnalysisCorrelation::NrOutliers.Description' value: 'The total number of outliers in data of this correlation.'
  id: 'Attribute::LibOpt_AnalysisCorrelation::NrOutliers.Name' value: 'NrOutliers'
  id: 'Attribute::LibOpt_AnalysisCorrelation::Q1.Description' value: 'The first quartile. 25% of the data is lower or equal to this value, and 75% of the data is higher or equal to this value.\nThis value applies to the Y set.'
  id: 'Attribute::LibOpt_AnalysisCorrelation::Q1.Name' value: 'Q1'
  id: 'Attribute::LibOpt_AnalysisCorrelation::Q3.Description' value: 'The third quartile. 75% of the data is lower or equal to this value, and 25% of the data is higher or equal to this value.\nThis value applies to the Y set.'
  id: 'Attribute::LibOpt_AnalysisCorrelation::Q3.Name' value: 'Q3'
  id: 'Attribute::LibOpt_AnalysisCorrelation::UpperFence.Description' value: 'The highest number that is not considered an outlier of this set of data points defined in the Y relation.'
  id: 'Attribute::LibOpt_AnalysisCorrelation::UpperFence.Name' value: 'UpperFence'
  id: 'Attribute::LibOpt_AnalysisCorrelationPoint::DistanceToMedian.Description' value: 'The distance of this value to the median.'
  id: 'Attribute::LibOpt_AnalysisCorrelationPoint::DistanceToMedian.Name' value: 'DistanceToMedian'
  id: 'Attribute::LibOpt_AnalysisCorrelationPoint::IsFiltered.Description' value: 'Whether or not this data point is filtered (and not taken into account) or not.'
  id: 'Attribute::LibOpt_AnalysisCorrelationPoint::IsFiltered.Name' value: 'IsFiltered'
  id: 'Attribute::LibOpt_AnalysisCorrelationPoint::IsInfinite.Description' value: 'Whether the `LibOpt_AnalysisSnapshotAttribute.Value` of `X` or `Y` is infinite.\n\nIf this is the case, this `LibOpt_AnalysisCorrelationPoint` will be filtered from aggregation, as aggregating with infinite values results in strange behaviors.'
  id: 'Attribute::LibOpt_AnalysisCorrelationPoint::IsInfinite.Name' value: 'IsInfinite'
  id: 'Attribute::LibOpt_AnalysisFilter::Details.Description' value: 'This attribute shows in text what the filter is exactly doing.'
  id: 'Attribute::LibOpt_AnalysisFilter::Details.Name' value: 'Details'
  id: 'Attribute::LibOpt_AnalysisFilter::ImgNegate.Name' value: 'ImgNegate'
  id: 'Attribute::LibOpt_AnalysisFilter::ImgStatus.Name' value: 'ImgStatus'
  id: 'Attribute::LibOpt_AnalysisFilter::IsEnabled.Description' value: 'Whether or not the filter is enabled.'
  id: 'Attribute::LibOpt_AnalysisFilter::IsEnabled.Name' value: 'IsEnabled'
  id: 'Attribute::LibOpt_AnalysisFilter::IsNegated.Description' value: 'Whether or not the inverse value of the filter should be returned. So, if the filter would return true, if `IsNegated` is true, then it will return false.'
  id: 'Attribute::LibOpt_AnalysisFilter::IsNegated.Name' value: 'IsNegated'
  id: 'Attribute::LibOpt_AnalysisFilter::IsUpdated.Description' value: 'Whether or not the filter updated, while the data did not.\nThis allows the user to see the filters that are not applied yet.'
  id: 'Attribute::LibOpt_AnalysisFilter::IsUpdated.Name' value: 'IsUpdated'
  id: 'Attribute::LibOpt_AnalysisFilter::Type.Description' value: 'The type of filter'
  id: 'Attribute::LibOpt_AnalysisFilter::Type.Name' value: 'Type'
  id: 'Attribute::LibOpt_AnalysisFilterAttribute::AttributeName.Description' value: 'The name of the attribute we are filtering on.'
  id: 'Attribute::LibOpt_AnalysisFilterAttribute::AttributeName.Name' value: 'AttributeName'
  id: 'Attribute::LibOpt_AnalysisFilterAttribute::AttributePath.Description' value: "The path of the attribute we're filtering on."
  id: 'Attribute::LibOpt_AnalysisFilterAttribute::AttributePath.Name' value: 'AttributePath'
  id: 'Attribute::LibOpt_AnalysisFilterAttribute::Details.Description' value: 'This attribute shows in text what the filter is exactly doing.'
  id: 'Attribute::LibOpt_AnalysisFilterAttribute::Details.Name' value: 'Details'
  id: 'Attribute::LibOpt_AnalysisFilterAttribute::ImgNegate.Name' value: 'ImgNegate'
  id: 'Attribute::LibOpt_AnalysisFilterAttribute::ImgStatus.Name' value: 'ImgStatus'
  id: 'Attribute::LibOpt_AnalysisFilterAttribute::IsEnabled.Description' value: 'Whether or not the filter is enabled.'
  id: 'Attribute::LibOpt_AnalysisFilterAttribute::IsEnabled.Name' value: 'IsEnabled'
  id: 'Attribute::LibOpt_AnalysisFilterAttribute::IsNegated.Description' value: 'Whether or not the inverse value of the filter should be returned. So, if the filter would return true, if `IsNegated` is true, then it will return false.'
  id: 'Attribute::LibOpt_AnalysisFilterAttribute::IsNegated.Name' value: 'IsNegated'
  id: 'Attribute::LibOpt_AnalysisFilterAttribute::IsUpdated.Description' value: 'Whether or not the filter updated, while the data did not.\nThis allows the user to see the filters that are not applied yet.'
  id: 'Attribute::LibOpt_AnalysisFilterAttribute::IsUpdated.Name' value: 'IsUpdated'
  id: 'Attribute::LibOpt_AnalysisFilterAttribute::Sense.Description' value: 'The sense of the equation; <, >, <=, >=, <> or =.'
  id: 'Attribute::LibOpt_AnalysisFilterAttribute::Sense.Name' value: 'Sense'
  id: 'Attribute::LibOpt_AnalysisFilterAttribute::Type.Description' value: 'The type of filter'
  id: 'Attribute::LibOpt_AnalysisFilterAttribute::Type.Name' value: 'Type'
  id: 'Attribute::LibOpt_AnalysisFilterAttribute::Value.Description' value: 'The right-hand-side value used in the equation.'
  id: 'Attribute::LibOpt_AnalysisFilterAttribute::Value.Name' value: 'Value'
  id: 'Attribute::LibOpt_AnalysisFilterBoolean::Details.Description' value: 'This attribute shows in text what the filter is exactly doing.'
  id: 'Attribute::LibOpt_AnalysisFilterBoolean::Details.Name' value: 'Details'
  id: 'Attribute::LibOpt_AnalysisFilterBoolean::ImgNegate.Name' value: 'ImgNegate'
  id: 'Attribute::LibOpt_AnalysisFilterBoolean::ImgStatus.Name' value: 'ImgStatus'
  id: 'Attribute::LibOpt_AnalysisFilterBoolean::IsEnabled.Description' value: 'Whether or not the filter is enabled.'
  id: 'Attribute::LibOpt_AnalysisFilterBoolean::IsEnabled.Name' value: 'IsEnabled'
  id: 'Attribute::LibOpt_AnalysisFilterBoolean::IsNegated.Description' value: 'Whether or not the inverse value of the filter should be returned. So, if the filter would return true, if `IsNegated` is true, then it will return false.'
  id: 'Attribute::LibOpt_AnalysisFilterBoolean::IsNegated.Name' value: 'IsNegated'
  id: 'Attribute::LibOpt_AnalysisFilterBoolean::IsUpdated.Description' value: 'Whether or not the filter updated, while the data did not.\nThis allows the user to see the filters that are not applied yet.'
  id: 'Attribute::LibOpt_AnalysisFilterBoolean::IsUpdated.Name' value: 'IsUpdated'
  id: 'Attribute::LibOpt_AnalysisFilterBoolean::Type.Description' value: 'The type of filter'
  id: 'Attribute::LibOpt_AnalysisFilterBoolean::Type.Name' value: 'Type'
  id: 'Attribute::LibOpt_AnalysisFilterBooleanAnd::Details.Description' value: 'This attribute shows in text what the filter is exactly doing.'
  id: 'Attribute::LibOpt_AnalysisFilterBooleanAnd::Details.Name' value: 'Details'
  id: 'Attribute::LibOpt_AnalysisFilterBooleanAnd::ImgNegate.Name' value: 'ImgNegate'
  id: 'Attribute::LibOpt_AnalysisFilterBooleanAnd::ImgStatus.Name' value: 'ImgStatus'
  id: 'Attribute::LibOpt_AnalysisFilterBooleanAnd::IsEnabled.Description' value: 'Whether or not the filter is enabled.'
  id: 'Attribute::LibOpt_AnalysisFilterBooleanAnd::IsEnabled.Name' value: 'IsEnabled'
  id: 'Attribute::LibOpt_AnalysisFilterBooleanAnd::IsNegated.Description' value: 'Whether or not the inverse value of the filter should be returned. So, if the filter would return true, if `IsNegated` is true, then it will return false.'
  id: 'Attribute::LibOpt_AnalysisFilterBooleanAnd::IsNegated.Name' value: 'IsNegated'
  id: 'Attribute::LibOpt_AnalysisFilterBooleanAnd::IsUpdated.Description' value: 'Whether or not the filter updated, while the data did not.\nThis allows the user to see the filters that are not applied yet.'
  id: 'Attribute::LibOpt_AnalysisFilterBooleanAnd::IsUpdated.Name' value: 'IsUpdated'
  id: 'Attribute::LibOpt_AnalysisFilterBooleanAnd::Type.Description' value: 'The type of filter'
  id: 'Attribute::LibOpt_AnalysisFilterBooleanAnd::Type.Name' value: 'Type'
  id: 'Attribute::LibOpt_AnalysisFilterBooleanOr::Details.Description' value: 'This attribute shows in text what the filter is exactly doing.'
  id: 'Attribute::LibOpt_AnalysisFilterBooleanOr::Details.Name' value: 'Details'
  id: 'Attribute::LibOpt_AnalysisFilterBooleanOr::ImgNegate.Name' value: 'ImgNegate'
  id: 'Attribute::LibOpt_AnalysisFilterBooleanOr::ImgStatus.Name' value: 'ImgStatus'
  id: 'Attribute::LibOpt_AnalysisFilterBooleanOr::IsEnabled.Description' value: 'Whether or not the filter is enabled.'
  id: 'Attribute::LibOpt_AnalysisFilterBooleanOr::IsEnabled.Name' value: 'IsEnabled'
  id: 'Attribute::LibOpt_AnalysisFilterBooleanOr::IsNegated.Description' value: 'Whether or not the inverse value of the filter should be returned. So, if the filter would return true, if `IsNegated` is true, then it will return false.'
  id: 'Attribute::LibOpt_AnalysisFilterBooleanOr::IsNegated.Name' value: 'IsNegated'
  id: 'Attribute::LibOpt_AnalysisFilterBooleanOr::IsUpdated.Description' value: 'Whether or not the filter updated, while the data did not.\nThis allows the user to see the filters that are not applied yet.'
  id: 'Attribute::LibOpt_AnalysisFilterBooleanOr::IsUpdated.Name' value: 'IsUpdated'
  id: 'Attribute::LibOpt_AnalysisFilterBooleanOr::Type.Description' value: 'The type of filter'
  id: 'Attribute::LibOpt_AnalysisFilterBooleanOr::Type.Name' value: 'Type'
  id: 'Attribute::LibOpt_AnalysisFilterPath::Details.Description' value: 'This attribute shows in text what the filter is exactly doing.'
  id: 'Attribute::LibOpt_AnalysisFilterPath::Details.Name' value: 'Details'
  id: 'Attribute::LibOpt_AnalysisFilterPath::ImgNegate.Name' value: 'ImgNegate'
  id: 'Attribute::LibOpt_AnalysisFilterPath::ImgStatus.Name' value: 'ImgStatus'
  id: 'Attribute::LibOpt_AnalysisFilterPath::IsEnabled.Description' value: 'Whether or not the filter is enabled.'
  id: 'Attribute::LibOpt_AnalysisFilterPath::IsEnabled.Name' value: 'IsEnabled'
  id: 'Attribute::LibOpt_AnalysisFilterPath::IsNegated.Description' value: 'Whether or not the inverse value of the filter should be returned. So, if the filter would return true, if `IsNegated` is true, then it will return false.'
  id: 'Attribute::LibOpt_AnalysisFilterPath::IsNegated.Name' value: 'IsNegated'
  id: 'Attribute::LibOpt_AnalysisFilterPath::IsUpdated.Description' value: 'Whether or not the filter updated, while the data did not.\nThis allows the user to see the filters that are not applied yet.'
  id: 'Attribute::LibOpt_AnalysisFilterPath::IsUpdated.Name' value: 'IsUpdated'
  id: 'Attribute::LibOpt_AnalysisFilterPath::Type.Description' value: 'The type of filter'
  id: 'Attribute::LibOpt_AnalysisFilterPath::Type.Name' value: 'Type'
  id: 'Attribute::LibOpt_AnalysisFilterScopeElement::AsInputScope.Description' value: 'Whether we filter on the input scope or the output scope'
  id: 'Attribute::LibOpt_AnalysisFilterScopeElement::AsInputScope.Name' value: 'AsInputScope'
  id: 'Attribute::LibOpt_AnalysisFilterScopeElement::Details.Description' value: 'This attribute shows in text what the filter is exactly doing.'
  id: 'Attribute::LibOpt_AnalysisFilterScopeElement::Details.Name' value: 'Details'
  id: 'Attribute::LibOpt_AnalysisFilterScopeElement::ImgNegate.Name' value: 'ImgNegate'
  id: 'Attribute::LibOpt_AnalysisFilterScopeElement::ImgStatus.Name' value: 'ImgStatus'
  id: 'Attribute::LibOpt_AnalysisFilterScopeElement::IsEnabled.Description' value: 'Whether or not the filter is enabled.'
  id: 'Attribute::LibOpt_AnalysisFilterScopeElement::IsEnabled.Name' value: 'IsEnabled'
  id: 'Attribute::LibOpt_AnalysisFilterScopeElement::IsNegated.Description' value: 'Whether or not the inverse value of the filter should be returned. So, if the filter would return true, if `IsNegated` is true, then it will return false.'
  id: 'Attribute::LibOpt_AnalysisFilterScopeElement::IsNegated.Name' value: 'IsNegated'
  id: 'Attribute::LibOpt_AnalysisFilterScopeElement::IsUpdated.Description' value: 'Whether or not the filter updated, while the data did not.\nThis allows the user to see the filters that are not applied yet.'
  id: 'Attribute::LibOpt_AnalysisFilterScopeElement::IsUpdated.Name' value: 'IsUpdated'
  id: 'Attribute::LibOpt_AnalysisFilterScopeElement::Tag.Description' value: 'The tag we will also filter on, if `UseTag` is `true`.'
  id: 'Attribute::LibOpt_AnalysisFilterScopeElement::Tag.Name' value: 'Tag'
  id: 'Attribute::LibOpt_AnalysisFilterScopeElement::Type.Description' value: 'The type of filter'
  id: 'Attribute::LibOpt_AnalysisFilterScopeElement::Type.Name' value: 'Type'
  id: 'Attribute::LibOpt_AnalysisFilterScopeElement::UseTag.Description' value: 'Whether or not the filtered snapshot should have a specific scope element with a specific tag or without a specific tag.'
  id: 'Attribute::LibOpt_AnalysisFilterScopeElement::UseTag.Name' value: 'UseTag'
  id: 'Attribute::LibOpt_AnalysisSnapshot::SnapshotNr.Description' value: 'A number used to uniquely identify the analysis snapshots of a run.'
  id: 'Attribute::LibOpt_AnalysisSnapshot::SnapshotNr.Name' value: 'SnapshotNr'
  id: 'Attribute::LibOpt_AnalysisSnapshotAttribute::ToAnalyze.Description' value: 'Whether or not this snapshot attribute should be analyzed or not. If not, it is automatically filtered.'
  id: 'Attribute::LibOpt_AnalysisSnapshotAttribute::ToAnalyze.Name' value: 'ToAnalyze'
  id: 'Attribute::LibOpt_AnalysisSnapshotAttribute::Value.Description' value: 'The value of the attribute on the snapshot.'
  id: 'Attribute::LibOpt_AnalysisSnapshotAttribute::Value.Name' value: 'Value'
  id: 'Attribute::LibOpt_Anchor::LastSelected.Description' value: 'The last time this anchor was selected.'
  id: 'Attribute::LibOpt_Anchor::LastSelected.Name' value: 'LastSelected'
  id: 'Attribute::LibOpt_Anchor::NumberOfTimesSelected.Description' value: 'The number of times this anchor was selected.'
  id: 'Attribute::LibOpt_Anchor::NumberOfTimesSelected.Name' value: 'NumberOfTimesSelected'
  id: 'Attribute::LibOpt_Anchor::NumberOfTimesSelectedSinceUnplanned.Description' value: 'The number of times it was selected since it was unplanned.'
  id: 'Attribute::LibOpt_Anchor::NumberOfTimesSelectedSinceUnplanned.Name' value: 'NumberOfTimesSelectedSinceUnplanned'
  id: 'Attribute::LibOpt_Anchor::RunID.Description' value: '`LibOpt_Anchors` are created in the `LibOpt_ScopeElement.GetAnchorOrCreate` method.\nIn this method, the `RunID` attribute is procedurally set to the `LibOpt_Run.InternalIdentifier` attribute.'
  id: 'Attribute::LibOpt_Anchor::RunID.Name' value: 'RunID'
  id: 'Attribute::LibOpt_Anchor::ScopeElementID.Description' value: '`LibOpt_Anchors` are created in the `LibOpt_ScopeElement.GetAnchorOrCreate` method.\nIn this method, the `ScopeElementID` attribute is procedurally set to the `LibOpt_ScopeElement.InternalIdentifier` attribute.'
  id: 'Attribute::LibOpt_Anchor::ScopeElementID.Name' value: 'ScopeElementID'
  id: 'Attribute::LibOpt_AnchorPicker::ConfigurationError.Description' value: 'The errors in the configuration.'
  id: 'Attribute::LibOpt_AnchorPicker::ConfigurationError.Name' value: 'ConfigurationError'
  id: 'Attribute::LibOpt_AnchorPicker::IsCorrectlyConfigured.Name' value: 'IsCorrectlyConfigured'
  id: 'Attribute::LibOpt_AnchorPickerRandom::ConfigurationError.Description' value: 'The errors in the configuration.'
  id: 'Attribute::LibOpt_AnchorPickerRandom::ConfigurationError.Name' value: 'ConfigurationError'
  id: 'Attribute::LibOpt_AnchorPickerRandom::IsCorrectlyConfigured.Name' value: 'IsCorrectlyConfigured'
  id: 'Attribute::LibOpt_AnchorPickerRoundRobin::ConfigurationError.Description' value: 'The errors in the configuration.'
  id: 'Attribute::LibOpt_AnchorPickerRoundRobin::ConfigurationError.Name' value: 'ConfigurationError'
  id: 'Attribute::LibOpt_AnchorPickerRoundRobin::IsCorrectlyConfigured.Name' value: 'IsCorrectlyConfigured'
  id: 'Attribute::LibOpt_AnchorSet::ConfigurationError.Description' value: 'The errors in the configuration.'
  id: 'Attribute::LibOpt_AnchorSet::ConfigurationError.Name' value: 'ConfigurationError'
  id: 'Attribute::LibOpt_AnchorSet::IsCorrectlyConfigured.Name' value: 'IsCorrectlyConfigured'
  id: 'Attribute::LibOpt_AnchorSetAll::ConfigurationError.Description' value: 'The errors in the configuration.'
  id: 'Attribute::LibOpt_AnchorSetAll::ConfigurationError.Name' value: 'ConfigurationError'
  id: 'Attribute::LibOpt_AnchorSetAll::IsCorrectlyConfigured.Name' value: 'IsCorrectlyConfigured'
  id: 'Attribute::LibOpt_AnchorSetFilter::ConfigurationError.Description' value: 'The errors in the configuration.'
  id: 'Attribute::LibOpt_AnchorSetFilter::ConfigurationError.Name' value: 'ConfigurationError'
  id: 'Attribute::LibOpt_AnchorSetFilter::IsCorrectlyConfigured.Name' value: 'IsCorrectlyConfigured'
  id: 'Attribute::LibOpt_AnchorSetType::ConfigurationError.Description' value: 'The errors in the configuration.'
  id: 'Attribute::LibOpt_AnchorSetType::ConfigurationError.Name' value: 'ConfigurationError'
  id: 'Attribute::LibOpt_AnchorSetType::IsCorrectlyConfigured.Name' value: 'IsCorrectlyConfigured'
  id: 'Attribute::LibOpt_AnchorSetType::TypeName.Description' value: 'The name of the `Type` we want to select.'
  id: 'Attribute::LibOpt_AnchorSetType::TypeName.Name' value: 'TypeName'
  id: 'Attribute::LibOpt_AvailabilityChecker::ConfigurationError.Description' value: 'The errors in the configuration.'
  id: 'Attribute::LibOpt_AvailabilityChecker::ConfigurationError.Name' value: 'ConfigurationError'
  id: 'Attribute::LibOpt_AvailabilityChecker::Details.Description' value: 'Details of the `LibOpt_AvailabilityChecker`.'
  id: 'Attribute::LibOpt_AvailabilityChecker::Details.Name' value: 'Details'
  id: 'Attribute::LibOpt_AvailabilityChecker::IsCorrectlyConfigured.Name' value: 'IsCorrectlyConfigured'
  id: 'Attribute::LibOpt_AvailabilityCheckerAnchorSet::ConfigurationError.Description' value: 'The errors in the configuration.'
  id: 'Attribute::LibOpt_AvailabilityCheckerAnchorSet::ConfigurationError.Name' value: 'ConfigurationError'
  id: 'Attribute::LibOpt_AvailabilityCheckerAnchorSet::Details.Description' value: 'Details of the `LibOpt_AvailabilityChecker`.'
  id: 'Attribute::LibOpt_AvailabilityCheckerAnchorSet::Details.Name' value: 'Details'
  id: 'Attribute::LibOpt_AvailabilityCheckerAnchorSet::IsCorrectlyConfigured.Name' value: 'IsCorrectlyConfigured'
  id: 'Attribute::LibOpt_AvailabilityCheckerBoolean::ConfigurationError.Description' value: 'The errors in the configuration.'
  id: 'Attribute::LibOpt_AvailabilityCheckerBoolean::ConfigurationError.Name' value: 'ConfigurationError'
  id: 'Attribute::LibOpt_AvailabilityCheckerBoolean::Details.Description' value: 'Details of the `LibOpt_AvailabilityChecker`.'
  id: 'Attribute::LibOpt_AvailabilityCheckerBoolean::Details.Name' value: 'Details'
  id: 'Attribute::LibOpt_AvailabilityCheckerBoolean::IsCorrectlyConfigured.Name' value: 'IsCorrectlyConfigured'
  id: 'Attribute::LibOpt_AvailabilityCheckerBoolean::Value.Description' value: 'The value to return in the `CanBeChosen` method.'
  id: 'Attribute::LibOpt_AvailabilityCheckerBoolean::Value.Name' value: 'Value'
  id: 'Attribute::LibOpt_Beacon::Beacon.Description' value: 'An attribute for the sole purpose of being able to find the `LibOpt_Optimization` within the dataset.\n\nHow this works:\nThis attribute will always have value 0.\nWe define a type index on this attribute.\nThis means, that we can always find the `LibOpt_Optimization` object with the type index 0, meaning we can find the single `LibOpt_Optimization` object in the dataset.'
  id: 'Attribute::LibOpt_Beacon::Beacon.Name' value: 'Beacon'
  id: 'Attribute::LibOpt_Breakpoint::BreakpointPositionName.Description' value: 'This attribute has been DEPRECATED. It will be removed when LibOpt 3.0 is released. Please use the `ComponentPositionName` attribute instead.'
  id: 'Attribute::LibOpt_Breakpoint::BreakpointPositionName.Name' value: 'BreakpointPositionName'
  id: 'Attribute::LibOpt_Breakpoint::ComponentName.Description' value: 'The name of the `LibOpt_Component` that is connected to this `LibOpt_Conditional`.'
  id: 'Attribute::LibOpt_Breakpoint::ComponentName.Name' value: 'ComponentName'
  id: 'Attribute::LibOpt_Breakpoint::ComponentPositionName.Description' value: 'The name of the `LibOpt_BreakpointPosition` to which this `LibOpt_Conditional` is attached.'
  id: 'Attribute::LibOpt_Breakpoint::ComponentPositionName.Name' value: 'ComponentPositionName'
  id: 'Attribute::LibOpt_Breakpoint::IsEnabled.Description' value: 'Whether the `LibOpt_Conditional` should be checked or not.'
  id: 'Attribute::LibOpt_Breakpoint::IsEnabled.Name' value: 'IsEnabled'
  id: 'Attribute::LibOpt_Breakpoint::IsTriggered.Name' value: 'IsTriggered'
  id: 'Attribute::LibOpt_Breakpoint::OptimizerName.Description' value: 'The name of the `LibOpt_Optimizer` in which this `LibOpt_Conditional` is set.'
  id: 'Attribute::LibOpt_Breakpoint::OptimizerName.Name' value: 'OptimizerName'
  id: 'Attribute::LibOpt_BreakpointConditional::BreakpointPositionName.Description' value: 'This attribute has been DEPRECATED. It will be removed when LibOpt 3.0 is released. Please use the `ComponentPositionName` attribute instead.'
  id: 'Attribute::LibOpt_BreakpointConditional::BreakpointPositionName.Name' value: 'BreakpointPositionName'
  id: 'Attribute::LibOpt_BreakpointConditional::ComponentName.Description' value: 'The name of the `LibOpt_Component` that is connected to this `LibOpt_Conditional`.'
  id: 'Attribute::LibOpt_BreakpointConditional::ComponentName.Name' value: 'ComponentName'
  id: 'Attribute::LibOpt_BreakpointConditional::ComponentPositionName.Description' value: 'The name of the `LibOpt_BreakpointPosition` to which this `LibOpt_Conditional` is attached.'
  id: 'Attribute::LibOpt_BreakpointConditional::ComponentPositionName.Name' value: 'ComponentPositionName'
  id: 'Attribute::LibOpt_BreakpointConditional::IsEnabled.Description' value: 'Whether the `LibOpt_Conditional` should be checked or not.'
  id: 'Attribute::LibOpt_BreakpointConditional::IsEnabled.Name' value: 'IsEnabled'
  id: 'Attribute::LibOpt_BreakpointConditional::IsTriggered.Name' value: 'IsTriggered'
  id: 'Attribute::LibOpt_BreakpointConditional::OptimizerName.Description' value: 'The name of the `LibOpt_Optimizer` in which this `LibOpt_Conditional` is set.'
  id: 'Attribute::LibOpt_BreakpointConditional::OptimizerName.Name' value: 'OptimizerName'
  id: 'Attribute::LibOpt_BreakpointEvent::AllowedComponents.Description' value: 'The number of `LibOpt_Components` that are allowed to be executed before a next break.\nThis allows us to continue with a single component.'
  id: 'Attribute::LibOpt_BreakpointEvent::AllowedComponents.Name' value: 'AllowedComponents'
  id: 'Attribute::LibOpt_BreakpointEvent::AllowedSteps.Description' value: 'The number of `LibOpt_BreakpointPositions` that are allowed to be skipped before the `LibOpt_Run` needs to be paused again.\nThis allows us to continue with a single step.'
  id: 'Attribute::LibOpt_BreakpointEvent::AllowedSteps.Name' value: 'AllowedSteps'
  id: 'Attribute::LibOpt_BreakpointPosition::Breakpoint.Name' value: 'Breakpoint'
  id: 'Attribute::LibOpt_BreakpointPosition::DatasetCopy.Name' value: 'DatasetCopy'
  id: 'Attribute::LibOpt_BreakpointPosition::DefinitionNameDatasetCopy.Description' value: "The definition name of the attached `LibOpt_DatasetCopyConditional`. \nCan be used in 'Component positions' form to see which `LibOpt_DatasetCopyConditional` type is attached to the `LibOpt_BreakpointPosition`."
  id: 'Attribute::LibOpt_BreakpointPosition::DefinitionNameDatasetCopy.Name' value: 'DefinitionNameDatasetCopy'
  id: 'Attribute::LibOpt_BreakpointPosition::Description.Description' value: 'A description of this `LibOpt_BreakpointPosition`.'
  id: 'Attribute::LibOpt_BreakpointPosition::Description.Name' value: 'Description'
  id: 'Attribute::LibOpt_BreakpointPosition::HasEnabledPropagationAfterUserCode.Description' value: "Used in the UI to set the 'Debugging propagation errors is disabled' image icon in the 'Component Positions' form.\nThe constraint text is used to explain to the AE that enabling the 'Debugging propagation errors' toggle in the 'Runs' and 'Optimizers' forms will help when debugging propagation errors.\n    \nAn icon will be shown (and the constraint will trigger) when:\n1: There is a dataset copy on this component position \n2: This component position is the 'Handle error' component position\nand either \n3a: The optimizer run is ongoing and `LibOpt_Run.HasToPropagateAfterUserCode` is set to `false` on the related `LibOpt_Run` object.\n3b: The optimizer run has finished and `LibOpt_Optimizer.HasToPropagateAfterUserCode` is set to `false` on the related `LibOpt_Optimizer` object."
  id: 'Attribute::LibOpt_BreakpointPosition::HasEnabledPropagationAfterUserCode.Name' value: 'HasEnabledPropagationAfterUserCode'
  id: 'Attribute::LibOpt_BreakpointPosition::HasNoBreakpoints.Description' value: 'Whether this component has no `LibOpt_BreakpointConditional` attached to it.'
  id: 'Attribute::LibOpt_BreakpointPosition::HasNoBreakpoints.Name' value: 'HasNoBreakpoints'
  id: 'Attribute::LibOpt_BreakpointPosition::HasNoBreakpointsConditional.Description' value: 'Whether this component position has no `LibOpt_BreakpointConditional` attached to it.'
  id: 'Attribute::LibOpt_BreakpointPosition::HasNoBreakpointsConditional.Name' value: 'HasNoBreakpointsConditional'
  id: 'Attribute::LibOpt_BreakpointPosition::HasNoDatasetCopies.Description' value: 'Whether this component position has no `LibOpt_DatasetCopyConditional` attached to it.'
  id: 'Attribute::LibOpt_BreakpointPosition::HasNoDatasetCopies.Name' value: 'HasNoDatasetCopies'
  id: 'Attribute::LibOpt_BreakpointPosition::HasNoDatasetCopiesConditional.Description' value: 'Whether this component position has no `LibOpt_DatasetCopyConditional` attached to it.'
  id: 'Attribute::LibOpt_BreakpointPosition::HasNoDatasetCopiesConditional.Name' value: 'HasNoDatasetCopiesConditional'
  id: 'Attribute::LibOpt_BreakpointPosition::IsDatasetCopyEnabled.Description' value: "Used in the UI to set the 'Dataset copies are disabled' image icon in the 'Component Positions' form and to show a constraint to the user.\n    \nAn icon will be shown when:\n1: There is a dataset copy on this component position \nand either \n2a: The optimizer run is ongoing and `LibOpt_Run.IsCreatingDatasetCopiesEnabled` is set to `false` on the related `LibOpt_Run` object.\n2b: The optimizer run has finished and `LibOpt_Optimizer.IsCreatingDatasetCopiesEnabled` is set to `false` on the related `LibOpt_Optimizer` object."
  id: 'Attribute::LibOpt_BreakpointPosition::IsDatasetCopyEnabled.Name' value: 'IsDatasetCopyEnabled'
  id: 'Attribute::LibOpt_BreakpointPosition::Name.Description' value: 'The name of this `LibOpt_BreakpointPosition`.'
  id: 'Attribute::LibOpt_BreakpointPosition::Name.Name' value: 'Name'
  id: 'Attribute::LibOpt_BreakpointPosition::NotDebuggingPropagationErrors.Description' value: "Shows an icon that indicates that the 'Debugging propagation error' toggle is disabled on the latest run"
  id: 'Attribute::LibOpt_BreakpointPosition::NotDebuggingPropagationErrors.Name' value: 'NotDebuggingPropagationErrors'
  id: 'Attribute::LibOpt_BreakpointPosition::SequenceNr.Description' value: 'The number in the sequence of the `LibOpt_BreakpointPosition`.'
  id: 'Attribute::LibOpt_BreakpointPosition::SequenceNr.Name' value: 'SequenceNr'
  id: 'Attribute::LibOpt_BreakpointPosition::SortingNr.Description' value: 'The number that determines the order of the `LibOpt_BreakpointPositions`.\nThis number of procedurally set, so the difference between the `SortingNr` of two adjacent `LibOpt_BreakpointPositions` can be greater than 1.'
  id: 'Attribute::LibOpt_BreakpointPosition::SortingNr.Name' value: 'SortingNr'
  id: 'Attribute::LibOpt_BreakpointPosition::Status.Name' value: 'Status'
  id: 'Attribute::LibOpt_Channel::InternalIdentifier.Description' value: 'An identifier that uniquely identifies this object.\nThis is persistent after a dataset copy (unlike the Key of the object)'
  id: 'Attribute::LibOpt_Channel::InternalIdentifier.Name' value: 'InternalIdentifier'
  id: 'Attribute::LibOpt_Channel::Name.Description' value: 'A unique identifier within the `LibOpt_Run`. This can be used to find the right `LibOpt_Channel`.'
  id: 'Attribute::LibOpt_Channel::Name.Name' value: 'Name'
  id: 'Attribute::LibOpt_ChannelNotify::IsNew.Description' value: 'Whether a new `Algorithm` needs to be created, or whether it should be copied from the parent.'
  id: 'Attribute::LibOpt_ChannelNotify::IsNew.Name' value: 'IsNew'
  id: 'Attribute::LibOpt_Component::Breakpoints.Description' value: 'Whether any component position of this component has one or more breakpoints'
  id: 'Attribute::LibOpt_Component::Breakpoints.Name' value: 'Breakpoints'
  id: 'Attribute::LibOpt_Component::CanBeCalled.Description' value: 'Whether or not this component can be called, given the selected start component.'
  id: 'Attribute::LibOpt_Component::CanBeCalled.Name' value: 'CanBeCalled'
  id: 'Attribute::LibOpt_Component::ComponentType.Description' value: 'A short name for this `LibOpt_Component` type.'
  id: 'Attribute::LibOpt_Component::ComponentType.Name' value: 'ComponentType'
  id: 'Attribute::LibOpt_Component::ConfigurationError.Description' value: 'The errors in the configuration.'
  id: 'Attribute::LibOpt_Component::ConfigurationError.Name' value: 'ConfigurationError'
  id: 'Attribute::LibOpt_Component::DatasetCopies.Description' value: 'Whether any component position of this component has one or more dataset copies (or whether dataset copies are disabled)'
  id: 'Attribute::LibOpt_Component::DatasetCopies.Name' value: 'DatasetCopies'
  id: 'Attribute::LibOpt_Component::Depth.Description' value: 'The highest number of `LibOpt_Components` above this component.'
  id: 'Attribute::LibOpt_Component::Depth.Name' value: 'Depth'
  id: 'Attribute::LibOpt_Component::HasBreakpointEvent.Description' value: 'Whether the `LibOpt_Component` is waiting for a `LibOpt_BreakpointEvent`.'
  id: 'Attribute::LibOpt_Component::HasBreakpointEvent.Name' value: 'HasBreakpointEvent'
  id: 'Attribute::LibOpt_Component::HasNoBreakpoints.Description' value: 'Whether this `LibOpt_Component` has no `LibOpt_BreakpointConditional` attached to any of its component positions.'
  id: 'Attribute::LibOpt_Component::HasNoBreakpoints.Name' value: 'HasNoBreakpoints'
  id: 'Attribute::LibOpt_Component::HasNoDatasetCopies.Description' value: 'Whether this component has no `LibOpt_DatasetCopyConditional` attached to any of its component positions.'
  id: 'Attribute::LibOpt_Component::HasNoDatasetCopies.Name' value: 'HasNoDatasetCopies'
  id: 'Attribute::LibOpt_Component::HasUniqueName.Description' value: 'Whether the name of this `LibOpt_Component` is unique.'
  id: 'Attribute::LibOpt_Component::HasUniqueName.Name' value: 'HasUniqueName'
  id: 'Attribute::LibOpt_Component::ImgStartComponent.Description' value: 'Highlights the start component'
  id: 'Attribute::LibOpt_Component::ImgStartComponent.Name' value: 'ImgStartComponent'
  id: 'Attribute::LibOpt_Component::IsCorrectlyConfigured.Name' value: 'IsCorrectlyConfigured'
  id: 'Attribute::LibOpt_Component::IsDatasetCopyEnabled.Description' value: "Used in the UI to set the 'Dataset copies are disabled' image icon in the 'Components' form and to show a constraint to the user.\n    \nAn icon will be shown when:\n1: There is a dataset copy on any component position of this component.\nand either \n2a: The optimizer run is ongoing and `LibOpt_Run.IsCreatingDatasetCopiesEnabled` is set to `false` on the related `LibOpt_Run` object.\n2b: The optimizer run has finished and `LibOpt_Optimizer.IsCreatingDatasetCopiesEnabled` is set to `false` on the related `LibOpt_Optimizer` object."
  id: 'Attribute::LibOpt_Component::IsDatasetCopyEnabled.Name' value: 'IsDatasetCopyEnabled'
  id: 'Attribute::LibOpt_Component::IsPostProcessing.Description' value: 'If this attribute is true when a user aborts an optimizer run, then the optimizer will first execute any post processing `LibOpt_LinkIteratorForEach` links before aborting the run. \n\nFor the `LibOpt_IteratorForEachLink` component, this attribute is true when `LibOpt_LinkIteratorForEach.IsPostProcessing` is true for any of its links. \nFor all other components, this attribute is always false.'
  id: 'Attribute::LibOpt_Component::IsPostProcessing.Name' value: 'IsPostProcessing'
  id: 'Attribute::LibOpt_Component::Name.Description' value: 'The name of the `LibOpt_Component`.\n\nThe name should be unique within the `LibOpt_Run`.'
  id: 'Attribute::LibOpt_Component::Name.Name' value: 'Name'
  id: 'Attribute::LibOpt_Component::NotAUniqueName.Description' value: 'Whether the name of the component is not unique within the run.\nThis can lead to unexpected behavior while running the optimizer.'
  id: 'Attribute::LibOpt_Component::NotAUniqueName.Name' value: 'NotAUniqueName'
  id: 'Attribute::LibOpt_Component::NotCorrectlyConfigured.Description' value: 'Whether there are any configuration errors for this component.\nFor example, whether a switch has fewer than 2 branches.'
  id: 'Attribute::LibOpt_Component::NotCorrectlyConfigured.Name' value: 'NotCorrectlyConfigured'
  id: 'Attribute::LibOpt_Component::NrOfEnabledBreakpoints.Description' value: 'The number of enabled `LibOpt_BreakpointConditionals` that are attached to the `LibOpt_BreakpointPositions` of this component. \nThis attribute is used in the `HasNoBreakpoints` constraint.'
  id: 'Attribute::LibOpt_Component::NrOfEnabledBreakpoints.Name' value: 'NrOfEnabledBreakpoints'
  id: 'Attribute::LibOpt_Component::NrOfEnabledDatasetCopies.Description' value: 'The number of enabled `LibOpt_DatasetCopyConditionals` that are attached to the `LibOpt_BreakpointPositions` of this component. \nThis attribute is used in the `HasNoDatasetCopies` constraint.'
  id: 'Attribute::LibOpt_Component::NrOfEnabledDatasetCopies.Name' value: 'NrOfEnabledDatasetCopies'
  id: 'Attribute::LibOpt_Component::NrTimesCalled.Description' value: 'The number of times this component was called (the DoTask method was called).'
  id: 'Attribute::LibOpt_Component::NrTimesCalled.Name' value: 'NrTimesCalled'
  id: 'Attribute::LibOpt_Component::Path.Description' value: 'A declarative attribute that contains one Path to this component.\nThis can be used to sort a list of components in a semi-logical way.'
  id: 'Attribute::LibOpt_Component::Path.Name' value: 'Path'
  id: 'Attribute::LibOpt_Component::SequenceNr.Description' value: 'The position in the sequence of the `LibOpt_Components` in the `LibOpt_Run`.\n\nThe `LibOpt_Components` are sorted according to the `Path`.\nThis is slightly different from sorting on the `Depth`.\n\nThe difference is that the `Path` keeps different branches in a `LibOpt_Switch` together, while sorting on `Depth` intertwines them.\n\nExample:\n\nIf we have a switch with 2 branches, A and C, with each a link to B and D respectively, the sorting order is different.\n\n switch -> A -> B\n switch -> C -> D\n \nNow the `Depth` (and the sorting on `Depth`) will be:\nswitch = 0\nA = 1\nC = 1\nB = 2\nD = 2\n\nThe `Path` (and sorting of the `Path`) will be:\nswitch = "switch"\nA = "switch" -> "A"\nB = "switch" -> "A" -> "B"\nC = "switch" -> "C"\nD = "switch" -> "C" -> "D"'
  id: 'Attribute::LibOpt_Component::SequenceNr.Name' value: 'SequenceNr'
  id: 'Attribute::LibOpt_Component::Status.Name' value: 'Status'
  id: 'Attribute::LibOpt_Component::TotalDuration.Description' value: 'Total duration spent on the component during the run'
  id: 'Attribute::LibOpt_Component::TotalDuration.Name' value: 'TotalDuration'
  id: 'Attribute::LibOpt_Component::Type.Description' value: 'The type of the component'
  id: 'Attribute::LibOpt_Component::Type.Name' value: 'Type'
  id: 'Attribute::LibOpt_ComponentConfiguration::ConfigurationError.Description' value: 'The errors in the configuration.'
  id: 'Attribute::LibOpt_ComponentConfiguration::ConfigurationError.Name' value: 'ConfigurationError'
  id: 'Attribute::LibOpt_ComponentConfiguration::IsCorrectlyConfigured.Name' value: 'IsCorrectlyConfigured'
  id: 'Attribute::LibOpt_ComponentParent::Breakpoints.Description' value: 'Whether any component position of this component has one or more breakpoints'
  id: 'Attribute::LibOpt_ComponentParent::Breakpoints.Name' value: 'Breakpoints'
  id: 'Attribute::LibOpt_ComponentParent::CanBeCalled.Description' value: 'Whether or not this component can be called, given the selected start component.'
  id: 'Attribute::LibOpt_ComponentParent::CanBeCalled.Name' value: 'CanBeCalled'
  id: 'Attribute::LibOpt_ComponentParent::ComponentType.Description' value: 'A short name for this `LibOpt_Component` type.'
  id: 'Attribute::LibOpt_ComponentParent::ComponentType.Name' value: 'ComponentType'
  id: 'Attribute::LibOpt_ComponentParent::ConfigurationError.Description' value: 'The errors in the configuration.'
  id: 'Attribute::LibOpt_ComponentParent::ConfigurationError.Name' value: 'ConfigurationError'
  id: 'Attribute::LibOpt_ComponentParent::DatasetCopies.Description' value: 'Whether any component position of this component has one or more dataset copies (or whether dataset copies are disabled)'
  id: 'Attribute::LibOpt_ComponentParent::DatasetCopies.Name' value: 'DatasetCopies'
  id: 'Attribute::LibOpt_ComponentParent::Depth.Description' value: 'The highest number of `LibOpt_Components` above this component.'
  id: 'Attribute::LibOpt_ComponentParent::Depth.Name' value: 'Depth'
  id: 'Attribute::LibOpt_ComponentParent::HasBreakpointEvent.Description' value: 'Whether the `LibOpt_Component` is waiting for a `LibOpt_BreakpointEvent`.'
  id: 'Attribute::LibOpt_ComponentParent::HasBreakpointEvent.Name' value: 'HasBreakpointEvent'
  id: 'Attribute::LibOpt_ComponentParent::HasNoBreakpoints.Description' value: 'Whether this `LibOpt_Component` has no `LibOpt_BreakpointConditional` attached to any of its component positions.'
  id: 'Attribute::LibOpt_ComponentParent::HasNoBreakpoints.Name' value: 'HasNoBreakpoints'
  id: 'Attribute::LibOpt_ComponentParent::HasNoDatasetCopies.Description' value: 'Whether this component has no `LibOpt_DatasetCopyConditional` attached to any of its component positions.'
  id: 'Attribute::LibOpt_ComponentParent::HasNoDatasetCopies.Name' value: 'HasNoDatasetCopies'
  id: 'Attribute::LibOpt_ComponentParent::HasUniqueName.Description' value: 'Whether the name of this `LibOpt_Component` is unique.'
  id: 'Attribute::LibOpt_ComponentParent::HasUniqueName.Name' value: 'HasUniqueName'
  id: 'Attribute::LibOpt_ComponentParent::ImgStartComponent.Description' value: 'Highlights the start component'
  id: 'Attribute::LibOpt_ComponentParent::ImgStartComponent.Name' value: 'ImgStartComponent'
  id: 'Attribute::LibOpt_ComponentParent::IsCorrectlyConfigured.Name' value: 'IsCorrectlyConfigured'
  id: 'Attribute::LibOpt_ComponentParent::IsDatasetCopyEnabled.Description' value: "Used in the UI to set the 'Dataset copies are disabled' image icon in the 'Components' form and to show a constraint to the user.\n    \nAn icon will be shown when:\n1: There is a dataset copy on any component position of this component.\nand either \n2a: The optimizer run is ongoing and `LibOpt_Run.IsCreatingDatasetCopiesEnabled` is set to `false` on the related `LibOpt_Run` object.\n2b: The optimizer run has finished and `LibOpt_Optimizer.IsCreatingDatasetCopiesEnabled` is set to `false` on the related `LibOpt_Optimizer` object."
  id: 'Attribute::LibOpt_ComponentParent::IsDatasetCopyEnabled.Name' value: 'IsDatasetCopyEnabled'
  id: 'Attribute::LibOpt_ComponentParent::IsPostProcessing.Description' value: 'If this attribute is true when a user aborts an optimizer run, then the optimizer will first execute any post processing `LibOpt_LinkIteratorForEach` links before aborting the run. \n\nFor the `LibOpt_IteratorForEachLink` component, this attribute is true when `LibOpt_LinkIteratorForEach.IsPostProcessing` is true for any of its links. \nFor all other components, this attribute is always false.'
  id: 'Attribute::LibOpt_ComponentParent::IsPostProcessing.Name' value: 'IsPostProcessing'
  id: 'Attribute::LibOpt_ComponentParent::Name.Description' value: 'The name of the `LibOpt_Component`.\n\nThe name should be unique within the `LibOpt_Run`.'
  id: 'Attribute::LibOpt_ComponentParent::Name.Name' value: 'Name'
  id: 'Attribute::LibOpt_ComponentParent::NotAUniqueName.Description' value: 'Whether the name of the component is not unique within the run.\nThis can lead to unexpected behavior while running the optimizer.'
  id: 'Attribute::LibOpt_ComponentParent::NotAUniqueName.Name' value: 'NotAUniqueName'
  id: 'Attribute::LibOpt_ComponentParent::NotCorrectlyConfigured.Description' value: 'Whether there are any configuration errors for this component.\nFor example, whether a switch has fewer than 2 branches.'
  id: 'Attribute::LibOpt_ComponentParent::NotCorrectlyConfigured.Name' value: 'NotCorrectlyConfigured'
  id: 'Attribute::LibOpt_ComponentParent::NrOfEnabledBreakpoints.Description' value: 'The number of enabled `LibOpt_BreakpointConditionals` that are attached to the `LibOpt_BreakpointPositions` of this component. \nThis attribute is used in the `HasNoBreakpoints` constraint.'
  id: 'Attribute::LibOpt_ComponentParent::NrOfEnabledBreakpoints.Name' value: 'NrOfEnabledBreakpoints'
  id: 'Attribute::LibOpt_ComponentParent::NrOfEnabledDatasetCopies.Description' value: 'The number of enabled `LibOpt_DatasetCopyConditionals` that are attached to the `LibOpt_BreakpointPositions` of this component. \nThis attribute is used in the `HasNoDatasetCopies` constraint.'
  id: 'Attribute::LibOpt_ComponentParent::NrOfEnabledDatasetCopies.Name' value: 'NrOfEnabledDatasetCopies'
  id: 'Attribute::LibOpt_ComponentParent::NrTimesCalled.Description' value: 'The number of times this component was called (the DoTask method was called).'
  id: 'Attribute::LibOpt_ComponentParent::NrTimesCalled.Name' value: 'NrTimesCalled'
  id: 'Attribute::LibOpt_ComponentParent::Path.Description' value: 'A declarative attribute that contains one Path to this component.\nThis can be used to sort a list of components in a semi-logical way.'
  id: 'Attribute::LibOpt_ComponentParent::Path.Name' value: 'Path'
  id: 'Attribute::LibOpt_ComponentParent::SequenceNr.Description' value: 'The position in the sequence of the `LibOpt_Components` in the `LibOpt_Run`.\n\nThe `LibOpt_Components` are sorted according to the `Path`.\nThis is slightly different from sorting on the `Depth`.\n\nThe difference is that the `Path` keeps different branches in a `LibOpt_Switch` together, while sorting on `Depth` intertwines them.\n\nExample:\n\nIf we have a switch with 2 branches, A and C, with each a link to B and D respectively, the sorting order is different.\n\n switch -> A -> B\n switch -> C -> D\n \nNow the `Depth` (and the sorting on `Depth`) will be:\nswitch = 0\nA = 1\nC = 1\nB = 2\nD = 2\n\nThe `Path` (and sorting of the `Path`) will be:\nswitch = "switch"\nA = "switch" -> "A"\nB = "switch" -> "A" -> "B"\nC = "switch" -> "C"\nD = "switch" -> "C" -> "D"'
  id: 'Attribute::LibOpt_ComponentParent::SequenceNr.Name' value: 'SequenceNr'
  id: 'Attribute::LibOpt_ComponentParent::Status.Name' value: 'Status'
  id: 'Attribute::LibOpt_ComponentParent::TotalDuration.Description' value: 'Total duration spent on the component during the run'
  id: 'Attribute::LibOpt_ComponentParent::TotalDuration.Name' value: 'TotalDuration'
  id: 'Attribute::LibOpt_ComponentParent::Type.Description' value: 'The type of the component'
  id: 'Attribute::LibOpt_ComponentParent::Type.Name' value: 'Type'
  id: 'Attribute::LibOpt_ComponentParentTemp::Breakpoints.Description' value: 'Whether any component position of this component has one or more breakpoints'
  id: 'Attribute::LibOpt_ComponentParentTemp::Breakpoints.Name' value: 'Breakpoints'
  id: 'Attribute::LibOpt_ComponentParentTemp::CanBeCalled.Description' value: 'Whether or not this component can be called, given the selected start component.'
  id: 'Attribute::LibOpt_ComponentParentTemp::CanBeCalled.Name' value: 'CanBeCalled'
  id: 'Attribute::LibOpt_ComponentParentTemp::ComponentType.Description' value: 'A short name for this `LibOpt_Component` type.'
  id: 'Attribute::LibOpt_ComponentParentTemp::ComponentType.Name' value: 'ComponentType'
  id: 'Attribute::LibOpt_ComponentParentTemp::ConfigurationError.Description' value: 'The errors in the configuration.'
  id: 'Attribute::LibOpt_ComponentParentTemp::ConfigurationError.Name' value: 'ConfigurationError'
  id: 'Attribute::LibOpt_ComponentParentTemp::DatasetCopies.Description' value: 'Whether any component position of this component has one or more dataset copies (or whether dataset copies are disabled)'
  id: 'Attribute::LibOpt_ComponentParentTemp::DatasetCopies.Name' value: 'DatasetCopies'
  id: 'Attribute::LibOpt_ComponentParentTemp::Depth.Description' value: 'The highest number of `LibOpt_Components` above this component.'
  id: 'Attribute::LibOpt_ComponentParentTemp::Depth.Name' value: 'Depth'
  id: 'Attribute::LibOpt_ComponentParentTemp::HasBreakpointEvent.Description' value: 'Whether the `LibOpt_Component` is waiting for a `LibOpt_BreakpointEvent`.'
  id: 'Attribute::LibOpt_ComponentParentTemp::HasBreakpointEvent.Name' value: 'HasBreakpointEvent'
  id: 'Attribute::LibOpt_ComponentParentTemp::HasNoBreakpoints.Description' value: 'Whether this `LibOpt_Component` has no `LibOpt_BreakpointConditional` attached to any of its component positions.'
  id: 'Attribute::LibOpt_ComponentParentTemp::HasNoBreakpoints.Name' value: 'HasNoBreakpoints'
  id: 'Attribute::LibOpt_ComponentParentTemp::HasNoDatasetCopies.Description' value: 'Whether this component has no `LibOpt_DatasetCopyConditional` attached to any of its component positions.'
  id: 'Attribute::LibOpt_ComponentParentTemp::HasNoDatasetCopies.Name' value: 'HasNoDatasetCopies'
  id: 'Attribute::LibOpt_ComponentParentTemp::HasUniqueName.Description' value: 'Whether the name of this `LibOpt_Component` is unique.'
  id: 'Attribute::LibOpt_ComponentParentTemp::HasUniqueName.Name' value: 'HasUniqueName'
  id: 'Attribute::LibOpt_ComponentParentTemp::ImgStartComponent.Description' value: 'Highlights the start component'
  id: 'Attribute::LibOpt_ComponentParentTemp::ImgStartComponent.Name' value: 'ImgStartComponent'
  id: 'Attribute::LibOpt_ComponentParentTemp::IsCorrectlyConfigured.Name' value: 'IsCorrectlyConfigured'
  id: 'Attribute::LibOpt_ComponentParentTemp::IsDatasetCopyEnabled.Description' value: "Used in the UI to set the 'Dataset copies are disabled' image icon in the 'Components' form and to show a constraint to the user.\n    \nAn icon will be shown when:\n1: There is a dataset copy on any component position of this component.\nand either \n2a: The optimizer run is ongoing and `LibOpt_Run.IsCreatingDatasetCopiesEnabled` is set to `false` on the related `LibOpt_Run` object.\n2b: The optimizer run has finished and `LibOpt_Optimizer.IsCreatingDatasetCopiesEnabled` is set to `false` on the related `LibOpt_Optimizer` object."
  id: 'Attribute::LibOpt_ComponentParentTemp::IsDatasetCopyEnabled.Name' value: 'IsDatasetCopyEnabled'
  id: 'Attribute::LibOpt_ComponentParentTemp::IsPostProcessing.Description' value: 'If this attribute is true when a user aborts an optimizer run, then the optimizer will first execute any post processing `LibOpt_LinkIteratorForEach` links before aborting the run. \n\nFor the `LibOpt_IteratorForEachLink` component, this attribute is true when `LibOpt_LinkIteratorForEach.IsPostProcessing` is true for any of its links. \nFor all other components, this attribute is always false.'
  id: 'Attribute::LibOpt_ComponentParentTemp::IsPostProcessing.Name' value: 'IsPostProcessing'
  id: 'Attribute::LibOpt_ComponentParentTemp::Name.Description' value: 'The name of the `LibOpt_Component`.\n\nThe name should be unique within the `LibOpt_Run`.'
  id: 'Attribute::LibOpt_ComponentParentTemp::Name.Name' value: 'Name'
  id: 'Attribute::LibOpt_ComponentParentTemp::NotAUniqueName.Description' value: 'Whether the name of the component is not unique within the run.\nThis can lead to unexpected behavior while running the optimizer.'
  id: 'Attribute::LibOpt_ComponentParentTemp::NotAUniqueName.Name' value: 'NotAUniqueName'
  id: 'Attribute::LibOpt_ComponentParentTemp::NotCorrectlyConfigured.Description' value: 'Whether there are any configuration errors for this component.\nFor example, whether a switch has fewer than 2 branches.'
  id: 'Attribute::LibOpt_ComponentParentTemp::NotCorrectlyConfigured.Name' value: 'NotCorrectlyConfigured'
  id: 'Attribute::LibOpt_ComponentParentTemp::NrOfEnabledBreakpoints.Description' value: 'The number of enabled `LibOpt_BreakpointConditionals` that are attached to the `LibOpt_BreakpointPositions` of this component. \nThis attribute is used in the `HasNoBreakpoints` constraint.'
  id: 'Attribute::LibOpt_ComponentParentTemp::NrOfEnabledBreakpoints.Name' value: 'NrOfEnabledBreakpoints'
  id: 'Attribute::LibOpt_ComponentParentTemp::NrOfEnabledDatasetCopies.Description' value: 'The number of enabled `LibOpt_DatasetCopyConditionals` that are attached to the `LibOpt_BreakpointPositions` of this component. \nThis attribute is used in the `HasNoDatasetCopies` constraint.'
  id: 'Attribute::LibOpt_ComponentParentTemp::NrOfEnabledDatasetCopies.Name' value: 'NrOfEnabledDatasetCopies'
  id: 'Attribute::LibOpt_ComponentParentTemp::NrTimesCalled.Description' value: 'The number of times this component was called (the DoTask method was called).'
  id: 'Attribute::LibOpt_ComponentParentTemp::NrTimesCalled.Name' value: 'NrTimesCalled'
  id: 'Attribute::LibOpt_ComponentParentTemp::Path.Description' value: 'A declarative attribute that contains one Path to this component.\nThis can be used to sort a list of components in a semi-logical way.'
  id: 'Attribute::LibOpt_ComponentParentTemp::Path.Name' value: 'Path'
  id: 'Attribute::LibOpt_ComponentParentTemp::SequenceNr.Description' value: 'The position in the sequence of the `LibOpt_Components` in the `LibOpt_Run`.\n\nThe `LibOpt_Components` are sorted according to the `Path`.\nThis is slightly different from sorting on the `Depth`.\n\nThe difference is that the `Path` keeps different branches in a `LibOpt_Switch` together, while sorting on `Depth` intertwines them.\n\nExample:\n\nIf we have a switch with 2 branches, A and C, with each a link to B and D respectively, the sorting order is different.\n\n switch -> A -> B\n switch -> C -> D\n \nNow the `Depth` (and the sorting on `Depth`) will be:\nswitch = 0\nA = 1\nC = 1\nB = 2\nD = 2\n\nThe `Path` (and sorting of the `Path`) will be:\nswitch = "switch"\nA = "switch" -> "A"\nB = "switch" -> "A" -> "B"\nC = "switch" -> "C"\nD = "switch" -> "C" -> "D"'
  id: 'Attribute::LibOpt_ComponentParentTemp::SequenceNr.Name' value: 'SequenceNr'
  id: 'Attribute::LibOpt_ComponentParentTemp::Status.Name' value: 'Status'
  id: 'Attribute::LibOpt_ComponentParentTemp::TotalDuration.Description' value: 'Total duration spent on the component during the run'
  id: 'Attribute::LibOpt_ComponentParentTemp::TotalDuration.Name' value: 'TotalDuration'
  id: 'Attribute::LibOpt_ComponentParentTemp::Type.Description' value: 'The type of the component'
  id: 'Attribute::LibOpt_ComponentParentTemp::Type.Name' value: 'Type'
  id: 'Attribute::LibOpt_Conditional::ComponentName.Description' value: 'The name of the `LibOpt_Component` that is connected to this `LibOpt_Conditional`.'
  id: 'Attribute::LibOpt_Conditional::ComponentName.Name' value: 'ComponentName'
  id: 'Attribute::LibOpt_Conditional::ComponentPositionName.Description' value: 'The name of the `LibOpt_BreakpointPosition` to which this `LibOpt_Conditional` is attached.'
  id: 'Attribute::LibOpt_Conditional::ComponentPositionName.Name' value: 'ComponentPositionName'
  id: 'Attribute::LibOpt_Conditional::IsEnabled.Description' value: 'Whether the `LibOpt_Conditional` should be checked or not.'
  id: 'Attribute::LibOpt_Conditional::IsEnabled.Name' value: 'IsEnabled'
  id: 'Attribute::LibOpt_Conditional::OptimizerName.Description' value: 'The name of the `LibOpt_Optimizer` in which this `LibOpt_Conditional` is set.'
  id: 'Attribute::LibOpt_Conditional::OptimizerName.Name' value: 'OptimizerName'
  id: 'Attribute::LibOpt_ControllerRun::AbortedOn.Description' value: "The time that the `LibOpt_ControllerRun` received the information that the `LibOpt_Run` has been aborted.\n\nA `LibOpt_ControllerRun` can be marked as 'aborted' for several reasons:\n 1: The corresponding `LibOpt_Run` has been aborted by the user from the UI.\n 2: The dataset of the corresponding `LibOpt_Run` gets reloaded.\n 3: The `LibOpt_OptimizerRunController.AbortUnalignedControllerRuns` daemon notices that the dataset of the `LibOpt_Run` is no longer loaded.\n 4: The `LibOpt_OptimizerRunController` is reloaded."
  id: 'Attribute::LibOpt_ControllerRun::AbortedOn.Name' value: 'AbortedOn'
  id: 'Attribute::LibOpt_ControllerRun::CPUThreadsRequested.Description' value: "Number of CPU threads that are requested by the corresponding `LibOpt_Run`.\nThis value can be set for new `LibOpt_Runs` in the 'Settings run controller' dialog, which can be found in the context menu of the 'Optimizers' form."
  id: 'Attribute::LibOpt_ControllerRun::CPUThreadsRequested.Name' value: 'CPUThreadsRequested'
  id: 'Attribute::LibOpt_ControllerRun::DatasetKey.Description' value: 'Dataset key of the dataset of the corresponding `LibOpt_Run`.'
  id: 'Attribute::LibOpt_ControllerRun::DatasetKey.Name' value: 'DatasetKey'
  id: 'Attribute::LibOpt_ControllerRun::DatasetName.Description' value: 'Dataset name of the dataset of the corresponding `LibOpt_Run`.'
  id: 'Attribute::LibOpt_ControllerRun::DatasetName.Name' value: 'DatasetName'
  id: 'Attribute::LibOpt_ControllerRun::FinishedOn.Description' value: 'The time that the corresponding `LibOpt_Run` finished.\n\nThis value is set reactively in a separate transaction from `LibOpt_Run.FinishedOn`. Therefore, `LibOpt_Run.FinishedOn` will always be a bit smaller than `LibOpt_ControllerRun.FinishedOn`'
  id: 'Attribute::LibOpt_ControllerRun::FinishedOn.Name' value: 'FinishedOn'
  id: 'Attribute::LibOpt_ControllerRun::HasFinished.Description' value: 'Boolean to indicate whether the run has completely finished running. \n\nNote: `LibOpt_ControllerRuns` that are aborted are not automatically marked as finished. \nPlease use the `HasStopped` attribute for runs that are either aborted or finished.'
  id: 'Attribute::LibOpt_ControllerRun::HasFinished.Name' value: 'HasFinished'
  id: 'Attribute::LibOpt_ControllerRun::HasStarted.Description' value: 'This attribute is true when the `LibOpt_OptimizerRunController` has given approval to start the `LibOpt_Run`.'
  id: 'Attribute::LibOpt_ControllerRun::HasStarted.Name' value: 'HasStarted'
  id: 'Attribute::LibOpt_ControllerRun::HasStopped.Description' value: 'This attribute is true if the run finished without any issues (so if `this.HasFinished()` = `true`) or if the run was aborted (so if `this.IsAborted()` = `true`)'
  id: 'Attribute::LibOpt_ControllerRun::HasStopped.Name' value: 'HasStopped'
  id: 'Attribute::LibOpt_ControllerRun::IsAborted.Description' value: 'This attribute is true when the corresponding `LibOpt_Run` has been aborted. \nSee also `LibOpt_ControllerRun.AbortedOn`.'
  id: 'Attribute::LibOpt_ControllerRun::IsAborted.Name' value: 'IsAborted'
  id: 'Attribute::LibOpt_ControllerRun::IsRunning.Description' value: "Boolean indicating whether the corresponding `LibOpt_Run` is running.\nThis value is true if the run has started and isn't finished or aborted. \n\nWhile this value is true, the `LibOpt_OptimizerRunController` will reserve CPU threads for the corresponding `LibOpt_Run`.\nNote: If a dataset is unexpectedly unloaded during a run, the value will stay true.\nIn this case, the `LibOpt_OptimizerRunController.AbortUnalignedControllerRuns` daemon will ensure that `IsAborted` is set to `true`, so that `IsRunning` is set to `false`."
  id: 'Attribute::LibOpt_ControllerRun::IsRunning.Name' value: 'IsRunning'
  id: 'Attribute::LibOpt_ControllerRun::OptimizerName.Description' value: 'Name of the optimizer of the corresponding `LibOpt_Run`.'
  id: 'Attribute::LibOpt_ControllerRun::OptimizerName.Name' value: 'OptimizerName'
  id: 'Attribute::LibOpt_ControllerRun::RequestedOn.Description' value: 'Time that the corresponding `LibOpt_Run` was requested to the `LibOpt_OptimizerRunController`.\n\nThis value is exactly the same as `LibOpt_Run.RequestedOn`.'
  id: 'Attribute::LibOpt_ControllerRun::RequestedOn.Name' value: 'RequestedOn'
  id: 'Attribute::LibOpt_ControllerRun::RunKey.Description' value: 'Key of the corresponding `LibOpt_Run`.'
  id: 'Attribute::LibOpt_ControllerRun::RunKey.Name' value: 'RunKey'
  id: 'Attribute::LibOpt_ControllerRun::RunNr.Description' value: 'Run number of the corresponding `LibOpt_Run`.'
  id: 'Attribute::LibOpt_ControllerRun::RunNr.Name' value: 'RunNr'
  id: 'Attribute::LibOpt_ControllerRun::SequenceNr.Description' value: 'When a `LibOpt_OptimizerRunController` receives a request to start a new `LibOpt_Run`, then a new `LibOpt_ControllerRun` gets created. \nThis new `LibOpt_ControllerRun` will be the last element in the sequence. \n\nWhen the `LibOpt_OptimizerRunController` can start a new run, it will always start the unstarted run with the lowest sequence number.'
  id: 'Attribute::LibOpt_ControllerRun::SequenceNr.Name' value: 'SequenceNr'
  id: 'Attribute::LibOpt_ControllerRun::StartedOn.Description' value: 'Time that the `LibOpt_OptimizerRunController` sent an approval to the `LibOpt_Run` that it can start. \n\nNote: `LibOpt_ControllerRun.StartedOn` is slightly smaller than `LibOpt_Run.StartedOn`, as the values are set in separate (reactive) transactions.'
  id: 'Attribute::LibOpt_ControllerRun::StartedOn.Name' value: 'StartedOn'
  id: 'Attribute::LibOpt_CurrentTransaction::TransactionGUID.Name' value: 'TransactionGUID'
  id: 'Attribute::LibOpt_DatasetCopyConditional::ComponentName.Description' value: 'The name of the `LibOpt_Component` that is connected to this `LibOpt_Conditional`.'
  id: 'Attribute::LibOpt_DatasetCopyConditional::ComponentName.Name' value: 'ComponentName'
  id: 'Attribute::LibOpt_DatasetCopyConditional::ComponentPositionName.Description' value: 'The name of the `LibOpt_BreakpointPosition` to which this `LibOpt_Conditional` is attached.'
  id: 'Attribute::LibOpt_DatasetCopyConditional::ComponentPositionName.Name' value: 'ComponentPositionName'
  id: 'Attribute::LibOpt_DatasetCopyConditional::IsEnabled.Description' value: 'Whether the `LibOpt_Conditional` should be checked or not.'
  id: 'Attribute::LibOpt_DatasetCopyConditional::IsEnabled.Name' value: 'IsEnabled'
  id: 'Attribute::LibOpt_DatasetCopyConditional::IsFlaggedForDeletion.Description' value: "When the 'Remove dataset copy' button is pressed in the 'Component' or 'Component position' forms, then this boolean is set to `true`.\nThe `LibOpt_DatasetCopyConditional` object is not actually deleted at that point, because the `DeleteCondition` method of this object is still needed to delete any created datasets copies.\nWhen the `DeleteCondition` method is evaluated for all created dataset copies that have been created with this `LibOpt_DatasetCopyConditional` object, then the `LibOpt_DatasetCopyConditional` is deleted. \nThis happens in the `DeleteWhenFlagged` method."
  id: 'Attribute::LibOpt_DatasetCopyConditional::IsFlaggedForDeletion.Name' value: 'IsFlaggedForDeletion'
  id: 'Attribute::LibOpt_DatasetCopyConditional::OptimizerName.Description' value: 'The name of the `LibOpt_Optimizer` in which this `LibOpt_Conditional` is set.'
  id: 'Attribute::LibOpt_DatasetCopyConditional::OptimizerName.Name' value: 'OptimizerName'
  id: 'Attribute::LibOpt_DatasetCopyConditionalNotSelectable::ComponentName.Description' value: 'The name of the `LibOpt_Component` that is connected to this `LibOpt_Conditional`.'
  id: 'Attribute::LibOpt_DatasetCopyConditionalNotSelectable::ComponentName.Name' value: 'ComponentName'
  id: 'Attribute::LibOpt_DatasetCopyConditionalNotSelectable::ComponentPositionName.Description' value: 'The name of the `LibOpt_BreakpointPosition` to which this `LibOpt_Conditional` is attached.'
  id: 'Attribute::LibOpt_DatasetCopyConditionalNotSelectable::ComponentPositionName.Name' value: 'ComponentPositionName'
  id: 'Attribute::LibOpt_DatasetCopyConditionalNotSelectable::IsEnabled.Description' value: 'Whether the `LibOpt_Conditional` should be checked or not.'
  id: 'Attribute::LibOpt_DatasetCopyConditionalNotSelectable::IsEnabled.Name' value: 'IsEnabled'
  id: 'Attribute::LibOpt_DatasetCopyConditionalNotSelectable::IsFlaggedForDeletion.Description' value: "When the 'Remove dataset copy' button is pressed in the 'Component' or 'Component position' forms, then this boolean is set to `true`.\nThe `LibOpt_DatasetCopyConditional` object is not actually deleted at that point, because the `DeleteCondition` method of this object is still needed to delete any created datasets copies.\nWhen the `DeleteCondition` method is evaluated for all created dataset copies that have been created with this `LibOpt_DatasetCopyConditional` object, then the `LibOpt_DatasetCopyConditional` is deleted. \nThis happens in the `DeleteWhenFlagged` method."
  id: 'Attribute::LibOpt_DatasetCopyConditionalNotSelectable::IsFlaggedForDeletion.Name' value: 'IsFlaggedForDeletion'
  id: 'Attribute::LibOpt_DatasetCopyConditionalNotSelectable::OptimizerName.Description' value: 'The name of the `LibOpt_Optimizer` in which this `LibOpt_Conditional` is set.'
  id: 'Attribute::LibOpt_DatasetCopyConditionalNotSelectable::OptimizerName.Name' value: 'OptimizerName'
  id: 'Attribute::LibOpt_DatasetCopyOnAnyDownstreamCopy::ComponentName.Description' value: 'The name of the `LibOpt_Component` that is connected to this `LibOpt_Conditional`.'
  id: 'Attribute::LibOpt_DatasetCopyOnAnyDownstreamCopy::ComponentName.Name' value: 'ComponentName'
  id: 'Attribute::LibOpt_DatasetCopyOnAnyDownstreamCopy::ComponentPositionName.Description' value: 'The name of the `LibOpt_BreakpointPosition` to which this `LibOpt_Conditional` is attached.'
  id: 'Attribute::LibOpt_DatasetCopyOnAnyDownstreamCopy::ComponentPositionName.Name' value: 'ComponentPositionName'
  id: 'Attribute::LibOpt_DatasetCopyOnAnyDownstreamCopy::IsEnabled.Description' value: 'Whether the `LibOpt_Conditional` should be checked or not.'
  id: 'Attribute::LibOpt_DatasetCopyOnAnyDownstreamCopy::IsEnabled.Name' value: 'IsEnabled'
  id: 'Attribute::LibOpt_DatasetCopyOnAnyDownstreamCopy::IsFlaggedForDeletion.Description' value: "When the 'Remove dataset copy' button is pressed in the 'Component' or 'Component position' forms, then this boolean is set to `true`.\nThe `LibOpt_DatasetCopyConditional` object is not actually deleted at that point, because the `DeleteCondition` method of this object is still needed to delete any created datasets copies.\nWhen the `DeleteCondition` method is evaluated for all created dataset copies that have been created with this `LibOpt_DatasetCopyConditional` object, then the `LibOpt_DatasetCopyConditional` is deleted. \nThis happens in the `DeleteWhenFlagged` method."
  id: 'Attribute::LibOpt_DatasetCopyOnAnyDownstreamCopy::IsFlaggedForDeletion.Name' value: 'IsFlaggedForDeletion'
  id: 'Attribute::LibOpt_DatasetCopyOnAnyDownstreamCopy::OptimizerName.Description' value: 'The name of the `LibOpt_Optimizer` in which this `LibOpt_Conditional` is set.'
  id: 'Attribute::LibOpt_DatasetCopyOnAnyDownstreamCopy::OptimizerName.Name' value: 'OptimizerName'
  id: 'Attribute::LibOpt_DatasetCopyOnChangeRollbackKPI::ComponentName.Description' value: 'The name of the `LibOpt_Component` that is connected to this `LibOpt_Conditional`.'
  id: 'Attribute::LibOpt_DatasetCopyOnChangeRollbackKPI::ComponentName.Name' value: 'ComponentName'
  id: 'Attribute::LibOpt_DatasetCopyOnChangeRollbackKPI::ComponentPositionName.Description' value: 'The name of the `LibOpt_BreakpointPosition` to which this `LibOpt_Conditional` is attached.'
  id: 'Attribute::LibOpt_DatasetCopyOnChangeRollbackKPI::ComponentPositionName.Name' value: 'ComponentPositionName'
  id: 'Attribute::LibOpt_DatasetCopyOnChangeRollbackKPI::IsEnabled.Description' value: 'Whether the `LibOpt_Conditional` should be checked or not.'
  id: 'Attribute::LibOpt_DatasetCopyOnChangeRollbackKPI::IsEnabled.Name' value: 'IsEnabled'
  id: 'Attribute::LibOpt_DatasetCopyOnChangeRollbackKPI::IsFlaggedForDeletion.Description' value: "When the 'Remove dataset copy' button is pressed in the 'Component' or 'Component position' forms, then this boolean is set to `true`.\nThe `LibOpt_DatasetCopyConditional` object is not actually deleted at that point, because the `DeleteCondition` method of this object is still needed to delete any created datasets copies.\nWhen the `DeleteCondition` method is evaluated for all created dataset copies that have been created with this `LibOpt_DatasetCopyConditional` object, then the `LibOpt_DatasetCopyConditional` is deleted. \nThis happens in the `DeleteWhenFlagged` method."
  id: 'Attribute::LibOpt_DatasetCopyOnChangeRollbackKPI::IsFlaggedForDeletion.Name' value: 'IsFlaggedForDeletion'
  id: 'Attribute::LibOpt_DatasetCopyOnChangeRollbackKPI::OptimizerName.Description' value: 'The name of the `LibOpt_Optimizer` in which this `LibOpt_Conditional` is set.'
  id: 'Attribute::LibOpt_DatasetCopyOnChangeRollbackKPI::OptimizerName.Name' value: 'OptimizerName'
  id: 'Attribute::LibOpt_DatasetCopyOnRollbackOrError::ComponentName.Description' value: 'The name of the `LibOpt_Component` that is connected to this `LibOpt_Conditional`.'
  id: 'Attribute::LibOpt_DatasetCopyOnRollbackOrError::ComponentName.Name' value: 'ComponentName'
  id: 'Attribute::LibOpt_DatasetCopyOnRollbackOrError::ComponentPositionName.Description' value: 'The name of the `LibOpt_BreakpointPosition` to which this `LibOpt_Conditional` is attached.'
  id: 'Attribute::LibOpt_DatasetCopyOnRollbackOrError::ComponentPositionName.Name' value: 'ComponentPositionName'
  id: 'Attribute::LibOpt_DatasetCopyOnRollbackOrError::IsEnabled.Description' value: 'Whether the `LibOpt_Conditional` should be checked or not.'
  id: 'Attribute::LibOpt_DatasetCopyOnRollbackOrError::IsEnabled.Name' value: 'IsEnabled'
  id: 'Attribute::LibOpt_DatasetCopyOnRollbackOrError::IsFlaggedForDeletion.Description' value: "When the 'Remove dataset copy' button is pressed in the 'Component' or 'Component position' forms, then this boolean is set to `true`.\nThe `LibOpt_DatasetCopyConditional` object is not actually deleted at that point, because the `DeleteCondition` method of this object is still needed to delete any created datasets copies.\nWhen the `DeleteCondition` method is evaluated for all created dataset copies that have been created with this `LibOpt_DatasetCopyConditional` object, then the `LibOpt_DatasetCopyConditional` is deleted. \nThis happens in the `DeleteWhenFlagged` method."
  id: 'Attribute::LibOpt_DatasetCopyOnRollbackOrError::IsFlaggedForDeletion.Name' value: 'IsFlaggedForDeletion'
  id: 'Attribute::LibOpt_DatasetCopyOnRollbackOrError::OptimizerName.Description' value: 'The name of the `LibOpt_Optimizer` in which this `LibOpt_Conditional` is set.'
  id: 'Attribute::LibOpt_DatasetCopyOnRollbackOrError::OptimizerName.Name' value: 'OptimizerName'
  id: 'Attribute::LibOpt_DatasetCopyUnconditional::ComponentName.Description' value: 'The name of the `LibOpt_Component` that is connected to this `LibOpt_Conditional`.'
  id: 'Attribute::LibOpt_DatasetCopyUnconditional::ComponentName.Name' value: 'ComponentName'
  id: 'Attribute::LibOpt_DatasetCopyUnconditional::ComponentPositionName.Description' value: 'The name of the `LibOpt_BreakpointPosition` to which this `LibOpt_Conditional` is attached.'
  id: 'Attribute::LibOpt_DatasetCopyUnconditional::ComponentPositionName.Name' value: 'ComponentPositionName'
  id: 'Attribute::LibOpt_DatasetCopyUnconditional::IsEnabled.Description' value: 'Whether the `LibOpt_Conditional` should be checked or not.'
  id: 'Attribute::LibOpt_DatasetCopyUnconditional::IsEnabled.Name' value: 'IsEnabled'
  id: 'Attribute::LibOpt_DatasetCopyUnconditional::IsFlaggedForDeletion.Description' value: "When the 'Remove dataset copy' button is pressed in the 'Component' or 'Component position' forms, then this boolean is set to `true`.\nThe `LibOpt_DatasetCopyConditional` object is not actually deleted at that point, because the `DeleteCondition` method of this object is still needed to delete any created datasets copies.\nWhen the `DeleteCondition` method is evaluated for all created dataset copies that have been created with this `LibOpt_DatasetCopyConditional` object, then the `LibOpt_DatasetCopyConditional` is deleted. \nThis happens in the `DeleteWhenFlagged` method."
  id: 'Attribute::LibOpt_DatasetCopyUnconditional::IsFlaggedForDeletion.Name' value: 'IsFlaggedForDeletion'
  id: 'Attribute::LibOpt_DatasetCopyUnconditional::OptimizerName.Description' value: 'The name of the `LibOpt_Optimizer` in which this `LibOpt_Conditional` is set.'
  id: 'Attribute::LibOpt_DatasetCopyUnconditional::OptimizerName.Name' value: 'OptimizerName'
  id: 'Attribute::LibOpt_DistributedMessage::Identifier.Description' value: 'An identifier to identify the `LibOpt_DistributedMessage` object in different datasets, so the `Read` method is called on the same object on which the `Write` was called.'
  id: 'Attribute::LibOpt_DistributedMessage::Identifier.Name' value: 'Identifier'
  id: 'Attribute::LibOpt_DistributedMessageSnapshot::Identifier.Description' value: 'An identifier to identify the `LibOpt_DistributedMessage` object in different datasets, so the `Read` method is called on the same object on which the `Write` was called.'
  id: 'Attribute::LibOpt_DistributedMessageSnapshot::Identifier.Name' value: 'Identifier'
  id: 'Attribute::LibOpt_Group::ID.Description' value: 'Get the number associated with the `LibOpt_Group`.\n\nThis number will be used to speed up the usage of `LibOpt_Scope`, by allowing the `LibOpt_ScopeThin` to quickly lookup scopes with a specific `LibOpt_Group`.\n\nThis attribute is marked as module on purpose. This should not be tampered with outside the library.'
  id: 'Attribute::LibOpt_Group::ID.Name' value: 'ID'
  id: 'Attribute::LibOpt_Group::Name.Description' value: 'The name of the group. This name needs to be unique.'
  id: 'Attribute::LibOpt_Group::Name.Name' value: 'Name'
  id: 'Attribute::LibOpt_Issue::Comment.Description' value: 'An attribute that can be used by the user to add some meta data on the `LibOpt_Issue`.'
  id: 'Attribute::LibOpt_Issue::Comment.Name' value: 'Comment'
  id: 'Attribute::LibOpt_Issue::Details.Description' value: 'The details of the issue on Issue List form.'
  id: 'Attribute::LibOpt_Issue::Details.Name' value: 'Details'
  id: 'Attribute::LibOpt_Issue::Focus.Description' value: 'A string that represents the focus of this `LibOpt_Issue`.\n\nFor example, if a `LibOpt_Issue.Focus` is "POA Subopt, KPI Level 2, Iteration 5", it means the issue is about:\n- the `LibOpt_Component` (`LibOpt_Suboptimizer` in particular) with `LibOpt_Suboptimizer.Name` of "POA Subopt",\n- the 2nd KPI in the `LibOpt_RollbackKPI` used by said suboptimizer, and\n- the 5th `LibOpt_Iteration` of the run this issue belongs to.'
  id: 'Attribute::LibOpt_Issue::Focus.Name' value: 'Focus'
  id: 'Attribute::LibOpt_Issue::Identifier.Description' value: "An identifier for the `LibOpt_Issue`, in the form of 'R[run number]_[issue number]'."
  id: 'Attribute::LibOpt_Issue::Identifier.Name' value: 'Identifier'
  id: 'Attribute::LibOpt_Issue::IsSeen.Description' value: 'A helper attribute to keep track of whether a `LibOpt_Issue` has been seen.\n\nA possible use case:\nSet `IsSeen` to `true` for `LibOpt_Issues` that are solved or deemed irrelevant.\nThen, use the attribute in a filter to keep such issues out of sight.'
  id: 'Attribute::LibOpt_Issue::IsSeen.Name' value: 'IsSeen'
  id: 'Attribute::LibOpt_Issue::Priority.Description' value: 'This determines the priority of the issue. The smaller the number, the higher the priority.'
  id: 'Attribute::LibOpt_Issue::Priority.Name' value: 'Priority'
  id: 'Attribute::LibOpt_Issue::PriorityName.Description' value: 'A string representing the priority.'
  id: 'Attribute::LibOpt_Issue::PriorityName.Name' value: 'PriorityName'
  id: 'Attribute::LibOpt_Issue::SequenceNrOnRun.Description' value: 'The sequence number of this `LibOpt_Issue` on its related `LibOpt_Run`.'
  id: 'Attribute::LibOpt_Issue::SequenceNrOnRun.Name' value: 'SequenceNrOnRun'
  id: 'Attribute::LibOpt_Issue::Severity.Description' value: 'The severity of this issue. Its value is within the range of [1, 5], where 5 is the most severe.'
  id: 'Attribute::LibOpt_Issue::Severity.Name' value: 'Severity'
  id: 'Attribute::LibOpt_Issue::Type.Name' value: 'Type'
  id: 'Attribute::LibOpt_Iteration::Change.Name' value: 'Change'
  id: 'Attribute::LibOpt_Iteration::Duration.Description' value: 'The duration that this `LibOpt_Iteration` took'
  id: 'Attribute::LibOpt_Iteration::Duration.Name' value: 'Duration'
  id: 'Attribute::LibOpt_Iteration::HasNoDatasetCopy.Description' value: "This constraint is violated when a dataset copy has been created (and not deleted) during this iteration.\nA dataset copy icon appears in the 'Iterations' form when this constraint is violated."
  id: 'Attribute::LibOpt_Iteration::HasNoDatasetCopy.Name' value: 'HasNoDatasetCopy'
  id: 'Attribute::LibOpt_Iteration::HasNoErrors.Name' value: 'HasNoErrors'
  id: 'Attribute::LibOpt_Iteration::HasNoRollbacks.Name' value: 'HasNoRollbacks'
  id: 'Attribute::LibOpt_Iteration::HasNoWarnings.Name' value: 'HasNoWarnings'
  id: 'Attribute::LibOpt_Iteration::ImgHasIssue.Description' value: 'Whether the iteration has any issues associated to it'
  id: 'Attribute::LibOpt_Iteration::ImgHasIssue.Name' value: 'ImgHasIssue'
  id: 'Attribute::LibOpt_Iteration::ImgHasNoInfeasibleMPSnapshots.Description' value: 'Whether all MP snapshots in this iteration are feasible.'
  id: 'Attribute::LibOpt_Iteration::ImgHasNoInfeasibleMPSnapshots.Name' value: 'ImgHasNoInfeasibleMPSnapshots'
  id: 'Attribute::LibOpt_Iteration::ImgStatus.Description' value: 'The status of the iteration'
  id: 'Attribute::LibOpt_Iteration::ImgStatus.Name' value: 'ImgStatus'
  id: 'Attribute::LibOpt_Iteration::Improvements.Description' value: 'The KPI improvements of the last `LibOpt_SnapshotSuboptimizer` of this `LibOpt_Iteration`.'
  id: 'Attribute::LibOpt_Iteration::Improvements.Name' value: 'Improvements'
  id: 'Attribute::LibOpt_Iteration::IsChange.Description' value: 'Whether the `LibOpt_RollbackKPI` changed during this `LibOpt_Iteration`.'
  id: 'Attribute::LibOpt_Iteration::IsChange.Name' value: 'IsChange'
  id: 'Attribute::LibOpt_Iteration::IsFinished.Description' value: 'Whether the iteration is already finished or not.'
  id: 'Attribute::LibOpt_Iteration::IsFinished.Name' value: 'IsFinished'
  id: 'Attribute::LibOpt_Iteration::IterationNr.Description' value: 'A global iteration number.\nThe value of the `IterationNr` atttribute is 1 for first iteration in a run. \nEach new iteration in the same run has an `IterationNr` that is 1 higher than the previous iteration on that run.\nNote: All iterations are taken into account, including iterations on different depths.'
  id: 'Attribute::LibOpt_Iteration::IterationNr.Name' value: 'IterationNr'
  id: 'Attribute::LibOpt_Iteration::NrOfDatasetCopies.Description' value: 'The number of dataset copies that were created during the `LibOpt_Iteration`.'
  id: 'Attribute::LibOpt_Iteration::NrOfDatasetCopies.Name' value: 'NrOfDatasetCopies'
  id: 'Attribute::LibOpt_Iteration::NrOfErrors.Description' value: 'The number of errors that happened during the `LibOpt_Iteration`.'
  id: 'Attribute::LibOpt_Iteration::NrOfErrors.Name' value: 'NrOfErrors'
  id: 'Attribute::LibOpt_Iteration::NrOfFirstErrors.Description' value: 'The number of errors in this `LibOpt_Iteration` that have not appeared in another iteration.'
  id: 'Attribute::LibOpt_Iteration::NrOfFirstErrors.Name' value: 'NrOfFirstErrors'
  id: 'Attribute::LibOpt_Iteration::NrOfFirstWarnings.Description' value: 'The number of warnings in this `LibOpt_Iteration` that have not appeared in another iteration.'
  id: 'Attribute::LibOpt_Iteration::NrOfFirstWarnings.Name' value: 'NrOfFirstWarnings'
  id: 'Attribute::LibOpt_Iteration::NrOfIssues.Description' value: 'The number of `LibOpt_Issues` related to this `LibOpt_Iteration`.'
  id: 'Attribute::LibOpt_Iteration::NrOfIssues.Name' value: 'NrOfIssues'
  id: 'Attribute::LibOpt_Iteration::NrOfRollbacks.Description' value: 'The number of rollbacks that happened during this `LibOpt_Iteration`.'
  id: 'Attribute::LibOpt_Iteration::NrOfRollbacks.Name' value: 'NrOfRollbacks'
  id: 'Attribute::LibOpt_Iteration::NrOfWarnings.Description' value: 'The number of warnings in this `LibOpt_Iteration`.'
  id: 'Attribute::LibOpt_Iteration::NrOfWarnings.Name' value: 'NrOfWarnings'
  id: 'Attribute::LibOpt_Iteration::Path.Description' value: 'The path taken by the `LibOpt_Components` in this `LibOpt_Iteration`.'
  id: 'Attribute::LibOpt_Iteration::Path.Name' value: 'Path'
  id: 'Attribute::LibOpt_IterationPart::End.Description' value: 'End of the iterationpart'
  id: 'Attribute::LibOpt_IterationPart::End.Name' value: 'End'
  id: 'Attribute::LibOpt_IterationPart::Start.Description' value: 'Start of the iterationpart'
  id: 'Attribute::LibOpt_IterationPart::Start.Name' value: 'Start'
  id: 'Attribute::LibOpt_IterationThread::ThreadId.Description' value: 'Identifier of the thread'
  id: 'Attribute::LibOpt_IterationThread::ThreadId.Name' value: 'ThreadId'
  id: 'Attribute::LibOpt_Iterator::Breakpoints.Description' value: 'Whether any component position of this component has one or more breakpoints'
  id: 'Attribute::LibOpt_Iterator::Breakpoints.Name' value: 'Breakpoints'
  id: 'Attribute::LibOpt_Iterator::CanBeCalled.Description' value: 'Whether or not this component can be called, given the selected start component.'
  id: 'Attribute::LibOpt_Iterator::CanBeCalled.Name' value: 'CanBeCalled'
  id: 'Attribute::LibOpt_Iterator::ComponentType.Description' value: 'A short name for this `LibOpt_Component` type.'
  id: 'Attribute::LibOpt_Iterator::ComponentType.Name' value: 'ComponentType'
  id: 'Attribute::LibOpt_Iterator::ConfigurationError.Description' value: 'The errors in the configuration.'
  id: 'Attribute::LibOpt_Iterator::ConfigurationError.Name' value: 'ConfigurationError'
  id: 'Attribute::LibOpt_Iterator::DatasetCopies.Description' value: 'Whether any component position of this component has one or more dataset copies (or whether dataset copies are disabled)'
  id: 'Attribute::LibOpt_Iterator::DatasetCopies.Name' value: 'DatasetCopies'
  id: 'Attribute::LibOpt_Iterator::Depth.Description' value: 'The highest number of `LibOpt_Components` above this component.'
  id: 'Attribute::LibOpt_Iterator::Depth.Name' value: 'Depth'
  id: 'Attribute::LibOpt_Iterator::ForceInOneTransaction.Description' value: 'Whether the `LibOpt_Iterator` should be forced to run in one transaction.\nIf enabled, it means that new iterations will be spawned in the same transaction, no matter whether new transactions were created by one or more of the components below.\nIf disabled, it means that if there is another transaction scheduled in one of the components below, we will use multiple transactions. If no other transaction is scheduled below, then the iterator will continue in the same transaction.\n\nNote that if the `LibOpt_Iterator` is in one transaction and an error or a rollback occurs in one of the components in that same transaction, the iterator does not continue iterating.'
  id: 'Attribute::LibOpt_Iterator::ForceInOneTransaction.Name' value: 'ForceInOneTransaction'
  id: 'Attribute::LibOpt_Iterator::HasBreakpointEvent.Description' value: 'Whether the `LibOpt_Component` is waiting for a `LibOpt_BreakpointEvent`.'
  id: 'Attribute::LibOpt_Iterator::HasBreakpointEvent.Name' value: 'HasBreakpointEvent'
  id: 'Attribute::LibOpt_Iterator::HasNoBreakpoints.Description' value: 'Whether this `LibOpt_Component` has no `LibOpt_BreakpointConditional` attached to any of its component positions.'
  id: 'Attribute::LibOpt_Iterator::HasNoBreakpoints.Name' value: 'HasNoBreakpoints'
  id: 'Attribute::LibOpt_Iterator::HasNoDatasetCopies.Description' value: 'Whether this component has no `LibOpt_DatasetCopyConditional` attached to any of its component positions.'
  id: 'Attribute::LibOpt_Iterator::HasNoDatasetCopies.Name' value: 'HasNoDatasetCopies'
  id: 'Attribute::LibOpt_Iterator::HasUniqueName.Description' value: 'Whether the name of this `LibOpt_Component` is unique.'
  id: 'Attribute::LibOpt_Iterator::HasUniqueName.Name' value: 'HasUniqueName'
  id: 'Attribute::LibOpt_Iterator::ImgStartComponent.Description' value: 'Highlights the start component'
  id: 'Attribute::LibOpt_Iterator::ImgStartComponent.Name' value: 'ImgStartComponent'
  id: 'Attribute::LibOpt_Iterator::IsCorrectlyConfigured.Name' value: 'IsCorrectlyConfigured'
  id: 'Attribute::LibOpt_Iterator::IsDatasetCopyEnabled.Description' value: "Used in the UI to set the 'Dataset copies are disabled' image icon in the 'Components' form and to show a constraint to the user.\n    \nAn icon will be shown when:\n1: There is a dataset copy on any component position of this component.\nand either \n2a: The optimizer run is ongoing and `LibOpt_Run.IsCreatingDatasetCopiesEnabled` is set to `false` on the related `LibOpt_Run` object.\n2b: The optimizer run has finished and `LibOpt_Optimizer.IsCreatingDatasetCopiesEnabled` is set to `false` on the related `LibOpt_Optimizer` object."
  id: 'Attribute::LibOpt_Iterator::IsDatasetCopyEnabled.Name' value: 'IsDatasetCopyEnabled'
  id: 'Attribute::LibOpt_Iterator::IsPostProcessing.Description' value: 'If this attribute is true when a user aborts an optimizer run, then the optimizer will first execute any post processing `LibOpt_LinkIteratorForEach` links before aborting the run. \n\nFor the `LibOpt_IteratorForEachLink` component, this attribute is true when `LibOpt_LinkIteratorForEach.IsPostProcessing` is true for any of its links. \nFor all other components, this attribute is always false.'
  id: 'Attribute::LibOpt_Iterator::IsPostProcessing.Name' value: 'IsPostProcessing'
  id: 'Attribute::LibOpt_Iterator::MaxParallel.Description' value: 'The maximum number of iterations running in parallel.'
  id: 'Attribute::LibOpt_Iterator::MaxParallel.Name' value: 'MaxParallel'
  id: 'Attribute::LibOpt_Iterator::Name.Description' value: 'The name of the `LibOpt_Component`.\n\nThe name should be unique within the `LibOpt_Run`.'
  id: 'Attribute::LibOpt_Iterator::Name.Name' value: 'Name'
  id: 'Attribute::LibOpt_Iterator::NotAUniqueName.Description' value: 'Whether the name of the component is not unique within the run.\nThis can lead to unexpected behavior while running the optimizer.'
  id: 'Attribute::LibOpt_Iterator::NotAUniqueName.Name' value: 'NotAUniqueName'
  id: 'Attribute::LibOpt_Iterator::NotCorrectlyConfigured.Description' value: 'Whether there are any configuration errors for this component.\nFor example, whether a switch has fewer than 2 branches.'
  id: 'Attribute::LibOpt_Iterator::NotCorrectlyConfigured.Name' value: 'NotCorrectlyConfigured'
  id: 'Attribute::LibOpt_Iterator::NrOfEnabledBreakpoints.Description' value: 'The number of enabled `LibOpt_BreakpointConditionals` that are attached to the `LibOpt_BreakpointPositions` of this component. \nThis attribute is used in the `HasNoBreakpoints` constraint.'
  id: 'Attribute::LibOpt_Iterator::NrOfEnabledBreakpoints.Name' value: 'NrOfEnabledBreakpoints'
  id: 'Attribute::LibOpt_Iterator::NrOfEnabledDatasetCopies.Description' value: 'The number of enabled `LibOpt_DatasetCopyConditionals` that are attached to the `LibOpt_BreakpointPositions` of this component. \nThis attribute is used in the `HasNoDatasetCopies` constraint.'
  id: 'Attribute::LibOpt_Iterator::NrOfEnabledDatasetCopies.Name' value: 'NrOfEnabledDatasetCopies'
  id: 'Attribute::LibOpt_Iterator::NrTimesCalled.Description' value: 'The number of times this component was called (the DoTask method was called).'
  id: 'Attribute::LibOpt_Iterator::NrTimesCalled.Name' value: 'NrTimesCalled'
  id: 'Attribute::LibOpt_Iterator::Path.Description' value: 'A declarative attribute that contains one Path to this component.\nThis can be used to sort a list of components in a semi-logical way.'
  id: 'Attribute::LibOpt_Iterator::Path.Name' value: 'Path'
  id: 'Attribute::LibOpt_Iterator::SequenceNr.Description' value: 'The position in the sequence of the `LibOpt_Components` in the `LibOpt_Run`.\n\nThe `LibOpt_Components` are sorted according to the `Path`.\nThis is slightly different from sorting on the `Depth`.\n\nThe difference is that the `Path` keeps different branches in a `LibOpt_Switch` together, while sorting on `Depth` intertwines them.\n\nExample:\n\nIf we have a switch with 2 branches, A and C, with each a link to B and D respectively, the sorting order is different.\n\n switch -> A -> B\n switch -> C -> D\n \nNow the `Depth` (and the sorting on `Depth`) will be:\nswitch = 0\nA = 1\nC = 1\nB = 2\nD = 2\n\nThe `Path` (and sorting of the `Path`) will be:\nswitch = "switch"\nA = "switch" -> "A"\nB = "switch" -> "A" -> "B"\nC = "switch" -> "C"\nD = "switch" -> "C" -> "D"'
  id: 'Attribute::LibOpt_Iterator::SequenceNr.Name' value: 'SequenceNr'
  id: 'Attribute::LibOpt_Iterator::Status.Name' value: 'Status'
  id: 'Attribute::LibOpt_Iterator::TotalDuration.Description' value: 'Total duration spent on the component during the run'
  id: 'Attribute::LibOpt_Iterator::TotalDuration.Name' value: 'TotalDuration'
  id: 'Attribute::LibOpt_Iterator::Type.Description' value: 'The type of the component'
  id: 'Attribute::LibOpt_Iterator::Type.Name' value: 'Type'
  id: 'Attribute::LibOpt_IteratorForEachLink::Breakpoints.Description' value: 'Whether any component position of this component has one or more breakpoints'
  id: 'Attribute::LibOpt_IteratorForEachLink::Breakpoints.Name' value: 'Breakpoints'
  id: 'Attribute::LibOpt_IteratorForEachLink::CanBeCalled.Description' value: 'Whether or not this component can be called, given the selected start component.'
  id: 'Attribute::LibOpt_IteratorForEachLink::CanBeCalled.Name' value: 'CanBeCalled'
  id: 'Attribute::LibOpt_IteratorForEachLink::ComponentType.Description' value: 'A short name for this `LibOpt_Component` type.'
  id: 'Attribute::LibOpt_IteratorForEachLink::ComponentType.Name' value: 'ComponentType'
  id: 'Attribute::LibOpt_IteratorForEachLink::ConfigurationError.Description' value: 'The errors in the configuration.'
  id: 'Attribute::LibOpt_IteratorForEachLink::ConfigurationError.Name' value: 'ConfigurationError'
  id: 'Attribute::LibOpt_IteratorForEachLink::DatasetCopies.Description' value: 'Whether any component position of this component has one or more dataset copies (or whether dataset copies are disabled)'
  id: 'Attribute::LibOpt_IteratorForEachLink::DatasetCopies.Name' value: 'DatasetCopies'
  id: 'Attribute::LibOpt_IteratorForEachLink::Depth.Description' value: 'The highest number of `LibOpt_Components` above this component.'
  id: 'Attribute::LibOpt_IteratorForEachLink::Depth.Name' value: 'Depth'
  id: 'Attribute::LibOpt_IteratorForEachLink::ForceInOneTransaction.Description' value: 'Whether the `LibOpt_Iterator` should be forced to run in one transaction.\nIf enabled, it means that new iterations will be spawned in the same transaction, no matter whether new transactions were created by one or more of the components below.\nIf disabled, it means that if there is another transaction scheduled in one of the components below, we will use multiple transactions. If no other transaction is scheduled below, then the iterator will continue in the same transaction.\n\nNote that if the `LibOpt_Iterator` is in one transaction and an error or a rollback occurs in one of the components in that same transaction, the iterator does not continue iterating.'
  id: 'Attribute::LibOpt_IteratorForEachLink::ForceInOneTransaction.Name' value: 'ForceInOneTransaction'
  id: 'Attribute::LibOpt_IteratorForEachLink::HasBreakpointEvent.Description' value: 'Whether the `LibOpt_Component` is waiting for a `LibOpt_BreakpointEvent`.'
  id: 'Attribute::LibOpt_IteratorForEachLink::HasBreakpointEvent.Name' value: 'HasBreakpointEvent'
  id: 'Attribute::LibOpt_IteratorForEachLink::HasNoBreakpoints.Description' value: 'Whether this `LibOpt_Component` has no `LibOpt_BreakpointConditional` attached to any of its component positions.'
  id: 'Attribute::LibOpt_IteratorForEachLink::HasNoBreakpoints.Name' value: 'HasNoBreakpoints'
  id: 'Attribute::LibOpt_IteratorForEachLink::HasNoDatasetCopies.Description' value: 'Whether this component has no `LibOpt_DatasetCopyConditional` attached to any of its component positions.'
  id: 'Attribute::LibOpt_IteratorForEachLink::HasNoDatasetCopies.Name' value: 'HasNoDatasetCopies'
  id: 'Attribute::LibOpt_IteratorForEachLink::HasUniqueName.Description' value: 'Whether the name of this `LibOpt_Component` is unique.'
  id: 'Attribute::LibOpt_IteratorForEachLink::HasUniqueName.Name' value: 'HasUniqueName'
  id: 'Attribute::LibOpt_IteratorForEachLink::ImgStartComponent.Description' value: 'Highlights the start component'
  id: 'Attribute::LibOpt_IteratorForEachLink::ImgStartComponent.Name' value: 'ImgStartComponent'
  id: 'Attribute::LibOpt_IteratorForEachLink::IsCorrectlyConfigured.Name' value: 'IsCorrectlyConfigured'
  id: 'Attribute::LibOpt_IteratorForEachLink::IsDatasetCopyEnabled.Description' value: "Used in the UI to set the 'Dataset copies are disabled' image icon in the 'Components' form and to show a constraint to the user.\n    \nAn icon will be shown when:\n1: There is a dataset copy on any component position of this component.\nand either \n2a: The optimizer run is ongoing and `LibOpt_Run.IsCreatingDatasetCopiesEnabled` is set to `false` on the related `LibOpt_Run` object.\n2b: The optimizer run has finished and `LibOpt_Optimizer.IsCreatingDatasetCopiesEnabled` is set to `false` on the related `LibOpt_Optimizer` object."
  id: 'Attribute::LibOpt_IteratorForEachLink::IsDatasetCopyEnabled.Name' value: 'IsDatasetCopyEnabled'
  id: 'Attribute::LibOpt_IteratorForEachLink::IsPostProcessing.Description' value: 'If this attribute is true when a user aborts an optimizer run, then the optimizer will first execute any post processing `LibOpt_LinkIteratorForEach` links before aborting the run. \n\nFor the `LibOpt_IteratorForEachLink` component, this attribute is true when `LibOpt_LinkIteratorForEach.IsPostProcessing` is true for any of its links. \nFor all other components, this attribute is always false.'
  id: 'Attribute::LibOpt_IteratorForEachLink::IsPostProcessing.Name' value: 'IsPostProcessing'
  id: 'Attribute::LibOpt_IteratorForEachLink::MaxParallel.Description' value: 'The maximum number of iterations running in parallel.'
  id: 'Attribute::LibOpt_IteratorForEachLink::MaxParallel.Name' value: 'MaxParallel'
  id: 'Attribute::LibOpt_IteratorForEachLink::Name.Description' value: 'The name of the `LibOpt_Component`.\n\nThe name should be unique within the `LibOpt_Run`.'
  id: 'Attribute::LibOpt_IteratorForEachLink::Name.Name' value: 'Name'
  id: 'Attribute::LibOpt_IteratorForEachLink::NotAUniqueName.Description' value: 'Whether the name of the component is not unique within the run.\nThis can lead to unexpected behavior while running the optimizer.'
  id: 'Attribute::LibOpt_IteratorForEachLink::NotAUniqueName.Name' value: 'NotAUniqueName'
  id: 'Attribute::LibOpt_IteratorForEachLink::NotCorrectlyConfigured.Description' value: 'Whether there are any configuration errors for this component.\nFor example, whether a switch has fewer than 2 branches.'
  id: 'Attribute::LibOpt_IteratorForEachLink::NotCorrectlyConfigured.Name' value: 'NotCorrectlyConfigured'
  id: 'Attribute::LibOpt_IteratorForEachLink::NrOfEnabledBreakpoints.Description' value: 'The number of enabled `LibOpt_BreakpointConditionals` that are attached to the `LibOpt_BreakpointPositions` of this component. \nThis attribute is used in the `HasNoBreakpoints` constraint.'
  id: 'Attribute::LibOpt_IteratorForEachLink::NrOfEnabledBreakpoints.Name' value: 'NrOfEnabledBreakpoints'
  id: 'Attribute::LibOpt_IteratorForEachLink::NrOfEnabledDatasetCopies.Description' value: 'The number of enabled `LibOpt_DatasetCopyConditionals` that are attached to the `LibOpt_BreakpointPositions` of this component. \nThis attribute is used in the `HasNoDatasetCopies` constraint.'
  id: 'Attribute::LibOpt_IteratorForEachLink::NrOfEnabledDatasetCopies.Name' value: 'NrOfEnabledDatasetCopies'
  id: 'Attribute::LibOpt_IteratorForEachLink::NrTimesCalled.Description' value: 'The number of times this component was called (the DoTask method was called).'
  id: 'Attribute::LibOpt_IteratorForEachLink::NrTimesCalled.Name' value: 'NrTimesCalled'
  id: 'Attribute::LibOpt_IteratorForEachLink::Path.Description' value: 'A declarative attribute that contains one Path to this component.\nThis can be used to sort a list of components in a semi-logical way.'
  id: 'Attribute::LibOpt_IteratorForEachLink::Path.Name' value: 'Path'
  id: 'Attribute::LibOpt_IteratorForEachLink::SequenceNr.Description' value: 'The position in the sequence of the `LibOpt_Components` in the `LibOpt_Run`.\n\nThe `LibOpt_Components` are sorted according to the `Path`.\nThis is slightly different from sorting on the `Depth`.\n\nThe difference is that the `Path` keeps different branches in a `LibOpt_Switch` together, while sorting on `Depth` intertwines them.\n\nExample:\n\nIf we have a switch with 2 branches, A and C, with each a link to B and D respectively, the sorting order is different.\n\n switch -> A -> B\n switch -> C -> D\n \nNow the `Depth` (and the sorting on `Depth`) will be:\nswitch = 0\nA = 1\nC = 1\nB = 2\nD = 2\n\nThe `Path` (and sorting of the `Path`) will be:\nswitch = "switch"\nA = "switch" -> "A"\nB = "switch" -> "A" -> "B"\nC = "switch" -> "C"\nD = "switch" -> "C" -> "D"'
  id: 'Attribute::LibOpt_IteratorForEachLink::SequenceNr.Name' value: 'SequenceNr'
  id: 'Attribute::LibOpt_IteratorForEachLink::Status.Name' value: 'Status'
  id: 'Attribute::LibOpt_IteratorForEachLink::TotalDuration.Description' value: 'Total duration spent on the component during the run'
  id: 'Attribute::LibOpt_IteratorForEachLink::TotalDuration.Name' value: 'TotalDuration'
  id: 'Attribute::LibOpt_IteratorForEachLink::Type.Description' value: 'The type of the component'
  id: 'Attribute::LibOpt_IteratorForEachLink::Type.Name' value: 'Type'
  id: 'Attribute::LibOpt_IteratorForEachScope::Breakpoints.Description' value: 'Whether any component position of this component has one or more breakpoints'
  id: 'Attribute::LibOpt_IteratorForEachScope::Breakpoints.Name' value: 'Breakpoints'
  id: 'Attribute::LibOpt_IteratorForEachScope::CanBeCalled.Description' value: 'Whether or not this component can be called, given the selected start component.'
  id: 'Attribute::LibOpt_IteratorForEachScope::CanBeCalled.Name' value: 'CanBeCalled'
  id: 'Attribute::LibOpt_IteratorForEachScope::ComponentType.Description' value: 'A short name for this `LibOpt_Component` type.'
  id: 'Attribute::LibOpt_IteratorForEachScope::ComponentType.Name' value: 'ComponentType'
  id: 'Attribute::LibOpt_IteratorForEachScope::ConfigurationError.Description' value: 'The errors in the configuration.'
  id: 'Attribute::LibOpt_IteratorForEachScope::ConfigurationError.Name' value: 'ConfigurationError'
  id: 'Attribute::LibOpt_IteratorForEachScope::DatasetCopies.Description' value: 'Whether any component position of this component has one or more dataset copies (or whether dataset copies are disabled)'
  id: 'Attribute::LibOpt_IteratorForEachScope::DatasetCopies.Name' value: 'DatasetCopies'
  id: 'Attribute::LibOpt_IteratorForEachScope::Depth.Description' value: 'The highest number of `LibOpt_Components` above this component.'
  id: 'Attribute::LibOpt_IteratorForEachScope::Depth.Name' value: 'Depth'
  id: 'Attribute::LibOpt_IteratorForEachScope::ForceInOneTransaction.Description' value: 'Whether the `LibOpt_Iterator` should be forced to run in one transaction.\nIf enabled, it means that new iterations will be spawned in the same transaction, no matter whether new transactions were created by one or more of the components below.\nIf disabled, it means that if there is another transaction scheduled in one of the components below, we will use multiple transactions. If no other transaction is scheduled below, then the iterator will continue in the same transaction.\n\nNote that if the `LibOpt_Iterator` is in one transaction and an error or a rollback occurs in one of the components in that same transaction, the iterator does not continue iterating.'
  id: 'Attribute::LibOpt_IteratorForEachScope::ForceInOneTransaction.Name' value: 'ForceInOneTransaction'
  id: 'Attribute::LibOpt_IteratorForEachScope::HasBreakpointEvent.Description' value: 'Whether the `LibOpt_Component` is waiting for a `LibOpt_BreakpointEvent`.'
  id: 'Attribute::LibOpt_IteratorForEachScope::HasBreakpointEvent.Name' value: 'HasBreakpointEvent'
  id: 'Attribute::LibOpt_IteratorForEachScope::HasNoBreakpoints.Description' value: 'Whether this `LibOpt_Component` has no `LibOpt_BreakpointConditional` attached to any of its component positions.'
  id: 'Attribute::LibOpt_IteratorForEachScope::HasNoBreakpoints.Name' value: 'HasNoBreakpoints'
  id: 'Attribute::LibOpt_IteratorForEachScope::HasNoDatasetCopies.Description' value: 'Whether this component has no `LibOpt_DatasetCopyConditional` attached to any of its component positions.'
  id: 'Attribute::LibOpt_IteratorForEachScope::HasNoDatasetCopies.Name' value: 'HasNoDatasetCopies'
  id: 'Attribute::LibOpt_IteratorForEachScope::HasUniqueName.Description' value: 'Whether the name of this `LibOpt_Component` is unique.'
  id: 'Attribute::LibOpt_IteratorForEachScope::HasUniqueName.Name' value: 'HasUniqueName'
  id: 'Attribute::LibOpt_IteratorForEachScope::ImgStartComponent.Description' value: 'Highlights the start component'
  id: 'Attribute::LibOpt_IteratorForEachScope::ImgStartComponent.Name' value: 'ImgStartComponent'
  id: 'Attribute::LibOpt_IteratorForEachScope::IsCorrectlyConfigured.Name' value: 'IsCorrectlyConfigured'
  id: 'Attribute::LibOpt_IteratorForEachScope::IsDatasetCopyEnabled.Description' value: "Used in the UI to set the 'Dataset copies are disabled' image icon in the 'Components' form and to show a constraint to the user.\n    \nAn icon will be shown when:\n1: There is a dataset copy on any component position of this component.\nand either \n2a: The optimizer run is ongoing and `LibOpt_Run.IsCreatingDatasetCopiesEnabled` is set to `false` on the related `LibOpt_Run` object.\n2b: The optimizer run has finished and `LibOpt_Optimizer.IsCreatingDatasetCopiesEnabled` is set to `false` on the related `LibOpt_Optimizer` object."
  id: 'Attribute::LibOpt_IteratorForEachScope::IsDatasetCopyEnabled.Name' value: 'IsDatasetCopyEnabled'
  id: 'Attribute::LibOpt_IteratorForEachScope::IsPostProcessing.Description' value: 'If this attribute is true when a user aborts an optimizer run, then the optimizer will first execute any post processing `LibOpt_LinkIteratorForEach` links before aborting the run. \n\nFor the `LibOpt_IteratorForEachLink` component, this attribute is true when `LibOpt_LinkIteratorForEach.IsPostProcessing` is true for any of its links. \nFor all other components, this attribute is always false.'
  id: 'Attribute::LibOpt_IteratorForEachScope::IsPostProcessing.Name' value: 'IsPostProcessing'
  id: 'Attribute::LibOpt_IteratorForEachScope::MaxParallel.Description' value: 'The maximum number of iterations running in parallel.'
  id: 'Attribute::LibOpt_IteratorForEachScope::MaxParallel.Name' value: 'MaxParallel'
  id: 'Attribute::LibOpt_IteratorForEachScope::Name.Description' value: 'The name of the `LibOpt_Component`.\n\nThe name should be unique within the `LibOpt_Run`.'
  id: 'Attribute::LibOpt_IteratorForEachScope::Name.Name' value: 'Name'
  id: 'Attribute::LibOpt_IteratorForEachScope::NotAUniqueName.Description' value: 'Whether the name of the component is not unique within the run.\nThis can lead to unexpected behavior while running the optimizer.'
  id: 'Attribute::LibOpt_IteratorForEachScope::NotAUniqueName.Name' value: 'NotAUniqueName'
  id: 'Attribute::LibOpt_IteratorForEachScope::NotCorrectlyConfigured.Description' value: 'Whether there are any configuration errors for this component.\nFor example, whether a switch has fewer than 2 branches.'
  id: 'Attribute::LibOpt_IteratorForEachScope::NotCorrectlyConfigured.Name' value: 'NotCorrectlyConfigured'
  id: 'Attribute::LibOpt_IteratorForEachScope::NrOfEnabledBreakpoints.Description' value: 'The number of enabled `LibOpt_BreakpointConditionals` that are attached to the `LibOpt_BreakpointPositions` of this component. \nThis attribute is used in the `HasNoBreakpoints` constraint.'
  id: 'Attribute::LibOpt_IteratorForEachScope::NrOfEnabledBreakpoints.Name' value: 'NrOfEnabledBreakpoints'
  id: 'Attribute::LibOpt_IteratorForEachScope::NrOfEnabledDatasetCopies.Description' value: 'The number of enabled `LibOpt_DatasetCopyConditionals` that are attached to the `LibOpt_BreakpointPositions` of this component. \nThis attribute is used in the `HasNoDatasetCopies` constraint.'
  id: 'Attribute::LibOpt_IteratorForEachScope::NrOfEnabledDatasetCopies.Name' value: 'NrOfEnabledDatasetCopies'
  id: 'Attribute::LibOpt_IteratorForEachScope::NrTimesCalled.Description' value: 'The number of times this component was called (the DoTask method was called).'
  id: 'Attribute::LibOpt_IteratorForEachScope::NrTimesCalled.Name' value: 'NrTimesCalled'
  id: 'Attribute::LibOpt_IteratorForEachScope::Path.Description' value: 'A declarative attribute that contains one Path to this component.\nThis can be used to sort a list of components in a semi-logical way.'
  id: 'Attribute::LibOpt_IteratorForEachScope::Path.Name' value: 'Path'
  id: 'Attribute::LibOpt_IteratorForEachScope::SequenceNr.Description' value: 'The position in the sequence of the `LibOpt_Components` in the `LibOpt_Run`.\n\nThe `LibOpt_Components` are sorted according to the `Path`.\nThis is slightly different from sorting on the `Depth`.\n\nThe difference is that the `Path` keeps different branches in a `LibOpt_Switch` together, while sorting on `Depth` intertwines them.\n\nExample:\n\nIf we have a switch with 2 branches, A and C, with each a link to B and D respectively, the sorting order is different.\n\n switch -> A -> B\n switch -> C -> D\n \nNow the `Depth` (and the sorting on `Depth`) will be:\nswitch = 0\nA = 1\nC = 1\nB = 2\nD = 2\n\nThe `Path` (and sorting of the `Path`) will be:\nswitch = "switch"\nA = "switch" -> "A"\nB = "switch" -> "A" -> "B"\nC = "switch" -> "C"\nD = "switch" -> "C" -> "D"'
  id: 'Attribute::LibOpt_IteratorForEachScope::SequenceNr.Name' value: 'SequenceNr'
  id: 'Attribute::LibOpt_IteratorForEachScope::Status.Name' value: 'Status'
  id: 'Attribute::LibOpt_IteratorForEachScope::TotalDuration.Description' value: 'Total duration spent on the component during the run'
  id: 'Attribute::LibOpt_IteratorForEachScope::TotalDuration.Name' value: 'TotalDuration'
  id: 'Attribute::LibOpt_IteratorForEachScope::Type.Description' value: 'The type of the component'
  id: 'Attribute::LibOpt_IteratorForEachScope::Type.Name' value: 'Type'
  id: 'Attribute::LibOpt_IteratorParent::Breakpoints.Description' value: 'Whether any component position of this component has one or more breakpoints'
  id: 'Attribute::LibOpt_IteratorParent::Breakpoints.Name' value: 'Breakpoints'
  id: 'Attribute::LibOpt_IteratorParent::CanBeCalled.Description' value: 'Whether or not this component can be called, given the selected start component.'
  id: 'Attribute::LibOpt_IteratorParent::CanBeCalled.Name' value: 'CanBeCalled'
  id: 'Attribute::LibOpt_IteratorParent::ComponentType.Description' value: 'A short name for this `LibOpt_Component` type.'
  id: 'Attribute::LibOpt_IteratorParent::ComponentType.Name' value: 'ComponentType'
  id: 'Attribute::LibOpt_IteratorParent::ConfigurationError.Description' value: 'The errors in the configuration.'
  id: 'Attribute::LibOpt_IteratorParent::ConfigurationError.Name' value: 'ConfigurationError'
  id: 'Attribute::LibOpt_IteratorParent::DatasetCopies.Description' value: 'Whether any component position of this component has one or more dataset copies (or whether dataset copies are disabled)'
  id: 'Attribute::LibOpt_IteratorParent::DatasetCopies.Name' value: 'DatasetCopies'
  id: 'Attribute::LibOpt_IteratorParent::Depth.Description' value: 'The highest number of `LibOpt_Components` above this component.'
  id: 'Attribute::LibOpt_IteratorParent::Depth.Name' value: 'Depth'
  id: 'Attribute::LibOpt_IteratorParent::ForceInOneTransaction.Description' value: 'Whether the `LibOpt_Iterator` should be forced to run in one transaction.\nIf enabled, it means that new iterations will be spawned in the same transaction, no matter whether new transactions were created by one or more of the components below.\nIf disabled, it means that if there is another transaction scheduled in one of the components below, we will use multiple transactions. If no other transaction is scheduled below, then the iterator will continue in the same transaction.\n\nNote that if the `LibOpt_Iterator` is in one transaction and an error or a rollback occurs in one of the components in that same transaction, the iterator does not continue iterating.'
  id: 'Attribute::LibOpt_IteratorParent::ForceInOneTransaction.Name' value: 'ForceInOneTransaction'
  id: 'Attribute::LibOpt_IteratorParent::HasBreakpointEvent.Description' value: 'Whether the `LibOpt_Component` is waiting for a `LibOpt_BreakpointEvent`.'
  id: 'Attribute::LibOpt_IteratorParent::HasBreakpointEvent.Name' value: 'HasBreakpointEvent'
  id: 'Attribute::LibOpt_IteratorParent::HasNoBreakpoints.Description' value: 'Whether this `LibOpt_Component` has no `LibOpt_BreakpointConditional` attached to any of its component positions.'
  id: 'Attribute::LibOpt_IteratorParent::HasNoBreakpoints.Name' value: 'HasNoBreakpoints'
  id: 'Attribute::LibOpt_IteratorParent::HasNoDatasetCopies.Description' value: 'Whether this component has no `LibOpt_DatasetCopyConditional` attached to any of its component positions.'
  id: 'Attribute::LibOpt_IteratorParent::HasNoDatasetCopies.Name' value: 'HasNoDatasetCopies'
  id: 'Attribute::LibOpt_IteratorParent::HasUniqueName.Description' value: 'Whether the name of this `LibOpt_Component` is unique.'
  id: 'Attribute::LibOpt_IteratorParent::HasUniqueName.Name' value: 'HasUniqueName'
  id: 'Attribute::LibOpt_IteratorParent::ImgStartComponent.Description' value: 'Highlights the start component'
  id: 'Attribute::LibOpt_IteratorParent::ImgStartComponent.Name' value: 'ImgStartComponent'
  id: 'Attribute::LibOpt_IteratorParent::IsCorrectlyConfigured.Name' value: 'IsCorrectlyConfigured'
  id: 'Attribute::LibOpt_IteratorParent::IsDatasetCopyEnabled.Description' value: "Used in the UI to set the 'Dataset copies are disabled' image icon in the 'Components' form and to show a constraint to the user.\n    \nAn icon will be shown when:\n1: There is a dataset copy on any component position of this component.\nand either \n2a: The optimizer run is ongoing and `LibOpt_Run.IsCreatingDatasetCopiesEnabled` is set to `false` on the related `LibOpt_Run` object.\n2b: The optimizer run has finished and `LibOpt_Optimizer.IsCreatingDatasetCopiesEnabled` is set to `false` on the related `LibOpt_Optimizer` object."
  id: 'Attribute::LibOpt_IteratorParent::IsDatasetCopyEnabled.Name' value: 'IsDatasetCopyEnabled'
  id: 'Attribute::LibOpt_IteratorParent::IsPostProcessing.Description' value: 'If this attribute is true when a user aborts an optimizer run, then the optimizer will first execute any post processing `LibOpt_LinkIteratorForEach` links before aborting the run. \n\nFor the `LibOpt_IteratorForEachLink` component, this attribute is true when `LibOpt_LinkIteratorForEach.IsPostProcessing` is true for any of its links. \nFor all other components, this attribute is always false.'
  id: 'Attribute::LibOpt_IteratorParent::IsPostProcessing.Name' value: 'IsPostProcessing'
  id: 'Attribute::LibOpt_IteratorParent::MaxParallel.Description' value: 'The maximum number of iterations running in parallel.'
  id: 'Attribute::LibOpt_IteratorParent::MaxParallel.Name' value: 'MaxParallel'
  id: 'Attribute::LibOpt_IteratorParent::Name.Description' value: 'The name of the `LibOpt_Component`.\n\nThe name should be unique within the `LibOpt_Run`.'
  id: 'Attribute::LibOpt_IteratorParent::Name.Name' value: 'Name'
  id: 'Attribute::LibOpt_IteratorParent::NotAUniqueName.Description' value: 'Whether the name of the component is not unique within the run.\nThis can lead to unexpected behavior while running the optimizer.'
  id: 'Attribute::LibOpt_IteratorParent::NotAUniqueName.Name' value: 'NotAUniqueName'
  id: 'Attribute::LibOpt_IteratorParent::NotCorrectlyConfigured.Description' value: 'Whether there are any configuration errors for this component.\nFor example, whether a switch has fewer than 2 branches.'
  id: 'Attribute::LibOpt_IteratorParent::NotCorrectlyConfigured.Name' value: 'NotCorrectlyConfigured'
  id: 'Attribute::LibOpt_IteratorParent::NrOfEnabledBreakpoints.Description' value: 'The number of enabled `LibOpt_BreakpointConditionals` that are attached to the `LibOpt_BreakpointPositions` of this component. \nThis attribute is used in the `HasNoBreakpoints` constraint.'
  id: 'Attribute::LibOpt_IteratorParent::NrOfEnabledBreakpoints.Name' value: 'NrOfEnabledBreakpoints'
  id: 'Attribute::LibOpt_IteratorParent::NrOfEnabledDatasetCopies.Description' value: 'The number of enabled `LibOpt_DatasetCopyConditionals` that are attached to the `LibOpt_BreakpointPositions` of this component. \nThis attribute is used in the `HasNoDatasetCopies` constraint.'
  id: 'Attribute::LibOpt_IteratorParent::NrOfEnabledDatasetCopies.Name' value: 'NrOfEnabledDatasetCopies'
  id: 'Attribute::LibOpt_IteratorParent::NrTimesCalled.Description' value: 'The number of times this component was called (the DoTask method was called).'
  id: 'Attribute::LibOpt_IteratorParent::NrTimesCalled.Name' value: 'NrTimesCalled'
  id: 'Attribute::LibOpt_IteratorParent::Path.Description' value: 'A declarative attribute that contains one Path to this component.\nThis can be used to sort a list of components in a semi-logical way.'
  id: 'Attribute::LibOpt_IteratorParent::Path.Name' value: 'Path'
  id: 'Attribute::LibOpt_IteratorParent::SequenceNr.Description' value: 'The position in the sequence of the `LibOpt_Components` in the `LibOpt_Run`.\n\nThe `LibOpt_Components` are sorted according to the `Path`.\nThis is slightly different from sorting on the `Depth`.\n\nThe difference is that the `Path` keeps different branches in a `LibOpt_Switch` together, while sorting on `Depth` intertwines them.\n\nExample:\n\nIf we have a switch with 2 branches, A and C, with each a link to B and D respectively, the sorting order is different.\n\n switch -> A -> B\n switch -> C -> D\n \nNow the `Depth` (and the sorting on `Depth`) will be:\nswitch = 0\nA = 1\nC = 1\nB = 2\nD = 2\n\nThe `Path` (and sorting of the `Path`) will be:\nswitch = "switch"\nA = "switch" -> "A"\nB = "switch" -> "A" -> "B"\nC = "switch" -> "C"\nD = "switch" -> "C" -> "D"'
  id: 'Attribute::LibOpt_IteratorParent::SequenceNr.Name' value: 'SequenceNr'
  id: 'Attribute::LibOpt_IteratorParent::Status.Name' value: 'Status'
  id: 'Attribute::LibOpt_IteratorParent::TotalDuration.Description' value: 'Total duration spent on the component during the run'
  id: 'Attribute::LibOpt_IteratorParent::TotalDuration.Name' value: 'TotalDuration'
  id: 'Attribute::LibOpt_IteratorParent::Type.Description' value: 'The type of the component'
  id: 'Attribute::LibOpt_IteratorParent::Type.Name' value: 'Type'
  id: 'Attribute::LibOpt_IteratorUntil::Breakpoints.Description' value: 'Whether any component position of this component has one or more breakpoints'
  id: 'Attribute::LibOpt_IteratorUntil::Breakpoints.Name' value: 'Breakpoints'
  id: 'Attribute::LibOpt_IteratorUntil::CanBeCalled.Description' value: 'Whether or not this component can be called, given the selected start component.'
  id: 'Attribute::LibOpt_IteratorUntil::CanBeCalled.Name' value: 'CanBeCalled'
  id: 'Attribute::LibOpt_IteratorUntil::ComponentType.Description' value: 'A short name for this `LibOpt_Component` type.'
  id: 'Attribute::LibOpt_IteratorUntil::ComponentType.Name' value: 'ComponentType'
  id: 'Attribute::LibOpt_IteratorUntil::ConfigurationError.Description' value: 'The errors in the configuration.'
  id: 'Attribute::LibOpt_IteratorUntil::ConfigurationError.Name' value: 'ConfigurationError'
  id: 'Attribute::LibOpt_IteratorUntil::DatasetCopies.Description' value: 'Whether any component position of this component has one or more dataset copies (or whether dataset copies are disabled)'
  id: 'Attribute::LibOpt_IteratorUntil::DatasetCopies.Name' value: 'DatasetCopies'
  id: 'Attribute::LibOpt_IteratorUntil::Depth.Description' value: 'The highest number of `LibOpt_Components` above this component.'
  id: 'Attribute::LibOpt_IteratorUntil::Depth.Name' value: 'Depth'
  id: 'Attribute::LibOpt_IteratorUntil::ForceInOneTransaction.Description' value: 'Whether the `LibOpt_Iterator` should be forced to run in one transaction.\nIf enabled, it means that new iterations will be spawned in the same transaction, no matter whether new transactions were created by one or more of the components below.\nIf disabled, it means that if there is another transaction scheduled in one of the components below, we will use multiple transactions. If no other transaction is scheduled below, then the iterator will continue in the same transaction.\n\nNote that if the `LibOpt_Iterator` is in one transaction and an error or a rollback occurs in one of the components in that same transaction, the iterator does not continue iterating.'
  id: 'Attribute::LibOpt_IteratorUntil::ForceInOneTransaction.Name' value: 'ForceInOneTransaction'
  id: 'Attribute::LibOpt_IteratorUntil::HasBreakpointEvent.Description' value: 'Whether the `LibOpt_Component` is waiting for a `LibOpt_BreakpointEvent`.'
  id: 'Attribute::LibOpt_IteratorUntil::HasBreakpointEvent.Name' value: 'HasBreakpointEvent'
  id: 'Attribute::LibOpt_IteratorUntil::HasNoBreakpoints.Description' value: 'Whether this `LibOpt_Component` has no `LibOpt_BreakpointConditional` attached to any of its component positions.'
  id: 'Attribute::LibOpt_IteratorUntil::HasNoBreakpoints.Name' value: 'HasNoBreakpoints'
  id: 'Attribute::LibOpt_IteratorUntil::HasNoDatasetCopies.Description' value: 'Whether this component has no `LibOpt_DatasetCopyConditional` attached to any of its component positions.'
  id: 'Attribute::LibOpt_IteratorUntil::HasNoDatasetCopies.Name' value: 'HasNoDatasetCopies'
  id: 'Attribute::LibOpt_IteratorUntil::HasUniqueName.Description' value: 'Whether the name of this `LibOpt_Component` is unique.'
  id: 'Attribute::LibOpt_IteratorUntil::HasUniqueName.Name' value: 'HasUniqueName'
  id: 'Attribute::LibOpt_IteratorUntil::ImgStartComponent.Description' value: 'Highlights the start component'
  id: 'Attribute::LibOpt_IteratorUntil::ImgStartComponent.Name' value: 'ImgStartComponent'
  id: 'Attribute::LibOpt_IteratorUntil::IsCorrectlyConfigured.Name' value: 'IsCorrectlyConfigured'
  id: 'Attribute::LibOpt_IteratorUntil::IsDatasetCopyEnabled.Description' value: "Used in the UI to set the 'Dataset copies are disabled' image icon in the 'Components' form and to show a constraint to the user.\n    \nAn icon will be shown when:\n1: There is a dataset copy on any component position of this component.\nand either \n2a: The optimizer run is ongoing and `LibOpt_Run.IsCreatingDatasetCopiesEnabled` is set to `false` on the related `LibOpt_Run` object.\n2b: The optimizer run has finished and `LibOpt_Optimizer.IsCreatingDatasetCopiesEnabled` is set to `false` on the related `LibOpt_Optimizer` object."
  id: 'Attribute::LibOpt_IteratorUntil::IsDatasetCopyEnabled.Name' value: 'IsDatasetCopyEnabled'
  id: 'Attribute::LibOpt_IteratorUntil::IsPostProcessing.Description' value: 'If this attribute is true when a user aborts an optimizer run, then the optimizer will first execute any post processing `LibOpt_LinkIteratorForEach` links before aborting the run. \n\nFor the `LibOpt_IteratorForEachLink` component, this attribute is true when `LibOpt_LinkIteratorForEach.IsPostProcessing` is true for any of its links. \nFor all other components, this attribute is always false.'
  id: 'Attribute::LibOpt_IteratorUntil::IsPostProcessing.Name' value: 'IsPostProcessing'
  id: 'Attribute::LibOpt_IteratorUntil::MaxParallel.Description' value: 'The maximum number of iterations running in parallel.'
  id: 'Attribute::LibOpt_IteratorUntil::MaxParallel.Name' value: 'MaxParallel'
  id: 'Attribute::LibOpt_IteratorUntil::Name.Description' value: 'The name of the `LibOpt_Component`.\n\nThe name should be unique within the `LibOpt_Run`.'
  id: 'Attribute::LibOpt_IteratorUntil::Name.Name' value: 'Name'
  id: 'Attribute::LibOpt_IteratorUntil::NotAUniqueName.Description' value: 'Whether the name of the component is not unique within the run.\nThis can lead to unexpected behavior while running the optimizer.'
  id: 'Attribute::LibOpt_IteratorUntil::NotAUniqueName.Name' value: 'NotAUniqueName'
  id: 'Attribute::LibOpt_IteratorUntil::NotCorrectlyConfigured.Description' value: 'Whether there are any configuration errors for this component.\nFor example, whether a switch has fewer than 2 branches.'
  id: 'Attribute::LibOpt_IteratorUntil::NotCorrectlyConfigured.Name' value: 'NotCorrectlyConfigured'
  id: 'Attribute::LibOpt_IteratorUntil::NrOfEnabledBreakpoints.Description' value: 'The number of enabled `LibOpt_BreakpointConditionals` that are attached to the `LibOpt_BreakpointPositions` of this component. \nThis attribute is used in the `HasNoBreakpoints` constraint.'
  id: 'Attribute::LibOpt_IteratorUntil::NrOfEnabledBreakpoints.Name' value: 'NrOfEnabledBreakpoints'
  id: 'Attribute::LibOpt_IteratorUntil::NrOfEnabledDatasetCopies.Description' value: 'The number of enabled `LibOpt_DatasetCopyConditionals` that are attached to the `LibOpt_BreakpointPositions` of this component. \nThis attribute is used in the `HasNoDatasetCopies` constraint.'
  id: 'Attribute::LibOpt_IteratorUntil::NrOfEnabledDatasetCopies.Name' value: 'NrOfEnabledDatasetCopies'
  id: 'Attribute::LibOpt_IteratorUntil::NrTimesCalled.Description' value: 'The number of times this component was called (the DoTask method was called).'
  id: 'Attribute::LibOpt_IteratorUntil::NrTimesCalled.Name' value: 'NrTimesCalled'
  id: 'Attribute::LibOpt_IteratorUntil::Path.Description' value: 'A declarative attribute that contains one Path to this component.\nThis can be used to sort a list of components in a semi-logical way.'
  id: 'Attribute::LibOpt_IteratorUntil::Path.Name' value: 'Path'
  id: 'Attribute::LibOpt_IteratorUntil::SequenceNr.Description' value: 'The position in the sequence of the `LibOpt_Components` in the `LibOpt_Run`.\n\nThe `LibOpt_Components` are sorted according to the `Path`.\nThis is slightly different from sorting on the `Depth`.\n\nThe difference is that the `Path` keeps different branches in a `LibOpt_Switch` together, while sorting on `Depth` intertwines them.\n\nExample:\n\nIf we have a switch with 2 branches, A and C, with each a link to B and D respectively, the sorting order is different.\n\n switch -> A -> B\n switch -> C -> D\n \nNow the `Depth` (and the sorting on `Depth`) will be:\nswitch = 0\nA = 1\nC = 1\nB = 2\nD = 2\n\nThe `Path` (and sorting of the `Path`) will be:\nswitch = "switch"\nA = "switch" -> "A"\nB = "switch" -> "A" -> "B"\nC = "switch" -> "C"\nD = "switch" -> "C" -> "D"'
  id: 'Attribute::LibOpt_IteratorUntil::SequenceNr.Name' value: 'SequenceNr'
  id: 'Attribute::LibOpt_IteratorUntil::Status.Name' value: 'Status'
  id: 'Attribute::LibOpt_IteratorUntil::TotalDuration.Description' value: 'Total duration spent on the component during the run'
  id: 'Attribute::LibOpt_IteratorUntil::TotalDuration.Name' value: 'TotalDuration'
  id: 'Attribute::LibOpt_IteratorUntil::Type.Description' value: 'The type of the component'
  id: 'Attribute::LibOpt_IteratorUntil::Type.Name' value: 'Type'
  id: 'Attribute::LibOpt_KPI::IsMinimized.Description' value: 'Boolean indicator if this KPI is to minimized or not.'
  id: 'Attribute::LibOpt_KPI::IsMinimized.Name' value: 'IsMinimized'
  id: 'Attribute::LibOpt_KPI::Name.Description' value: 'The user provided name of the KPI.\nSet via CalcName which can be overridden.'
  id: 'Attribute::LibOpt_KPI::Name.Name' value: 'Name'
  id: 'Attribute::LibOpt_KPIGlobal::IsMinimized.Description' value: 'Boolean indicator if this KPI is to minimized or not.'
  id: 'Attribute::LibOpt_KPIGlobal::IsMinimized.Name' value: 'IsMinimized'
  id: 'Attribute::LibOpt_KPIGlobal::Name.Description' value: 'The user provided name of the KPI.\nSet via CalcName which can be overridden.'
  id: 'Attribute::LibOpt_KPIGlobal::Name.Name' value: 'Name'
  id: 'Attribute::LibOpt_KPILocal::IsMinimized.Description' value: 'Boolean indicator if this KPI is to minimized or not.'
  id: 'Attribute::LibOpt_KPILocal::IsMinimized.Name' value: 'IsMinimized'
  id: 'Attribute::LibOpt_KPILocal::Name.Description' value: 'The user provided name of the KPI.\nSet via CalcName which can be overridden.'
  id: 'Attribute::LibOpt_KPILocal::Name.Name' value: 'Name'
  id: 'Attribute::LibOpt_Link::ConfigurationError.Description' value: 'The errors in the configuration.'
  id: 'Attribute::LibOpt_Link::ConfigurationError.Name' value: 'ConfigurationError'
  id: 'Attribute::LibOpt_Link::Details.Description' value: 'Additional information about this `LibOpt_Link`.'
  id: 'Attribute::LibOpt_Link::Details.Name' value: 'Details'
  id: 'Attribute::LibOpt_Link::InternalIdentfier.Description' value: 'An internal identifier used to identify the `LibOpt_Link`.'
  id: 'Attribute::LibOpt_Link::InternalIdentfier.Name' value: 'InternalIdentfier'
  id: 'Attribute::LibOpt_Link::IsCorrectlyConfigured.Name' value: 'IsCorrectlyConfigured'
  id: 'Attribute::LibOpt_Link::IsPostProcessing.Description' value: 'If this attribute is true when a user aborts an optimizer run, then the optimizer will first execute this `LibOpt_Link` before terminating the optimizer run.\n\nThis attribute can be set to true by calling `LibOpt_IteratorForEachLink.Fork( component, true )`.\nFor all other `LibOpt_Links`, this attribute is always false.'
  id: 'Attribute::LibOpt_Link::IsPostProcessing.Name' value: 'IsPostProcessing'
  id: 'Attribute::LibOpt_LinkIteratorForEach::ConfigurationError.Description' value: 'The errors in the configuration.'
  id: 'Attribute::LibOpt_LinkIteratorForEach::ConfigurationError.Name' value: 'ConfigurationError'
  id: 'Attribute::LibOpt_LinkIteratorForEach::Details.Description' value: 'Additional information about this `LibOpt_Link`.'
  id: 'Attribute::LibOpt_LinkIteratorForEach::Details.Name' value: 'Details'
  id: 'Attribute::LibOpt_LinkIteratorForEach::InternalIdentfier.Description' value: 'An internal identifier used to identify the `LibOpt_Link`.'
  id: 'Attribute::LibOpt_LinkIteratorForEach::InternalIdentfier.Name' value: 'InternalIdentfier'
  id: 'Attribute::LibOpt_LinkIteratorForEach::IsCorrectlyConfigured.Name' value: 'IsCorrectlyConfigured'
  id: 'Attribute::LibOpt_LinkIteratorForEach::IsPostProcessing.Description' value: 'If this attribute is true when a user aborts an optimizer run, then the optimizer will first execute this `LibOpt_Link` before terminating the optimizer run.\n\nThis attribute can be set to true by calling `LibOpt_IteratorForEachLink.Fork( component, true )`.\nFor all other `LibOpt_Links`, this attribute is always false.'
  id: 'Attribute::LibOpt_LinkIteratorForEach::IsPostProcessing.Name' value: 'IsPostProcessing'
  id: 'Attribute::LibOpt_LinkIteratorForEach::SequenceNr.Description' value: 'The position in the sequence from `LibOpt_IteratorForEachLink`.'
  id: 'Attribute::LibOpt_LinkIteratorForEach::SequenceNr.Name' value: 'SequenceNr'
  id: 'Attribute::LibOpt_LinkIteratorSingle::ConfigurationError.Description' value: 'The errors in the configuration.'
  id: 'Attribute::LibOpt_LinkIteratorSingle::ConfigurationError.Name' value: 'ConfigurationError'
  id: 'Attribute::LibOpt_LinkIteratorSingle::Details.Description' value: 'Additional information about this `LibOpt_Link`.'
  id: 'Attribute::LibOpt_LinkIteratorSingle::Details.Name' value: 'Details'
  id: 'Attribute::LibOpt_LinkIteratorSingle::InternalIdentfier.Description' value: 'An internal identifier used to identify the `LibOpt_Link`.'
  id: 'Attribute::LibOpt_LinkIteratorSingle::InternalIdentfier.Name' value: 'InternalIdentfier'
  id: 'Attribute::LibOpt_LinkIteratorSingle::IsCorrectlyConfigured.Name' value: 'IsCorrectlyConfigured'
  id: 'Attribute::LibOpt_LinkIteratorSingle::IsPostProcessing.Description' value: 'If this attribute is true when a user aborts an optimizer run, then the optimizer will first execute this `LibOpt_Link` before terminating the optimizer run.\n\nThis attribute can be set to true by calling `LibOpt_IteratorForEachLink.Fork( component, true )`.\nFor all other `LibOpt_Links`, this attribute is always false.'
  id: 'Attribute::LibOpt_LinkIteratorSingle::IsPostProcessing.Name' value: 'IsPostProcessing'
  id: 'Attribute::LibOpt_LinkPriority::ConfigurationError.Description' value: 'The errors in the configuration.'
  id: 'Attribute::LibOpt_LinkPriority::ConfigurationError.Name' value: 'ConfigurationError'
  id: 'Attribute::LibOpt_LinkPriority::Details.Description' value: 'Additional information about this `LibOpt_Link`.'
  id: 'Attribute::LibOpt_LinkPriority::Details.Name' value: 'Details'
  id: 'Attribute::LibOpt_LinkPriority::InternalIdentfier.Description' value: 'An internal identifier used to identify the `LibOpt_Link`.'
  id: 'Attribute::LibOpt_LinkPriority::InternalIdentfier.Name' value: 'InternalIdentfier'
  id: 'Attribute::LibOpt_LinkPriority::IsCorrectlyConfigured.Name' value: 'IsCorrectlyConfigured'
  id: 'Attribute::LibOpt_LinkPriority::IsPostProcessing.Description' value: 'If this attribute is true when a user aborts an optimizer run, then the optimizer will first execute this `LibOpt_Link` before terminating the optimizer run.\n\nThis attribute can be set to true by calling `LibOpt_IteratorForEachLink.Fork( component, true )`.\nFor all other `LibOpt_Links`, this attribute is always false.'
  id: 'Attribute::LibOpt_LinkPriority::IsPostProcessing.Name' value: 'IsPostProcessing'
  id: 'Attribute::LibOpt_LinkPriority::SequenceNr.Description' value: 'The position in the sequence.'
  id: 'Attribute::LibOpt_LinkPriority::SequenceNr.Name' value: 'SequenceNr'
  id: 'Attribute::LibOpt_LinkProbability::ConfigurationError.Description' value: 'The errors in the configuration.'
  id: 'Attribute::LibOpt_LinkProbability::ConfigurationError.Name' value: 'ConfigurationError'
  id: 'Attribute::LibOpt_LinkProbability::Details.Description' value: 'Additional information about this `LibOpt_Link`.'
  id: 'Attribute::LibOpt_LinkProbability::Details.Name' value: 'Details'
  id: 'Attribute::LibOpt_LinkProbability::InternalIdentfier.Description' value: 'An internal identifier used to identify the `LibOpt_Link`.'
  id: 'Attribute::LibOpt_LinkProbability::InternalIdentfier.Name' value: 'InternalIdentfier'
  id: 'Attribute::LibOpt_LinkProbability::IsCorrectlyConfigured.Name' value: 'IsCorrectlyConfigured'
  id: 'Attribute::LibOpt_LinkProbability::IsPostProcessing.Description' value: 'If this attribute is true when a user aborts an optimizer run, then the optimizer will first execute this `LibOpt_Link` before terminating the optimizer run.\n\nThis attribute can be set to true by calling `LibOpt_IteratorForEachLink.Fork( component, true )`.\nFor all other `LibOpt_Links`, this attribute is always false.'
  id: 'Attribute::LibOpt_LinkProbability::IsPostProcessing.Name' value: 'IsPostProcessing'
  id: 'Attribute::LibOpt_LinkProbability::Probability.Description' value: 'The probability that this link will be selected, between 0.0 and 1.0.'
  id: 'Attribute::LibOpt_LinkProbability::Probability.Name' value: 'Probability'
  id: 'Attribute::LibOpt_LinkProbability::Weight.Description' value: 'The weight is used to determine the probabilities. The probability of that this `LibOpt_Link` is selected, is equal to the weight divided by the sum of all the weights.\nWe expect that weights are nonnegative.'
  id: 'Attribute::LibOpt_LinkProbability::Weight.Name' value: 'Weight'
  id: 'Attribute::LibOpt_LinkProbabilityDynamicWeight::WeightBase.Description' value: 'Base value for the weight of the link. This attribute will be then multiplied by the method GetWeightFactor to obtain the link weight.'
  id: 'Attribute::LibOpt_LinkProbabilityDynamicWeight::WeightBase.Name' value: 'WeightBase'
  id: 'Attribute::LibOpt_LinkRoundRobin::ConfigurationError.Description' value: 'The errors in the configuration.'
  id: 'Attribute::LibOpt_LinkRoundRobin::ConfigurationError.Name' value: 'ConfigurationError'
  id: 'Attribute::LibOpt_LinkRoundRobin::Details.Description' value: 'Additional information about this `LibOpt_Link`.'
  id: 'Attribute::LibOpt_LinkRoundRobin::Details.Name' value: 'Details'
  id: 'Attribute::LibOpt_LinkRoundRobin::InternalIdentfier.Description' value: 'An internal identifier used to identify the `LibOpt_Link`.'
  id: 'Attribute::LibOpt_LinkRoundRobin::InternalIdentfier.Name' value: 'InternalIdentfier'
  id: 'Attribute::LibOpt_LinkRoundRobin::IsCorrectlyConfigured.Name' value: 'IsCorrectlyConfigured'
  id: 'Attribute::LibOpt_LinkRoundRobin::IsPostProcessing.Description' value: 'If this attribute is true when a user aborts an optimizer run, then the optimizer will first execute this `LibOpt_Link` before terminating the optimizer run.\n\nThis attribute can be set to true by calling `LibOpt_IteratorForEachLink.Fork( component, true )`.\nFor all other `LibOpt_Links`, this attribute is always false.'
  id: 'Attribute::LibOpt_LinkRoundRobin::IsPostProcessing.Name' value: 'IsPostProcessing'
  id: 'Attribute::LibOpt_LinkRoundRobin::SequenceNr.Description' value: 'The position in the sequence from `LibOpt_SwitchRoundRobin`.'
  id: 'Attribute::LibOpt_LinkRoundRobin::SequenceNr.Name' value: 'SequenceNr'
  id: 'Attribute::LibOpt_LinkSingle::ConfigurationError.Description' value: 'The errors in the configuration.'
  id: 'Attribute::LibOpt_LinkSingle::ConfigurationError.Name' value: 'ConfigurationError'
  id: 'Attribute::LibOpt_LinkSingle::Details.Description' value: 'Additional information about this `LibOpt_Link`.'
  id: 'Attribute::LibOpt_LinkSingle::Details.Name' value: 'Details'
  id: 'Attribute::LibOpt_LinkSingle::InternalIdentfier.Description' value: 'An internal identifier used to identify the `LibOpt_Link`.'
  id: 'Attribute::LibOpt_LinkSingle::InternalIdentfier.Name' value: 'InternalIdentfier'
  id: 'Attribute::LibOpt_LinkSingle::IsCorrectlyConfigured.Name' value: 'IsCorrectlyConfigured'
  id: 'Attribute::LibOpt_LinkSingle::IsPostProcessing.Description' value: 'If this attribute is true when a user aborts an optimizer run, then the optimizer will first execute this `LibOpt_Link` before terminating the optimizer run.\n\nThis attribute can be set to true by calling `LibOpt_IteratorForEachLink.Fork( component, true )`.\nFor all other `LibOpt_Links`, this attribute is always false.'
  id: 'Attribute::LibOpt_LinkSingle::IsPostProcessing.Name' value: 'IsPostProcessing'
  id: 'Attribute::LibOpt_LinkStart::ConfigurationError.Description' value: 'The errors in the configuration.'
  id: 'Attribute::LibOpt_LinkStart::ConfigurationError.Name' value: 'ConfigurationError'
  id: 'Attribute::LibOpt_LinkStart::Details.Description' value: 'Additional information about this `LibOpt_Link`.'
  id: 'Attribute::LibOpt_LinkStart::Details.Name' value: 'Details'
  id: 'Attribute::LibOpt_LinkStart::InternalIdentfier.Description' value: 'An internal identifier used to identify the `LibOpt_Link`.'
  id: 'Attribute::LibOpt_LinkStart::InternalIdentfier.Name' value: 'InternalIdentfier'
  id: 'Attribute::LibOpt_LinkStart::IsCorrectlyConfigured.Name' value: 'IsCorrectlyConfigured'
  id: 'Attribute::LibOpt_LinkStart::IsPostProcessing.Description' value: 'If this attribute is true when a user aborts an optimizer run, then the optimizer will first execute this `LibOpt_Link` before terminating the optimizer run.\n\nThis attribute can be set to true by calling `LibOpt_IteratorForEachLink.Fork( component, true )`.\nFor all other `LibOpt_Links`, this attribute is always false.'
  id: 'Attribute::LibOpt_LinkStart::IsPostProcessing.Name' value: 'IsPostProcessing'
  id: 'Attribute::LibOpt_NeighborhoodCreator::ConfigurationError.Description' value: 'The errors in the configuration.'
  id: 'Attribute::LibOpt_NeighborhoodCreator::ConfigurationError.Name' value: 'ConfigurationError'
  id: 'Attribute::LibOpt_NeighborhoodCreator::IsCorrectlyConfigured.Name' value: 'IsCorrectlyConfigured'
  id: 'Attribute::LibOpt_Optimization::AutoDeleteScopeElements.Description' value: 'Whether to automatically delete scope elements.'
  id: 'Attribute::LibOpt_Optimization::AutoDeleteScopeElements.Name' value: 'AutoDeleteScopeElements'
  id: 'Attribute::LibOpt_Optimization::DatasetName.Description' value: 'Name of the current dataset. \nThis value is used to set `LibOpt_ControllerRun.DatasetName`.'
  id: 'Attribute::LibOpt_Optimization::DatasetName.Name' value: 'DatasetName'
  id: 'Attribute::LibOpt_Optimization::IsOptimizerDatasetCopy.Description' value: "This attribute is used to enable/disable the 'Reload parent dataset' button in the 'Replannable snapshots' form.     \nIf the attribute is `true` then the button is enabled.\n\nIf the current dataset is a copy of a dataset that had any ongoing run, then this attribute is set to `true`.\nThe attribute is set to `false` when the 'Reload parent dataset' button is pressed and the parent dataset does not exist anymore."
  id: 'Attribute::LibOpt_Optimization::IsOptimizerDatasetCopy.Name' value: 'IsOptimizerDatasetCopy'
  id: 'Attribute::LibOpt_Optimization::MDSKeyCurrentDataset.Description' value: 'The MDS Key of the current dataset. When a dataset copy is created from this dataset, then this attribute is used to set the `MDSKeyParentDataset` attribute.'
  id: 'Attribute::LibOpt_Optimization::MDSKeyCurrentDataset.Name' value: 'MDSKeyCurrentDataset'
  id: 'Attribute::LibOpt_Optimization::MDSKeyParentDataset.Description' value: "The MDS Key of the dataset that was used to create the current dataset.\nIs used for the 'Reload' button in the 'Replannable Snapshots' form."
  id: 'Attribute::LibOpt_Optimization::MDSKeyParentDataset.Name' value: 'MDSKeyParentDataset'
  id: 'Attribute::LibOpt_Optimization::NextAnalysisNr.Description' value: 'The  number we will use for the name of the next analysis.'
  id: 'Attribute::LibOpt_Optimization::NextAnalysisNr.Name' value: 'NextAnalysisNr'
  id: 'Attribute::LibOpt_Optimization::NextRunNr.Description' value: 'The run number that can be used for the next `LibOpt_Run`.'
  id: 'Attribute::LibOpt_Optimization::NextRunNr.Name' value: 'NextRunNr'
  id: 'Attribute::LibOpt_Optimization::NextScopeThinID.Description' value: 'New `LibOpt_ScopeThin` objects require an ID for the `LibOpt_ScopeThin.ID` attribute. \nIf the `ScopeThinQueue` `NumberVector` is not empty, then an ID from this vector is used.\nIf `ScopeThinQueue` is empty, then this `NextScopeThinID` attribute is used to obtain a new ID.\n\nWe recycle the IDs using the `ScopeThinQueue` to use the lowest numbers possible for IDs.\nUsing IDs with lower numbers results in faster `LibOpt_ScopeThin` operations (insert, delete, lookup).'
  id: 'Attribute::LibOpt_Optimization::NextScopeThinID.Name' value: 'NextScopeThinID'
  id: 'Attribute::LibOpt_Optimization::ScopeThinQueue.Description' value: 'A `NumberVector` storing the `LibOpt_ScopeThin.ID` attributes of `LibOpt_ScopeThin` objects that have been removed and not yet reused.\n\nBy reusing old IDs, we can keep the ID numbers low, meaning a better performance for the `LibOpt_ScopeThin`.'
  id: 'Attribute::LibOpt_Optimization::ScopeThinQueue.Name' value: 'ScopeThinQueue'
  id: 'Attribute::LibOpt_Optimization::UpdateReplannableSnapshotsDelayDuration.Description' value: "The snapshot of a quick dataset copy is created before the dataset copy creation method is called, because this method is called reactively.\nTherefore, `MDSEditor::Editor().ObjectInfos().Find( snapshot.DatasetName() )` will be null, when it is called between the creation of the snapshot and the reactive dataset copy call. \n\nThis attribute adds a small delay in the method `UpdateReplannableSnapshots` that prevents `MDSEditor::Editor().ObjectInfos().Find( snapshot.DatasetName() )` from being called too early.\nNote that the transaction priority of a dataset copy transaction is 'medium', while the transaction priority of most reactive methods within the optimizer is 'low'. \nThis implies that the the dataset copy creation transaction will typically be scheduled when the current transaction ends. So only a small delay is required."
  id: 'Attribute::LibOpt_Optimization::UpdateReplannableSnapshotsDelayDuration.Name' value: 'UpdateReplannableSnapshotsDelayDuration'
  id: 'Attribute::LibOpt_Optimizer::AutoAnalysisEnabled.Description' value: 'Whether after the runs created by this optimizer finish the runs should be automatically analyzed.\n\nIf enabled, `LibOpt_Statistics` and `LibOpt_Issues` will be created when the runs finish.'
  id: 'Attribute::LibOpt_Optimizer::AutoAnalysisEnabled.Name' value: 'AutoAnalysisEnabled'
  id: 'Attribute::LibOpt_Optimizer::DebugScope.Description' value: "Allow debugging the `LibOpt_Scope` on every newly created `LibOpt_Run`.\n\nWhen enabled, the input and output `LibOpt_Scope` of every `LibOpt_Task` is stored in its `LibOpt_SnapshotComponent`.\nWhen a `LibOpt_ScopeElement` is deleted, a special `LibOpt_ScopeElementDeleted` will be created in its place containing the same values for the `LibOpt_ScopeElement.Identifier` and `LibOpt_ScopeElement.Details` attributes.\n\nThe attribute can be set from the 'Toggles' context menu of the 'Optimizers' from."
  id: 'Attribute::LibOpt_Optimizer::DebugScope.Name' value: 'DebugScope'
  id: 'Attribute::LibOpt_Optimizer::Description.Description' value: 'A description of what the `LibOpt_Optimizer` is meant to do.'
  id: 'Attribute::LibOpt_Optimizer::Description.Name' value: 'Description'
  id: 'Attribute::LibOpt_Optimizer::HasToPropagateAfterUserCode.Description' value: "This attribute is used in the optimizer to decide whether or not a `Transaction::Transaction.Propagate()` should be called after each time that AE code has been executed. This has a major negative impact on the performance of the optimizer.\nWhen this attribute is `true`, then any propagation errors will show up in the correct spot in the 'Snapshots' form. This feature can therefore be used to debug propagation errors more easily. \nNote: If an optimizer step is not expecting a fully propagated state, then setting this attribute to `true` might cause unexpected behavior in your optimizer.\n\nThe attribute can be set from the 'Enable/Disable debugging propagation errors' sub-context menu, which can be found in the 'Toggles' context menu of the 'Optimizers' from."
  id: 'Attribute::LibOpt_Optimizer::HasToPropagateAfterUserCode.Name' value: 'HasToPropagateAfterUserCode'
  id: 'Attribute::LibOpt_Optimizer::ImgAutoAnalysis.Description' value: 'Whether the next run will automatically be analyzed after it has finished.'
  id: 'Attribute::LibOpt_Optimizer::ImgAutoAnalysis.Name' value: 'ImgAutoAnalysis'
  id: 'Attribute::LibOpt_Optimizer::ImgAutomaticPropagation.Description' value: 'Whether the next run has automatic propagation enabled or not'
  id: 'Attribute::LibOpt_Optimizer::ImgAutomaticPropagation.Name' value: 'ImgAutomaticPropagation'
  id: 'Attribute::LibOpt_Optimizer::ImgDatasetCopiesEnabled.Description' value: 'Whether the next run is allowed to create dataset copies or not'
  id: 'Attribute::LibOpt_Optimizer::ImgDatasetCopiesEnabled.Name' value: 'ImgDatasetCopiesEnabled'
  id: 'Attribute::LibOpt_Optimizer::ImgDebugScope.Description' value: 'Whether the next run has debug scope enabled or not.'
  id: 'Attribute::LibOpt_Optimizer::ImgDebugScope.Name' value: 'ImgDebugScope'
  id: 'Attribute::LibOpt_Optimizer::ImgRunControllerEnabled.Description' value: 'Whether the next run will wait for approval from the run controller to start the run.'
  id: 'Attribute::LibOpt_Optimizer::ImgRunControllerEnabled.Name' value: 'ImgRunControllerEnabled'
  id: 'Attribute::LibOpt_Optimizer::IsAutoCleanupRunsOnNrOfRuns.Description' value: 'Whether the optimizer should clean up runs when a certain number of runs exist.\nIf this is enabled, the amount of runs can be configured using `MaxNrOfRuns`.'
  id: 'Attribute::LibOpt_Optimizer::IsAutoCleanupRunsOnNrOfRuns.Name' value: 'IsAutoCleanupRunsOnNrOfRuns'
  id: 'Attribute::LibOpt_Optimizer::IsAutoCleanupRunsOnRunAge.Description' value: 'Whether the optimizer should clean up runs after a certain age of a run.\nIf this is enabled, the maximum age of the runs can be configured using `MaxRunAge`.'
  id: 'Attribute::LibOpt_Optimizer::IsAutoCleanupRunsOnRunAge.Name' value: 'IsAutoCleanupRunsOnRunAge'
  id: 'Attribute::LibOpt_Optimizer::IsAutoCleanupSnapshots.Description' value: 'Whether or not the auto cleanup of snapshots should be done.'
  id: 'Attribute::LibOpt_Optimizer::IsAutoCleanupSnapshots.Name' value: 'IsAutoCleanupSnapshots'
  id: 'Attribute::LibOpt_Optimizer::IsCreatingDatasetCopiesEnabled.Description' value: "This attribute is used to Enable/Disable the creation of dataset copies during the next run.\nThe attribute can be set from the 'Toggles' context menu of the 'Optimizers' from."
  id: 'Attribute::LibOpt_Optimizer::IsCreatingDatasetCopiesEnabled.Name' value: 'IsCreatingDatasetCopiesEnabled'
  id: 'Attribute::LibOpt_Optimizer::IsRunControllerEnabled.Description' value: "If this value is true, then new `LibOpt_Runs` will check with the optimizer run controller when they can be started.\nNote: The optimizer run controller dataset should be loaded and it should be enabled\n\n`LibOpt_Optimizer.IsRunControllerEnabled` can be set in the 'Settings run controller' dialog, which can be found in the context menu of the 'Optimizers' form."
  id: 'Attribute::LibOpt_Optimizer::IsRunControllerEnabled.Name' value: 'IsRunControllerEnabled'
  id: 'Attribute::LibOpt_Optimizer::MaxNrOfRuns.Description' value: 'The maximum number of runs to keep.\n\nIf there are more runs than this number and `IsAutoCleanupRunsOnNrOfRuns` is `true`, the oldest run that is applicable for deletion will be deleted.\nThe oldest run is determined by the lowest finite `LibOpt_Run.FinishedOn`, meaning the run that finished the longest time ago.'
  id: 'Attribute::LibOpt_Optimizer::MaxNrOfRuns.Name' value: 'MaxNrOfRuns'
  id: 'Attribute::LibOpt_Optimizer::MaxNrOfSnapshotsPerRun.Description' value: 'Maximum number of `LibOpt_Snapshots` to keep on a `LibOpt_Run`.\nCannot be set below 100.'
  id: 'Attribute::LibOpt_Optimizer::MaxNrOfSnapshotsPerRun.Name' value: 'MaxNrOfSnapshotsPerRun'
  id: 'Attribute::LibOpt_Optimizer::MaxRunAge.Description' value: 'The maximum age of a run.\n\nIf `IsAutoCleanupRunsOnRunAge` is `true`, runs that finished longer ago than this duration will be deleted, when starting a new run.'
  id: 'Attribute::LibOpt_Optimizer::MaxRunAge.Name' value: 'MaxRunAge'
  id: 'Attribute::LibOpt_Optimizer::Name.Description' value: 'The name of the `LibOpt_Optimizer`. This helps keeping different `LibOpt_Optimizers` apart.'
  id: 'Attribute::LibOpt_Optimizer::Name.Name' value: 'Name'
  id: 'Attribute::LibOpt_Optimizer::RequestedThreadsRunController.Description' value: "The number of threads that are requested to the `LibOpt_OptimizerRunController` for each `LibOpt_ControllerRun`.\n\n`LibOpt_Optimizer.RequestedThreadsRunController` can be set in the 'Settings run controller' dialog, which can be found in the context menu of the 'Optimizers' form."
  id: 'Attribute::LibOpt_Optimizer::RequestedThreadsRunController.Name' value: 'RequestedThreadsRunController'
  id: 'Attribute::LibOpt_Optimizer::ShowAutoCleanupWarning.Description' value: 'Whether or not to show a warning when a new run is started that runs will be deleted due to auto cleanup settings.'
  id: 'Attribute::LibOpt_Optimizer::ShowAutoCleanupWarning.Name' value: 'ShowAutoCleanupWarning'
  id: 'Attribute::LibOpt_OptimizerRunController::CPUThreadsMax.Description' value: "The maximum number of CPU threads that are currently in use by `LibOpt_Runs` accross all datasets.\nThis attribute can be configured in the 'Optimizer Run Controller' form."
  id: 'Attribute::LibOpt_OptimizerRunController::CPUThreadsMax.Name' value: 'CPUThreadsMax'
  id: 'Attribute::LibOpt_OptimizerRunController::CPUThreadsUsedTotal.Description' value: "The total number of CPU threads that are currently in use by `LibOpt_Runs` accross all datasets.\nOnly runs for which `LibOpt_RunStatus::IsRunning` returns `true` are counted. \n\nSince `LibOpt_Run` objects live in separate datasets, we don't check the status of these objects directly. Instead, we look at the status of the `LibOpt_ControllerRuns`.\nThe `LibOpt_ControllerRuns` should be aligned with their corresponding `LibOpt_Runs`."
  id: 'Attribute::LibOpt_OptimizerRunController::CPUThreadsUsedTotal.Name' value: 'CPUThreadsUsedTotal'
  id: 'Attribute::LibOpt_OptimizerRunController::ConcurrentRuns.Description' value: "The total number of running `LibOpt_Runs` accross all datasets.\nOnly runs for which `LibOpt_RunStatus::IsRunning` returns `true` are counted. \n\nSince `LibOpt_Run` objects live in separate datasets, we don't check the status of these objects directly. Instead, we look at the status of the `LibOpt_ControllerRuns`.\nThe `LibOpt_ControllerRuns` should be aligned with their corresponding `LibOpt_Runs`."
  id: 'Attribute::LibOpt_OptimizerRunController::ConcurrentRuns.Name' value: 'ConcurrentRuns'
  id: 'Attribute::LibOpt_OptimizerRunController::ConcurrentRunsMax.Description' value: "The maximum number of concurrent `LibOpt_Runs` across all datasets. \nThis attribute can be configured in the 'Optimizer Run Controller' form."
  id: 'Attribute::LibOpt_OptimizerRunController::ConcurrentRunsMax.Name' value: 'ConcurrentRunsMax'
  id: 'Attribute::LibOpt_OptimizerRunController::MaxAgeFinishedControllerRuns.Description' value: 'When a new `LibOpt_ControllerRun` is created, then all finished runs older than `MaxAgeFinishedControllerRuns` are deleted to free up space.'
  id: 'Attribute::LibOpt_OptimizerRunController::MaxAgeFinishedControllerRuns.Name' value: 'MaxAgeFinishedControllerRuns'
  id: 'Attribute::LibOpt_OptimizerRunController::PollingDuration.Description' value: 'Every `PollingDuration` milliseconds, the `LibOpt_OptimizerRunController` checks for each unstarted `LibOpt_Run` whether it satisfies all starting criteria.'
  id: 'Attribute::LibOpt_OptimizerRunController::PollingDuration.Name' value: 'PollingDuration'
  id: 'Attribute::LibOpt_RollbackKPI::Name.Name' value: 'Name'
  id: 'Attribute::LibOpt_RollbackKPIDefault::KPIs.Description' value: 'List of all the `LibOpt_KPIs` included in this rollback KPI.'
  id: 'Attribute::LibOpt_RollbackKPIDefault::KPIs.Name' value: 'KPIs'
  id: 'Attribute::LibOpt_RollbackKPIDefault::Name.Name' value: 'Name'
  id: 'Attribute::LibOpt_RollbackKPIEmpty::Name.Name' value: 'Name'
  id: 'Attribute::LibOpt_Run::AutoAnalysisEnabled.Description' value: 'Whether after the run finishes the run should be automatically analyzed.\n\nIf enabled, `LibOpt_Statistics` and `LibOpt_Issues` will be created when the run finishes.'
  id: 'Attribute::LibOpt_Run::AutoAnalysisEnabled.Name' value: 'AutoAnalysisEnabled'
  id: 'Attribute::LibOpt_Run::AutoCleanupEnabled.Description' value: 'Whether this run can be cleaned up by the auto cleanup functionality.'
  id: 'Attribute::LibOpt_Run::AutoCleanupEnabled.Name' value: 'AutoCleanupEnabled'
  id: 'Attribute::LibOpt_Run::AutoIterationsEnabled.Description' value: 'Whether the run is expected to automatically create iterations at the end of the run. \n\nSet this value to `false` to not create iterations.\nThis is recommended in production, as it improves performance.'
  id: 'Attribute::LibOpt_Run::AutoIterationsEnabled.Name' value: 'AutoIterationsEnabled'
  id: 'Attribute::LibOpt_Run::BranchName.Description' value: 'The active git branch when this `LibOpt_Run` was created.'
  id: 'Attribute::LibOpt_Run::BranchName.Name' value: 'BranchName'
  id: 'Attribute::LibOpt_Run::BreakpointPollDuration.Description' value: 'The duration to pause when we hit a `LibOpt_BreakpointEvent`.\nAfter this time we check if we can continue optimizing or not. If not, we wait this duration again and again and again.'
  id: 'Attribute::LibOpt_Run::BreakpointPollDuration.Name' value: 'BreakpointPollDuration'
  id: 'Attribute::LibOpt_Run::Comment.Description' value: 'An attribute that can be used by the user to add some meta data on the `LibOpt_Run`.'
  id: 'Attribute::LibOpt_Run::Comment.Name' value: 'Comment'
  id: 'Attribute::LibOpt_Run::ComponentNamesAreUnique.Description' value: 'Whether all `LibOpt_Component` names are unique.'
  id: 'Attribute::LibOpt_Run::ComponentNamesAreUnique.Name' value: 'ComponentNamesAreUnique'
  id: 'Attribute::LibOpt_Run::ComputerName.Description' value: 'The computer this `LibOpt_Run` was created on.'
  id: 'Attribute::LibOpt_Run::ComputerName.Name' value: 'ComputerName'
  id: 'Attribute::LibOpt_Run::CreatedOn.Description' value: 'The date time this `LibOpt_Run` was created.'
  id: 'Attribute::LibOpt_Run::CreatedOn.Name' value: 'CreatedOn'
  id: 'Attribute::LibOpt_Run::DebugScope.Description' value: "Allow debugging the `LibOpt_Scope` after a `LibOpt_Run`.\n\nWhen enabled, the input and output `LibOpt_Scope` of every `LibOpt_Task` is stored in its `LibOpt_SnapshotComponent`.\nWhen a `LibOpt_ScopeElement` object is deleted, a special `LibOpt_ScopeElementDeleted` object will be created in its place.\nThis `LibOpt_ScopeElementDeleted` object contains the `LibOpt_ScopeElement.Identifier` and `LibOpt_ScopeElement.Details` attributes of the deleted `LibOpt_ScopeElement` object.\n\nBefore the run, the value of the `LibOpt_Optimizer.DebugScope` attribute is copied to this attribute.\nDuring the run, this attribute can be set from the 'Toggles' context menu of the 'Runs' from."
  id: 'Attribute::LibOpt_Run::DebugScope.Name' value: 'DebugScope'
  id: 'Attribute::LibOpt_Run::Duration.Description' value: 'The duration this `LibOpt_Run` has been running'
  id: 'Attribute::LibOpt_Run::Duration.Name' value: 'Duration'
  id: 'Attribute::LibOpt_Run::FinishedOn.Description' value: 'The date time this `LibOpt_Run` finished, either via aborting or because the `LibOpt_Components` finished executing.'
  id: 'Attribute::LibOpt_Run::FinishedOn.Name' value: 'FinishedOn'
  id: 'Attribute::LibOpt_Run::FinishedOnPrecision.Description' value: 'The time of finishing the run according to OS::PrecisionCounter().'
  id: 'Attribute::LibOpt_Run::FinishedOnPrecision.Name' value: 'FinishedOnPrecision'
  id: 'Attribute::LibOpt_Run::HasIterations.Description' value: 'Whether iterations are enabled or not. This controls the declarative creation / deletion of `LibOpt_Iteration` objects for your `LibOpt_Run`.'
  id: 'Attribute::LibOpt_Run::HasIterations.Name' value: 'HasIterations'
  id: 'Attribute::LibOpt_Run::HasKPIParts.Description' value: 'Indicates whether or not `LibOpt_SnapshotKPIPart` should be created for this run.'
  id: 'Attribute::LibOpt_Run::HasKPIParts.Name' value: 'HasKPIParts'
  id: 'Attribute::LibOpt_Run::HasSnapshots.Description' value: 'Whether the run is expected to create snapshots or not.\n\nSet this value to false to stop creating snapshots.\nThis is recommended in production, as it improves performance.'
  id: 'Attribute::LibOpt_Run::HasSnapshots.Name' value: 'HasSnapshots'
  id: 'Attribute::LibOpt_Run::HasToCreateDatasetOnBreakpoint.Description' value: "When the 'Create dataset copy' button in the 'Component positions' form is pressed, then this attribute is set to `true`.\nThis button can only be pressed when the run is paused.\nAs long as the run is paused, the `PollBreakpoints` method is executed every `LibOpt_Run.BreakpointPollDuration` seconds. \nWhen this `HasToCreateDatasetOnBreakpoint` attribute is `true`, then the `PollBreakpoints` method will create a dataset copy. \nThis method will then automatically set the `HasToCreateDatasetOnBreakpoint` attribute to `false`."
  id: 'Attribute::LibOpt_Run::HasToCreateDatasetOnBreakpoint.Name' value: 'HasToCreateDatasetOnBreakpoint'
  id: 'Attribute::LibOpt_Run::HasToPropagateAfterUserCode.Description' value: "This attribute is used in the optimizer to decide whether or not a `Transaction::Transaction.Propagate()` should be called after each time that AE code has been executed. This has a major negative impact on the performance of the optimizer.\nWhen this attribute is `true`, then any propagation errors will show up in the correct spot in the 'Snapshots' form. This feature can therefore be used to debug propagation errors more easily. \nNote: If an optimizer step is not expecting a fully propagated state, then setting this attribute to `true` might cause unexpected behavior in your optimizer.\n\nBefore the run, the value of the `LibOpt_Optimizer.HasToPropagateAfterUserCode` attribute is copied to this attribute.\nDuring the run, the attribute can be set from the 'Enable/Disable debugging propagation errors' sub-context menu, which can be found in the 'Toggles' context menu of the 'Runs' from."
  id: 'Attribute::LibOpt_Run::HasToPropagateAfterUserCode.Name' value: 'HasToPropagateAfterUserCode'
  id: 'Attribute::LibOpt_Run::HasToPropagateAfterUserCodeOnOptimizer.Description' value: 'This attribute is a workaround to get the `LibOpt_Optimizer.HasToPropagateAfterUserCode` attribute.\nThe `LibOpt_Run.Optimizer` relation is protected, so the relation cannot be accessed from other types.\n\nThis attribute is used in the `LibOpt_BreakpointPosition.HasEnabledPropagationAfterUserCode` constraint.'
  id: 'Attribute::LibOpt_Run::HasToPropagateAfterUserCodeOnOptimizer.Name' value: 'HasToPropagateAfterUserCodeOnOptimizer'
  id: 'Attribute::LibOpt_Run::ImgAutoAnalysis.Description' value: 'Whether this run is automatically analyzed after it is finished.'
  id: 'Attribute::LibOpt_Run::ImgAutoAnalysis.Name' value: 'ImgAutoAnalysis'
  id: 'Attribute::LibOpt_Run::ImgAutomaticCleanup.Description' value: 'Whether this run is automatically cleaned up'
  id: 'Attribute::LibOpt_Run::ImgAutomaticCleanup.Name' value: 'ImgAutomaticCleanup'
  id: 'Attribute::LibOpt_Run::ImgAutomaticPropagation.Description' value: 'Whether this run has automatic propagation enabled or not'
  id: 'Attribute::LibOpt_Run::ImgAutomaticPropagation.Name' value: 'ImgAutomaticPropagation'
  id: 'Attribute::LibOpt_Run::ImgDatasetCopiesEnabled.Description' value: 'Whether this run is allowed to create dataset copies or not'
  id: 'Attribute::LibOpt_Run::ImgDatasetCopiesEnabled.Name' value: 'ImgDatasetCopiesEnabled'
  id: 'Attribute::LibOpt_Run::ImgDebugScope.Name' value: 'ImgDebugScope'
  id: 'Attribute::LibOpt_Run::ImgHasParallelism.Description' value: 'Whether this run has parallel iterations, or was executed completely linear.'
  id: 'Attribute::LibOpt_Run::ImgHasParallelism.Name' value: 'ImgHasParallelism'
  id: 'Attribute::LibOpt_Run::ImgStatus.Description' value: 'The status of the run'
  id: 'Attribute::LibOpt_Run::ImgStatus.Name' value: 'ImgStatus'
  id: 'Attribute::LibOpt_Run::InOneTransaction.Description' value: 'When this setting is set to `true`, the `LibOpt_Run.Start` method will not use reactive quill, meaning the optimization run will be done in one transaction.\nIf a component creates a new stream, while this setting is set to `true`, the run will probably crash. Be careful.\n\nNote that you will need to make sure that the components are also executing in the same transaction.\nFor example, you can use the `LibOpt_TaskTransporterOneTransaction`.\nYou can set the `LibOpt_TaskTransporterOneTransaction` on your `LibOpt_Links` by using the `LibOpt_Link.SetTaskTransporterOneTransaction` or the `LibOpt_Link.AsOneTransaction` methods.\nThe `LibOpt_Run.ConfigureForOneTransaction` static method helps you transform your `LibOpt_Run` to be executed in one transaction.'
  id: 'Attribute::LibOpt_Run::InOneTransaction.Name' value: 'InOneTransaction'
  id: 'Attribute::LibOpt_Run::InternalIdentifier.Description' value: 'An unique identifier for the `LibOpt_Run`.\nThis is used to find the `LibOpt_ScopeElementOnRun` given the `LibOpt_ScopeElement` and `LibOpt_Run`.'
  id: 'Attribute::LibOpt_Run::InternalIdentifier.Name' value: 'InternalIdentifier'
  id: 'Attribute::LibOpt_Run::IsAborted.Description' value: 'Whether or not this `LibOpt_Run` was aborted.'
  id: 'Attribute::LibOpt_Run::IsAborted.Name' value: 'IsAborted'
  id: 'Attribute::LibOpt_Run::IsAutoCleanupSnapshots.Description' value: 'Indicates whether or not automatic deletion of `LibOpt_Snapshots` is enabled for this `LibOpt_Run`.'
  id: 'Attribute::LibOpt_Run::IsAutoCleanupSnapshots.Name' value: 'IsAutoCleanupSnapshots'
  id: 'Attribute::LibOpt_Run::IsCreatingDatasetCopiesEnabled.Description' value: "This attribute is used to Enable/Disable the creation of dataset copies during this run.\n\nBefore the run, the value of the `LibOpt_Optimizer.IsCreatingDatasetCopiesEnabled` attribute is copied to this attribute.\nDuring the run, this attribute can be set from the 'Toggles' context menu of the 'Runs' from."
  id: 'Attribute::LibOpt_Run::IsCreatingDatasetCopiesEnabled.Name' value: 'IsCreatingDatasetCopiesEnabled'
  id: 'Attribute::LibOpt_Run::IsCreatingDatasetCopiesEnabledOnOptimizer.Description' value: "Workaround to get the `LibOpt_Optimizer.IsCreatingDatasetCopiesEnabled` attribute.\nThe `LibOpt_Run.Optimizer` relation is protected, so the relation cannot be accessed from other types.\n\nThis attribute is used to Enable/Disable the creation of dataset copies during the next run.\nThe attribute can be set from the 'Toggles' context menu of the 'Optimizers' from."
  id: 'Attribute::LibOpt_Run::IsCreatingDatasetCopiesEnabledOnOptimizer.Name' value: 'IsCreatingDatasetCopiesEnabledOnOptimizer'
  id: 'Attribute::LibOpt_Run::IsDatasetThatExecutedRunDeleted.Description' value: "When either the 'Select dataset that executed run' or the 'Open client with dataset run' context menu items in the 'Runs' form are pressed and if the dataset that executed the run has been deleted,\nthen this attribute will be set to `true`.\nWhen this attribute is `true`, there will be a precondition on the 'Select dataset that executed run' or the 'Open client with dataset run' context menu items. \nThis precondition shows that the dataset that executed that run has been deleted."
  id: 'Attribute::LibOpt_Run::IsDatasetThatExecutedRunDeleted.Name' value: 'IsDatasetThatExecutedRunDeleted'
  id: 'Attribute::LibOpt_Run::IsFailed.Description' value: 'Whether the run has failed.\n\nThis does not occur a lot, but can happen if an error is thrown during the execution of the `LibOpt_Component.OnFinalize` method or when an error is thrown when the run is executing in one transaction.'
  id: 'Attribute::LibOpt_Run::IsFailed.Name' value: 'IsFailed'
  id: 'Attribute::LibOpt_Run::IsFinalizingTask.Description' value: 'Whether the run is currently busy finalizing a task (using `LibOpt_Task.Finalize`)\nIf something goes wrong during task finalizing, the run fails.\n\nThis attribute helps to determine if the run needs to fail in case an error is captured.'
  id: 'Attribute::LibOpt_Run::IsFinalizingTask.Name' value: 'IsFinalizingTask'
  id: 'Attribute::LibOpt_Run::IsRunControllerEnabled.Description' value: "If this value is true, this `LibOpt_Run` checks with the optimizer run controller when it can be started.\nNote: The optimizer run controller dataset should be loaded and it should be enabled.\n\nWhen a new `LibOpt_Run` is created, then this value is set equal to `LibOpt_Optimizer.IsRunControllerEnabled`.\n`LibOpt_Optimizer.IsRunControllerEnabled` can be set in the 'Settings run controller' dialog, which can be found in the context menu of the 'Optimizers' form."
  id: 'Attribute::LibOpt_Run::IsRunControllerEnabled.Name' value: 'IsRunControllerEnabled'
  id: 'Attribute::LibOpt_Run::MDSIDRun.Description' value: 'The MDSID of the dataset that executed this run.'
  id: 'Attribute::LibOpt_Run::MDSIDRun.Name' value: 'MDSIDRun'
  id: 'Attribute::LibOpt_Run::ModelVersion.Description' value: 'The local model version when this `LibOpt_Run` was created.'
  id: 'Attribute::LibOpt_Run::ModelVersion.Name' value: 'ModelVersion'
  id: 'Attribute::LibOpt_Run::NextAnalysisSnapshotRunNr.Description' value: 'The number we will use for the next `LibOpt_AnalysisSnapshot.SnapshotNr`.'
  id: 'Attribute::LibOpt_Run::NextAnalysisSnapshotRunNr.Name' value: 'NextAnalysisSnapshotRunNr'
  id: 'Attribute::LibOpt_Run::OptimizerIsAutoCleanup.Description' value: 'Whether auto cleanup is enabled in the owning `LibOpt_Optimizer`.'
  id: 'Attribute::LibOpt_Run::OptimizerIsAutoCleanup.Name' value: 'OptimizerIsAutoCleanup'
  id: 'Attribute::LibOpt_Run::OptimizerName.Description' value: 'The name of the `LibOpt_Optimizer` that created this `LibOpt_Run`.\nThis allows the user to find the correct `LibOpt_Optimizer` to update in case the configuration of this `LibOpt_Run` is incorrect.\n`LibOpt_BreakpointConditionals` work on `LibOpt_Optimizer` with the same `OptimizerName` attribute.'
  id: 'Attribute::LibOpt_Run::OptimizerName.Name' value: 'OptimizerName'
  id: 'Attribute::LibOpt_Run::ParallelismNumber.Description' value: 'Number of components that are executed in parallel during this run on average'
  id: 'Attribute::LibOpt_Run::ParallelismNumber.Name' value: 'ParallelismNumber'
  id: 'Attribute::LibOpt_Run::ParallelismNumberWithoutWaiting.Description' value: 'Number of components working at the same time / total duration. Here, we do not count the time that no components are executed.'
  id: 'Attribute::LibOpt_Run::ParallelismNumberWithoutWaiting.Name' value: 'ParallelismNumberWithoutWaiting'
  id: 'Attribute::LibOpt_Run::QuintiqVersion.Description' value: 'The Quintiq software version this run was created in.'
  id: 'Attribute::LibOpt_Run::QuintiqVersion.Name' value: 'QuintiqVersion'
  id: 'Attribute::LibOpt_Run::RequestedOn.Description' value: 'If the `LibOpt_OptimizerRunController` is enabled, then a request to start a `LibOpt_Run` has to be sent to the `LibOpt_OptimizerRunController` before the run can be started.\nThe `RequestedOn` attribute is equal to the date time of this request.\n\nNote that this attribute is set before the `StartedOn` attribute.'
  id: 'Attribute::LibOpt_Run::RequestedOn.Name' value: 'RequestedOn'
  id: 'Attribute::LibOpt_Run::RequestedThreadsRunController.Description' value: "The number of threads that are requested to the `LibOpt_OptimizerRunController` for this `LibOpt_ControllerRun`.\n\nWhen a new `LibOpt_Run` is created, then this value is set equal to `LibOpt_Optimizer.RequestedThreadsRunController`.\n`LibOpt_Optimizer.RequestedThreadsRunController` can be set in the 'Settings run controller' dialog, which can be found in the context menu of the 'Optimizers' form."
  id: 'Attribute::LibOpt_Run::RequestedThreadsRunController.Name' value: 'RequestedThreadsRunController'
  id: 'Attribute::LibOpt_Run::RunNr.Description' value: 'The identifier allows us to uniquely find a certain `LibOpt_Run` within a single `LibOpt_Optimization` object.'
  id: 'Attribute::LibOpt_Run::RunNr.Name' value: 'RunNr'
  id: 'Attribute::LibOpt_Run::Severity.Description' value: 'The quality of the run, in terms of its severity rating.\nThis attribute takes the highest severity of all the `LibOpt_Issues` in the run.'
  id: 'Attribute::LibOpt_Run::Severity.Name' value: 'Severity'
  id: 'Attribute::LibOpt_Run::StartedOn.Description' value: 'The date time this `LibOpt_Run` started optimization.\n\nIf the `LibOpt_OptimizerRunController` is enabled, then this attribute is only set after the run controller confirmed that the `LibOpt_Run` can start.'
  id: 'Attribute::LibOpt_Run::StartedOn.Name' value: 'StartedOn'
  id: 'Attribute::LibOpt_Run::StartedOnPrecision.Description' value: 'The time of starting the run according to OS::PrecisionCounter().'
  id: 'Attribute::LibOpt_Run::StartedOnPrecision.Name' value: 'StartedOnPrecision'
  id: 'Attribute::LibOpt_Run::Status.Description' value: 'The status of the `LibOpt_Run`.\nWe define these statuses:\n - Loaded - The `LibOpt_Run` has not started optimizing.\n - Optimizing - The `LibOpt_Run` started optimizing and is currently working.\n - Finished - The `LibOpt_Run` has finished optimizing.\n - Aborted - The `LibOpt_Run` has been aborted.\n - Aborted - Copied dataset - The `LibOpt_Run` has been aborted, because this dataset is a copy of the dataset in which the run started.\n - Failed - The `LibOpt_Run` has failed. An error was not caught.\n - Paused - The `LibOpt_Run` has been paused by a `LibOpt_BreakpointEvent`.\n \nThe static methods representing these statuses can be found on `LibOpt_RunStatus`.'
  id: 'Attribute::LibOpt_Run::Status.Name' value: 'Status'
  id: 'Attribute::LibOpt_Run::TotalNrOfErrors.Description' value: 'The total number of errors, based on snapshots of `LibOpt_SnapshotError`, within an instance of `LibOpt_Run`.'
  id: 'Attribute::LibOpt_Run::TotalNrOfErrors.Name' value: 'TotalNrOfErrors'
  id: 'Attribute::LibOpt_Run::TotalNrOfIterations.Description' value: 'The number of iterations within an instance of `LibOpt_Run`.'
  id: 'Attribute::LibOpt_Run::TotalNrOfIterations.Name' value: 'TotalNrOfIterations'
  id: 'Attribute::LibOpt_Run::TotalNrOfRollbacks.Description' value: 'The number of rollbacks within an instance of `LibOpt_Run`.'
  id: 'Attribute::LibOpt_Run::TotalNrOfRollbacks.Name' value: 'TotalNrOfRollbacks'
  id: 'Attribute::LibOpt_Run::TotalNrOfWarnings.Description' value: 'The total number of warnings, based on snapshots of `LibOpt_SnapshotWarning`, within an instance of `LibOpt_Run`.'
  id: 'Attribute::LibOpt_Run::TotalNrOfWarnings.Name' value: 'TotalNrOfWarnings'
  id: 'Attribute::LibOpt_Run::TotalRollbacksAsPercentage.Description' value: 'The percentage of iterations which has rollback, within an instance of `LibOpt_Run`.'
  id: 'Attribute::LibOpt_Run::TotalRollbacksAsPercentage.Name' value: 'TotalRollbacksAsPercentage'
  id: 'Attribute::LibOpt_Scope::CreatedOn.Description' value: 'The date time this object was created.'
  id: 'Attribute::LibOpt_Scope::CreatedOn.Name' value: 'CreatedOn'
  id: 'Attribute::LibOpt_ScopeElement::Details.Description' value: 'This attribute contains information on the details of this `LibOpt_ScopeElement`.'
  id: 'Attribute::LibOpt_ScopeElement::Details.Name' value: 'Details'
  id: 'Attribute::LibOpt_ScopeElement::Identifier.Description' value: 'An identifier for the `LibOpt_ScopeElement`.'
  id: 'Attribute::LibOpt_ScopeElement::Identifier.Name' value: 'Identifier'
  id: 'Attribute::LibOpt_ScopeElement::InternalIdentifier.Description' value: 'An identifier to uniquely identify this `LibOpt_ScopeElement`.'
  id: 'Attribute::LibOpt_ScopeElement::InternalIdentifier.Name' value: 'InternalIdentifier'
  id: 'Attribute::LibOpt_ScopeElement::Status.Name' value: 'Status'
  id: 'Attribute::LibOpt_ScopeElementDeleted::DeletedOnDeserialize.Description' value: 'Indicates that this scope element was deleted by a deserialization. This means that the original scope element was created in the transaction that was reverted.'
  id: 'Attribute::LibOpt_ScopeElementDeleted::DeletedOnDeserialize.Name' value: 'DeletedOnDeserialize'
  id: 'Attribute::LibOpt_ScopeElementDeleted::Details.Description' value: 'This attribute contains information on the details of this `LibOpt_ScopeElement`.'
  id: 'Attribute::LibOpt_ScopeElementDeleted::Details.Name' value: 'Details'
  id: 'Attribute::LibOpt_ScopeElementDeleted::Identifier.Description' value: 'An identifier for the `LibOpt_ScopeElement`.'
  id: 'Attribute::LibOpt_ScopeElementDeleted::Identifier.Name' value: 'Identifier'
  id: 'Attribute::LibOpt_ScopeElementDeleted::InternalIdentifier.Description' value: 'An identifier to uniquely identify this `LibOpt_ScopeElement`.'
  id: 'Attribute::LibOpt_ScopeElementDeleted::InternalIdentifier.Name' value: 'InternalIdentifier'
  id: 'Attribute::LibOpt_ScopeElementDeleted::Status.Name' value: 'Status'
  id: 'Attribute::LibOpt_ScopeElementDeleted::ValueDetails.Description' value: 'The `Details` of the `LibOpt_ScopeElement` when it is was deleted.'
  id: 'Attribute::LibOpt_ScopeElementDeleted::ValueDetails.Name' value: 'ValueDetails'
  id: 'Attribute::LibOpt_ScopeElementDeleted::ValueIdentifier.Description' value: 'When a `LibOpt_ScopeElement` object gets deleted, then the value of the `LibOpt_ScopeElement.Identifier` attribute is copied to this `ValueIdentifier` attribute.'
  id: 'Attribute::LibOpt_ScopeElementDeleted::ValueIdentifier.Name' value: 'ValueIdentifier'
  id: 'Attribute::LibOpt_ScopeElementOnRun::RunID.Description' value: 'The unique identifier of the `LibOpt_Run`.'
  id: 'Attribute::LibOpt_ScopeElementOnRun::RunID.Name' value: 'RunID'
  id: 'Attribute::LibOpt_ScopeElementOnRun::ScopeElementID.Description' value: 'The internal identifier of the `LibOpt_ScopeElement`.'
  id: 'Attribute::LibOpt_ScopeElementOnRun::ScopeElementID.Name' value: 'ScopeElementID'
  id: 'Attribute::LibOpt_ScopeElementOnScope::Comment.Description' value: 'An optional description on why this `LibOpt_ScopeElement` was chosen in this `LibOpt_Scope`.'
  id: 'Attribute::LibOpt_ScopeElementOnScope::Comment.Name' value: 'Comment'
  id: 'Attribute::LibOpt_ScopeElementOnScopeDEPRECATED::Comment.Description' value: 'An optional description on why this `LibOpt_ScopeElement` was chosen in this `LibOpt_Scope`.'
  id: 'Attribute::LibOpt_ScopeElementOnScopeDEPRECATED::Comment.Name' value: 'Comment'
  id: 'Attribute::LibOpt_ScopeElementOnScopeDEPRECATED::ScopeElementID.Description' value: 'The internal identifier of the scope element this element is linked to.'
  id: 'Attribute::LibOpt_ScopeElementOnScopeDEPRECATED::ScopeElementID.Name' value: 'ScopeElementID'
  id: 'Attribute::LibOpt_ScopeElementOnScopeDEPRECATED::ScopeID.Name' value: 'ScopeID'
  id: 'Attribute::LibOpt_ScopeFat::CreatedOn.Description' value: 'The date time this object was created.'
  id: 'Attribute::LibOpt_ScopeFat::CreatedOn.Name' value: 'CreatedOn'
  id: 'Attribute::LibOpt_ScopeFat::InternalIdentifier.Description' value: 'An identifier that uniquely identifies this object.\nThis is persistant after a dataset copy (unlike the Key of the object)'
  id: 'Attribute::LibOpt_ScopeFat::InternalIdentifier.Name' value: 'InternalIdentifier'
  id: 'Attribute::LibOpt_ScopeShared32::GroupVector.Description' value: 'The set of `LibOpt_Group.ID` associated with the `LibOpt_ScopeThins` in a `NumberVector` ordered by `LibOpt_ScopeThin.ID`.'
  id: 'Attribute::LibOpt_ScopeShared32::GroupVector.Name' value: 'GroupVector'
  id: 'Attribute::LibOpt_ScopeShared32::Set.Description' value: 'This is a `Number` that represents an intset.\n\nAn intset works like this: \nA `Number` is made up of bits (zeroes and ones). To be exact: there are 32 bits in a `Number`.\nEach of the bits represent whether a `LibOpt_ScopeThin` is part of this `LibOpt_ScopeShared` or not.\n\nFor example, if we have the number 37, which is "0000 0000 0000 0000 0000 0000 0010 0101", we can see this as all zeroes, except for ones at index 0, 2 and 5.\nThe number 37 therefore represents that the `LibOpt_ScopeThin` with ID 0, 2 and 5 are linked to this `LibOpt_ScopeShared`.'
  id: 'Attribute::LibOpt_ScopeShared32::Set.Name' value: 'Set'
  id: 'Attribute::LibOpt_ScopeShared32::Type.Name' value: 'Type'
  id: 'Attribute::LibOpt_ScopeShared::GroupVector.Description' value: 'The set of `LibOpt_Group.ID` associated with the `LibOpt_ScopeThins` in a `NumberVector` ordered by `LibOpt_ScopeThin.ID`.'
  id: 'Attribute::LibOpt_ScopeShared::GroupVector.Name' value: 'GroupVector'
  id: 'Attribute::LibOpt_ScopeShared::Type.Name' value: 'Type'
  id: 'Attribute::LibOpt_ScopeSharedVector::GroupVector.Description' value: 'The set of `LibOpt_Group.ID` associated with the `LibOpt_ScopeThins` in a `NumberVector` ordered by `LibOpt_ScopeThin.ID`.'
  id: 'Attribute::LibOpt_ScopeSharedVector::GroupVector.Name' value: 'GroupVector'
  id: 'Attribute::LibOpt_ScopeSharedVector::Set.Description' value: 'This `BinaryValue` is a `NumberVector` that represents an intset.\n\nAn intset works like this: A `NumberVector` is made up of multiple `Numbers`.\nEach `Number` is made up of bits (zeroes and ones). To be exact: there are 32 bits in a `Number`.\nEach of the bits represent whether a `LibOpt_ScopeThin` is part of this `LibOpt_ScopeShared` or not.\n\nFor example, if we have the number 37, which is "0000 0000 0000 0000 0000 0000 0010 0101", we can see this as all zeroes, except for ones at index 0, 2 and 5.\nThe number 37 therefore represents that the `LibOpt_ScopeThin` with ID 0, 2 and 5 are linked to this `LibOpt_ScopeShared`.\nThe `NumberVector` helps to extend the maximum range from 32 to infinite.'
  id: 'Attribute::LibOpt_ScopeSharedVector::Set.Name' value: 'Set'
  id: 'Attribute::LibOpt_ScopeSharedVector::Type.Name' value: 'Type'
  id: 'Attribute::LibOpt_ScopeThin::CreatedOn.Description' value: 'The date time this object was created.'
  id: 'Attribute::LibOpt_ScopeThin::CreatedOn.Name' value: 'CreatedOn'
  id: 'Attribute::LibOpt_ScopeThin::ID.Description' value: 'An identifier for the `LibOpt_Scope`, used in the intsets of the `LibOpt_ScopeShared` subclasses in the `LibOpt_ScopeShared32.Set` and `LibOpt_ScopeSharedVector.Set` attributes.'
  id: 'Attribute::LibOpt_ScopeThin::ID.Name' value: 'ID'
  id: 'Attribute::LibOpt_ScopeThin::Index.Name' value: 'Index'
  id: 'Attribute::LibOpt_ScopeThin::Mask.Name' value: 'Mask'
  id: 'Attribute::LibOpt_Selector::Breakpoints.Description' value: 'Whether any component position of this component has one or more breakpoints'
  id: 'Attribute::LibOpt_Selector::Breakpoints.Name' value: 'Breakpoints'
  id: 'Attribute::LibOpt_Selector::CanBeCalled.Description' value: 'Whether or not this component can be called, given the selected start component.'
  id: 'Attribute::LibOpt_Selector::CanBeCalled.Name' value: 'CanBeCalled'
  id: 'Attribute::LibOpt_Selector::ComponentType.Description' value: 'A short name for this `LibOpt_Component` type.'
  id: 'Attribute::LibOpt_Selector::ComponentType.Name' value: 'ComponentType'
  id: 'Attribute::LibOpt_Selector::ConfigurationError.Description' value: 'The errors in the configuration.'
  id: 'Attribute::LibOpt_Selector::ConfigurationError.Name' value: 'ConfigurationError'
  id: 'Attribute::LibOpt_Selector::DatasetCopies.Description' value: 'Whether any component position of this component has one or more dataset copies (or whether dataset copies are disabled)'
  id: 'Attribute::LibOpt_Selector::DatasetCopies.Name' value: 'DatasetCopies'
  id: 'Attribute::LibOpt_Selector::Depth.Description' value: 'The highest number of `LibOpt_Components` above this component.'
  id: 'Attribute::LibOpt_Selector::Depth.Name' value: 'Depth'
  id: 'Attribute::LibOpt_Selector::HasBreakpointEvent.Description' value: 'Whether the `LibOpt_Component` is waiting for a `LibOpt_BreakpointEvent`.'
  id: 'Attribute::LibOpt_Selector::HasBreakpointEvent.Name' value: 'HasBreakpointEvent'
  id: 'Attribute::LibOpt_Selector::HasNoBreakpoints.Description' value: 'Whether this `LibOpt_Component` has no `LibOpt_BreakpointConditional` attached to any of its component positions.'
  id: 'Attribute::LibOpt_Selector::HasNoBreakpoints.Name' value: 'HasNoBreakpoints'
  id: 'Attribute::LibOpt_Selector::HasNoDatasetCopies.Description' value: 'Whether this component has no `LibOpt_DatasetCopyConditional` attached to any of its component positions.'
  id: 'Attribute::LibOpt_Selector::HasNoDatasetCopies.Name' value: 'HasNoDatasetCopies'
  id: 'Attribute::LibOpt_Selector::HasUniqueName.Description' value: 'Whether the name of this `LibOpt_Component` is unique.'
  id: 'Attribute::LibOpt_Selector::HasUniqueName.Name' value: 'HasUniqueName'
  id: 'Attribute::LibOpt_Selector::ImgStartComponent.Description' value: 'Highlights the start component'
  id: 'Attribute::LibOpt_Selector::ImgStartComponent.Name' value: 'ImgStartComponent'
  id: 'Attribute::LibOpt_Selector::IsCorrectlyConfigured.Name' value: 'IsCorrectlyConfigured'
  id: 'Attribute::LibOpt_Selector::IsDatasetCopyEnabled.Description' value: "Used in the UI to set the 'Dataset copies are disabled' image icon in the 'Components' form and to show a constraint to the user.\n    \nAn icon will be shown when:\n1: There is a dataset copy on any component position of this component.\nand either \n2a: The optimizer run is ongoing and `LibOpt_Run.IsCreatingDatasetCopiesEnabled` is set to `false` on the related `LibOpt_Run` object.\n2b: The optimizer run has finished and `LibOpt_Optimizer.IsCreatingDatasetCopiesEnabled` is set to `false` on the related `LibOpt_Optimizer` object."
  id: 'Attribute::LibOpt_Selector::IsDatasetCopyEnabled.Name' value: 'IsDatasetCopyEnabled'
  id: 'Attribute::LibOpt_Selector::IsPostProcessing.Description' value: 'If this attribute is true when a user aborts an optimizer run, then the optimizer will first execute any post processing `LibOpt_LinkIteratorForEach` links before aborting the run. \n\nFor the `LibOpt_IteratorForEachLink` component, this attribute is true when `LibOpt_LinkIteratorForEach.IsPostProcessing` is true for any of its links. \nFor all other components, this attribute is always false.'
  id: 'Attribute::LibOpt_Selector::IsPostProcessing.Name' value: 'IsPostProcessing'
  id: 'Attribute::LibOpt_Selector::Name.Description' value: 'The name of the `LibOpt_Component`.\n\nThe name should be unique within the `LibOpt_Run`.'
  id: 'Attribute::LibOpt_Selector::Name.Name' value: 'Name'
  id: 'Attribute::LibOpt_Selector::NotAUniqueName.Description' value: 'Whether the name of the component is not unique within the run.\nThis can lead to unexpected behavior while running the optimizer.'
  id: 'Attribute::LibOpt_Selector::NotAUniqueName.Name' value: 'NotAUniqueName'
  id: 'Attribute::LibOpt_Selector::NotCorrectlyConfigured.Description' value: 'Whether there are any configuration errors for this component.\nFor example, whether a switch has fewer than 2 branches.'
  id: 'Attribute::LibOpt_Selector::NotCorrectlyConfigured.Name' value: 'NotCorrectlyConfigured'
  id: 'Attribute::LibOpt_Selector::NrOfEnabledBreakpoints.Description' value: 'The number of enabled `LibOpt_BreakpointConditionals` that are attached to the `LibOpt_BreakpointPositions` of this component. \nThis attribute is used in the `HasNoBreakpoints` constraint.'
  id: 'Attribute::LibOpt_Selector::NrOfEnabledBreakpoints.Name' value: 'NrOfEnabledBreakpoints'
  id: 'Attribute::LibOpt_Selector::NrOfEnabledDatasetCopies.Description' value: 'The number of enabled `LibOpt_DatasetCopyConditionals` that are attached to the `LibOpt_BreakpointPositions` of this component. \nThis attribute is used in the `HasNoDatasetCopies` constraint.'
  id: 'Attribute::LibOpt_Selector::NrOfEnabledDatasetCopies.Name' value: 'NrOfEnabledDatasetCopies'
  id: 'Attribute::LibOpt_Selector::NrTimesCalled.Description' value: 'The number of times this component was called (the DoTask method was called).'
  id: 'Attribute::LibOpt_Selector::NrTimesCalled.Name' value: 'NrTimesCalled'
  id: 'Attribute::LibOpt_Selector::Path.Description' value: 'A declarative attribute that contains one Path to this component.\nThis can be used to sort a list of components in a semi-logical way.'
  id: 'Attribute::LibOpt_Selector::Path.Name' value: 'Path'
  id: 'Attribute::LibOpt_Selector::SequenceNr.Description' value: 'The position in the sequence of the `LibOpt_Components` in the `LibOpt_Run`.\n\nThe `LibOpt_Components` are sorted according to the `Path`.\nThis is slightly different from sorting on the `Depth`.\n\nThe difference is that the `Path` keeps different branches in a `LibOpt_Switch` together, while sorting on `Depth` intertwines them.\n\nExample:\n\nIf we have a switch with 2 branches, A and C, with each a link to B and D respectively, the sorting order is different.\n\n switch -> A -> B\n switch -> C -> D\n \nNow the `Depth` (and the sorting on `Depth`) will be:\nswitch = 0\nA = 1\nC = 1\nB = 2\nD = 2\n\nThe `Path` (and sorting of the `Path`) will be:\nswitch = "switch"\nA = "switch" -> "A"\nB = "switch" -> "A" -> "B"\nC = "switch" -> "C"\nD = "switch" -> "C" -> "D"'
  id: 'Attribute::LibOpt_Selector::SequenceNr.Name' value: 'SequenceNr'
  id: 'Attribute::LibOpt_Selector::Status.Name' value: 'Status'
  id: 'Attribute::LibOpt_Selector::TotalDuration.Description' value: 'Total duration spent on the component during the run'
  id: 'Attribute::LibOpt_Selector::TotalDuration.Name' value: 'TotalDuration'
  id: 'Attribute::LibOpt_Selector::Type.Description' value: 'The type of the component'
  id: 'Attribute::LibOpt_Selector::Type.Name' value: 'Type'
  id: 'Attribute::LibOpt_SelectorAnchor::Breakpoints.Description' value: 'Whether any component position of this component has one or more breakpoints'
  id: 'Attribute::LibOpt_SelectorAnchor::Breakpoints.Name' value: 'Breakpoints'
  id: 'Attribute::LibOpt_SelectorAnchor::CanBeCalled.Description' value: 'Whether or not this component can be called, given the selected start component.'
  id: 'Attribute::LibOpt_SelectorAnchor::CanBeCalled.Name' value: 'CanBeCalled'
  id: 'Attribute::LibOpt_SelectorAnchor::ComponentType.Description' value: 'A short name for this `LibOpt_Component` type.'
  id: 'Attribute::LibOpt_SelectorAnchor::ComponentType.Name' value: 'ComponentType'
  id: 'Attribute::LibOpt_SelectorAnchor::ConfigurationError.Description' value: 'The errors in the configuration.'
  id: 'Attribute::LibOpt_SelectorAnchor::ConfigurationError.Name' value: 'ConfigurationError'
  id: 'Attribute::LibOpt_SelectorAnchor::ConflictTimeout.Description' value: 'The maximum duration we will wait when a conflict happened.'
  id: 'Attribute::LibOpt_SelectorAnchor::ConflictTimeout.Name' value: 'ConflictTimeout'
  id: 'Attribute::LibOpt_SelectorAnchor::DatasetCopies.Description' value: 'Whether any component position of this component has one or more dataset copies (or whether dataset copies are disabled)'
  id: 'Attribute::LibOpt_SelectorAnchor::DatasetCopies.Name' value: 'DatasetCopies'
  id: 'Attribute::LibOpt_SelectorAnchor::Depth.Description' value: 'The highest number of `LibOpt_Components` above this component.'
  id: 'Attribute::LibOpt_SelectorAnchor::Depth.Name' value: 'Depth'
  id: 'Attribute::LibOpt_SelectorAnchor::HasBreakpointEvent.Description' value: 'Whether the `LibOpt_Component` is waiting for a `LibOpt_BreakpointEvent`.'
  id: 'Attribute::LibOpt_SelectorAnchor::HasBreakpointEvent.Name' value: 'HasBreakpointEvent'
  id: 'Attribute::LibOpt_SelectorAnchor::HasNoBreakpoints.Description' value: 'Whether this `LibOpt_Component` has no `LibOpt_BreakpointConditional` attached to any of its component positions.'
  id: 'Attribute::LibOpt_SelectorAnchor::HasNoBreakpoints.Name' value: 'HasNoBreakpoints'
  id: 'Attribute::LibOpt_SelectorAnchor::HasNoDatasetCopies.Description' value: 'Whether this component has no `LibOpt_DatasetCopyConditional` attached to any of its component positions.'
  id: 'Attribute::LibOpt_SelectorAnchor::HasNoDatasetCopies.Name' value: 'HasNoDatasetCopies'
  id: 'Attribute::LibOpt_SelectorAnchor::HasUniqueName.Description' value: 'Whether the name of this `LibOpt_Component` is unique.'
  id: 'Attribute::LibOpt_SelectorAnchor::HasUniqueName.Name' value: 'HasUniqueName'
  id: 'Attribute::LibOpt_SelectorAnchor::ImgStartComponent.Description' value: 'Highlights the start component'
  id: 'Attribute::LibOpt_SelectorAnchor::ImgStartComponent.Name' value: 'ImgStartComponent'
  id: 'Attribute::LibOpt_SelectorAnchor::IsCorrectlyConfigured.Name' value: 'IsCorrectlyConfigured'
  id: 'Attribute::LibOpt_SelectorAnchor::IsDatasetCopyEnabled.Description' value: "Used in the UI to set the 'Dataset copies are disabled' image icon in the 'Components' form and to show a constraint to the user.\n    \nAn icon will be shown when:\n1: There is a dataset copy on any component position of this component.\nand either \n2a: The optimizer run is ongoing and `LibOpt_Run.IsCreatingDatasetCopiesEnabled` is set to `false` on the related `LibOpt_Run` object.\n2b: The optimizer run has finished and `LibOpt_Optimizer.IsCreatingDatasetCopiesEnabled` is set to `false` on the related `LibOpt_Optimizer` object."
  id: 'Attribute::LibOpt_SelectorAnchor::IsDatasetCopyEnabled.Name' value: 'IsDatasetCopyEnabled'
  id: 'Attribute::LibOpt_SelectorAnchor::IsPostProcessing.Description' value: 'If this attribute is true when a user aborts an optimizer run, then the optimizer will first execute any post processing `LibOpt_LinkIteratorForEach` links before aborting the run. \n\nFor the `LibOpt_IteratorForEachLink` component, this attribute is true when `LibOpt_LinkIteratorForEach.IsPostProcessing` is true for any of its links. \nFor all other components, this attribute is always false.'
  id: 'Attribute::LibOpt_SelectorAnchor::IsPostProcessing.Name' value: 'IsPostProcessing'
  id: 'Attribute::LibOpt_SelectorAnchor::Name.Description' value: 'The name of the `LibOpt_Component`.\n\nThe name should be unique within the `LibOpt_Run`.'
  id: 'Attribute::LibOpt_SelectorAnchor::Name.Name' value: 'Name'
  id: 'Attribute::LibOpt_SelectorAnchor::NotAUniqueName.Description' value: 'Whether the name of the component is not unique within the run.\nThis can lead to unexpected behavior while running the optimizer.'
  id: 'Attribute::LibOpt_SelectorAnchor::NotAUniqueName.Name' value: 'NotAUniqueName'
  id: 'Attribute::LibOpt_SelectorAnchor::NotCorrectlyConfigured.Description' value: 'Whether there are any configuration errors for this component.\nFor example, whether a switch has fewer than 2 branches.'
  id: 'Attribute::LibOpt_SelectorAnchor::NotCorrectlyConfigured.Name' value: 'NotCorrectlyConfigured'
  id: 'Attribute::LibOpt_SelectorAnchor::NrOfEnabledBreakpoints.Description' value: 'The number of enabled `LibOpt_BreakpointConditionals` that are attached to the `LibOpt_BreakpointPositions` of this component. \nThis attribute is used in the `HasNoBreakpoints` constraint.'
  id: 'Attribute::LibOpt_SelectorAnchor::NrOfEnabledBreakpoints.Name' value: 'NrOfEnabledBreakpoints'
  id: 'Attribute::LibOpt_SelectorAnchor::NrOfEnabledDatasetCopies.Description' value: 'The number of enabled `LibOpt_DatasetCopyConditionals` that are attached to the `LibOpt_BreakpointPositions` of this component. \nThis attribute is used in the `HasNoDatasetCopies` constraint.'
  id: 'Attribute::LibOpt_SelectorAnchor::NrOfEnabledDatasetCopies.Name' value: 'NrOfEnabledDatasetCopies'
  id: 'Attribute::LibOpt_SelectorAnchor::NrTimesCalled.Description' value: 'The number of times this component was called (the DoTask method was called).'
  id: 'Attribute::LibOpt_SelectorAnchor::NrTimesCalled.Name' value: 'NrTimesCalled'
  id: 'Attribute::LibOpt_SelectorAnchor::Path.Description' value: 'A declarative attribute that contains one Path to this component.\nThis can be used to sort a list of components in a semi-logical way.'
  id: 'Attribute::LibOpt_SelectorAnchor::Path.Name' value: 'Path'
  id: 'Attribute::LibOpt_SelectorAnchor::SequenceNr.Description' value: 'The position in the sequence of the `LibOpt_Components` in the `LibOpt_Run`.\n\nThe `LibOpt_Components` are sorted according to the `Path`.\nThis is slightly different from sorting on the `Depth`.\n\nThe difference is that the `Path` keeps different branches in a `LibOpt_Switch` together, while sorting on `Depth` intertwines them.\n\nExample:\n\nIf we have a switch with 2 branches, A and C, with each a link to B and D respectively, the sorting order is different.\n\n switch -> A -> B\n switch -> C -> D\n \nNow the `Depth` (and the sorting on `Depth`) will be:\nswitch = 0\nA = 1\nC = 1\nB = 2\nD = 2\n\nThe `Path` (and sorting of the `Path`) will be:\nswitch = "switch"\nA = "switch" -> "A"\nB = "switch" -> "A" -> "B"\nC = "switch" -> "C"\nD = "switch" -> "C" -> "D"'
  id: 'Attribute::LibOpt_SelectorAnchor::SequenceNr.Name' value: 'SequenceNr'
  id: 'Attribute::LibOpt_SelectorAnchor::Status.Name' value: 'Status'
  id: 'Attribute::LibOpt_SelectorAnchor::TotalDuration.Description' value: 'Total duration spent on the component during the run'
  id: 'Attribute::LibOpt_SelectorAnchor::TotalDuration.Name' value: 'TotalDuration'
  id: 'Attribute::LibOpt_SelectorAnchor::Type.Description' value: 'The type of the component'
  id: 'Attribute::LibOpt_SelectorAnchor::Type.Name' value: 'Type'
  id: 'Attribute::LibOpt_SelectorAnchorBase::Breakpoints.Description' value: 'Whether any component position of this component has one or more breakpoints'
  id: 'Attribute::LibOpt_SelectorAnchorBase::Breakpoints.Name' value: 'Breakpoints'
  id: 'Attribute::LibOpt_SelectorAnchorBase::CanBeCalled.Description' value: 'Whether or not this component can be called, given the selected start component.'
  id: 'Attribute::LibOpt_SelectorAnchorBase::CanBeCalled.Name' value: 'CanBeCalled'
  id: 'Attribute::LibOpt_SelectorAnchorBase::ComponentType.Description' value: 'A short name for this `LibOpt_Component` type.'
  id: 'Attribute::LibOpt_SelectorAnchorBase::ComponentType.Name' value: 'ComponentType'
  id: 'Attribute::LibOpt_SelectorAnchorBase::ConfigurationError.Description' value: 'The errors in the configuration.'
  id: 'Attribute::LibOpt_SelectorAnchorBase::ConfigurationError.Name' value: 'ConfigurationError'
  id: 'Attribute::LibOpt_SelectorAnchorBase::ConflictTimeout.Description' value: 'The maximum duration we will wait when a conflict happened.'
  id: 'Attribute::LibOpt_SelectorAnchorBase::ConflictTimeout.Name' value: 'ConflictTimeout'
  id: 'Attribute::LibOpt_SelectorAnchorBase::DatasetCopies.Description' value: 'Whether any component position of this component has one or more dataset copies (or whether dataset copies are disabled)'
  id: 'Attribute::LibOpt_SelectorAnchorBase::DatasetCopies.Name' value: 'DatasetCopies'
  id: 'Attribute::LibOpt_SelectorAnchorBase::Depth.Description' value: 'The highest number of `LibOpt_Components` above this component.'
  id: 'Attribute::LibOpt_SelectorAnchorBase::Depth.Name' value: 'Depth'
  id: 'Attribute::LibOpt_SelectorAnchorBase::HasBreakpointEvent.Description' value: 'Whether the `LibOpt_Component` is waiting for a `LibOpt_BreakpointEvent`.'
  id: 'Attribute::LibOpt_SelectorAnchorBase::HasBreakpointEvent.Name' value: 'HasBreakpointEvent'
  id: 'Attribute::LibOpt_SelectorAnchorBase::HasNoBreakpoints.Description' value: 'Whether this `LibOpt_Component` has no `LibOpt_BreakpointConditional` attached to any of its component positions.'
  id: 'Attribute::LibOpt_SelectorAnchorBase::HasNoBreakpoints.Name' value: 'HasNoBreakpoints'
  id: 'Attribute::LibOpt_SelectorAnchorBase::HasNoDatasetCopies.Description' value: 'Whether this component has no `LibOpt_DatasetCopyConditional` attached to any of its component positions.'
  id: 'Attribute::LibOpt_SelectorAnchorBase::HasNoDatasetCopies.Name' value: 'HasNoDatasetCopies'
  id: 'Attribute::LibOpt_SelectorAnchorBase::HasUniqueName.Description' value: 'Whether the name of this `LibOpt_Component` is unique.'
  id: 'Attribute::LibOpt_SelectorAnchorBase::HasUniqueName.Name' value: 'HasUniqueName'
  id: 'Attribute::LibOpt_SelectorAnchorBase::ImgStartComponent.Description' value: 'Highlights the start component'
  id: 'Attribute::LibOpt_SelectorAnchorBase::ImgStartComponent.Name' value: 'ImgStartComponent'
  id: 'Attribute::LibOpt_SelectorAnchorBase::IsCorrectlyConfigured.Name' value: 'IsCorrectlyConfigured'
  id: 'Attribute::LibOpt_SelectorAnchorBase::IsDatasetCopyEnabled.Description' value: "Used in the UI to set the 'Dataset copies are disabled' image icon in the 'Components' form and to show a constraint to the user.\n    \nAn icon will be shown when:\n1: There is a dataset copy on any component position of this component.\nand either \n2a: The optimizer run is ongoing and `LibOpt_Run.IsCreatingDatasetCopiesEnabled` is set to `false` on the related `LibOpt_Run` object.\n2b: The optimizer run has finished and `LibOpt_Optimizer.IsCreatingDatasetCopiesEnabled` is set to `false` on the related `LibOpt_Optimizer` object."
  id: 'Attribute::LibOpt_SelectorAnchorBase::IsDatasetCopyEnabled.Name' value: 'IsDatasetCopyEnabled'
  id: 'Attribute::LibOpt_SelectorAnchorBase::IsPostProcessing.Description' value: 'If this attribute is true when a user aborts an optimizer run, then the optimizer will first execute any post processing `LibOpt_LinkIteratorForEach` links before aborting the run. \n\nFor the `LibOpt_IteratorForEachLink` component, this attribute is true when `LibOpt_LinkIteratorForEach.IsPostProcessing` is true for any of its links. \nFor all other components, this attribute is always false.'
  id: 'Attribute::LibOpt_SelectorAnchorBase::IsPostProcessing.Name' value: 'IsPostProcessing'
  id: 'Attribute::LibOpt_SelectorAnchorBase::Name.Description' value: 'The name of the `LibOpt_Component`.\n\nThe name should be unique within the `LibOpt_Run`.'
  id: 'Attribute::LibOpt_SelectorAnchorBase::Name.Name' value: 'Name'
  id: 'Attribute::LibOpt_SelectorAnchorBase::NotAUniqueName.Description' value: 'Whether the name of the component is not unique within the run.\nThis can lead to unexpected behavior while running the optimizer.'
  id: 'Attribute::LibOpt_SelectorAnchorBase::NotAUniqueName.Name' value: 'NotAUniqueName'
  id: 'Attribute::LibOpt_SelectorAnchorBase::NotCorrectlyConfigured.Description' value: 'Whether there are any configuration errors for this component.\nFor example, whether a switch has fewer than 2 branches.'
  id: 'Attribute::LibOpt_SelectorAnchorBase::NotCorrectlyConfigured.Name' value: 'NotCorrectlyConfigured'
  id: 'Attribute::LibOpt_SelectorAnchorBase::NrOfEnabledBreakpoints.Description' value: 'The number of enabled `LibOpt_BreakpointConditionals` that are attached to the `LibOpt_BreakpointPositions` of this component. \nThis attribute is used in the `HasNoBreakpoints` constraint.'
  id: 'Attribute::LibOpt_SelectorAnchorBase::NrOfEnabledBreakpoints.Name' value: 'NrOfEnabledBreakpoints'
  id: 'Attribute::LibOpt_SelectorAnchorBase::NrOfEnabledDatasetCopies.Description' value: 'The number of enabled `LibOpt_DatasetCopyConditionals` that are attached to the `LibOpt_BreakpointPositions` of this component. \nThis attribute is used in the `HasNoDatasetCopies` constraint.'
  id: 'Attribute::LibOpt_SelectorAnchorBase::NrOfEnabledDatasetCopies.Name' value: 'NrOfEnabledDatasetCopies'
  id: 'Attribute::LibOpt_SelectorAnchorBase::NrTimesCalled.Description' value: 'The number of times this component was called (the DoTask method was called).'
  id: 'Attribute::LibOpt_SelectorAnchorBase::NrTimesCalled.Name' value: 'NrTimesCalled'
  id: 'Attribute::LibOpt_SelectorAnchorBase::Path.Description' value: 'A declarative attribute that contains one Path to this component.\nThis can be used to sort a list of components in a semi-logical way.'
  id: 'Attribute::LibOpt_SelectorAnchorBase::Path.Name' value: 'Path'
  id: 'Attribute::LibOpt_SelectorAnchorBase::SequenceNr.Description' value: 'The position in the sequence of the `LibOpt_Components` in the `LibOpt_Run`.\n\nThe `LibOpt_Components` are sorted according to the `Path`.\nThis is slightly different from sorting on the `Depth`.\n\nThe difference is that the `Path` keeps different branches in a `LibOpt_Switch` together, while sorting on `Depth` intertwines them.\n\nExample:\n\nIf we have a switch with 2 branches, A and C, with each a link to B and D respectively, the sorting order is different.\n\n switch -> A -> B\n switch -> C -> D\n \nNow the `Depth` (and the sorting on `Depth`) will be:\nswitch = 0\nA = 1\nC = 1\nB = 2\nD = 2\n\nThe `Path` (and sorting of the `Path`) will be:\nswitch = "switch"\nA = "switch" -> "A"\nB = "switch" -> "A" -> "B"\nC = "switch" -> "C"\nD = "switch" -> "C" -> "D"'
  id: 'Attribute::LibOpt_SelectorAnchorBase::SequenceNr.Name' value: 'SequenceNr'
  id: 'Attribute::LibOpt_SelectorAnchorBase::Status.Name' value: 'Status'
  id: 'Attribute::LibOpt_SelectorAnchorBase::TotalDuration.Description' value: 'Total duration spent on the component during the run'
  id: 'Attribute::LibOpt_SelectorAnchorBase::TotalDuration.Name' value: 'TotalDuration'
  id: 'Attribute::LibOpt_SelectorAnchorBase::Type.Description' value: 'The type of the component'
  id: 'Attribute::LibOpt_SelectorAnchorBase::Type.Name' value: 'Type'
  id: 'Attribute::LibOpt_Snapshot::ComputerName.Description' value: 'The name of the computer on which this snapshot was created.'
  id: 'Attribute::LibOpt_Snapshot::ComputerName.Name' value: 'ComputerName'
  id: 'Attribute::LibOpt_Snapshot::CumNrIterations.Name' value: 'CumNrIterations'
  id: 'Attribute::LibOpt_Snapshot::Details.Description' value: 'An overview of the details of this `LibOpt_Snapshot`.'
  id: 'Attribute::LibOpt_Snapshot::Details.Name' value: 'Details'
  id: 'Attribute::LibOpt_Snapshot::ImgHasIssues.Description' value: 'Whether the snapshot has any issues associated to it'
  id: 'Attribute::LibOpt_Snapshot::ImgHasIssues.Name' value: 'ImgHasIssues'
  id: 'Attribute::LibOpt_Snapshot::MDS.Description' value: 'The MDSID on which this snapshot was created.'
  id: 'Attribute::LibOpt_Snapshot::MDS.Name' value: 'MDS'
  id: 'Attribute::LibOpt_Snapshot::NrIssues.Description' value: 'The number of `LibOpt_Issues` related to this `LibOpt_Snapshot`.'
  id: 'Attribute::LibOpt_Snapshot::NrIssues.Name' value: 'NrIssues'
  id: 'Attribute::LibOpt_Snapshot::PrecisionTimeStamp.Description' value: 'The time according to OS::PrecisionCounter() when this object was created.'
  id: 'Attribute::LibOpt_Snapshot::PrecisionTimeStamp.Name' value: 'PrecisionTimeStamp'
  id: 'Attribute::LibOpt_Snapshot::SequenceNr.Description' value: 'The sequence number of the `LibOpt_Snapshot`.'
  id: 'Attribute::LibOpt_Snapshot::SequenceNr.Name' value: 'SequenceNr'
  id: 'Attribute::LibOpt_Snapshot::Status.Name' value: 'Status'
  id: 'Attribute::LibOpt_Snapshot::TimeSince.Description' value: 'The duration since the start of the optimizer run.'
  id: 'Attribute::LibOpt_Snapshot::TimeSince.Name' value: 'TimeSince'
  id: 'Attribute::LibOpt_Snapshot::TimeStamp.Description' value: 'The date time this `LibOpt_Snapshot` was created.'
  id: 'Attribute::LibOpt_Snapshot::TimeStamp.Name' value: 'TimeStamp'
  id: 'Attribute::LibOpt_Snapshot::Type.Description' value: 'A way to distinguish between different types of `LibOpt_Snapshot`.'
  id: 'Attribute::LibOpt_Snapshot::Type.Name' value: 'Type'
  id: 'Attribute::LibOpt_SnapshotAlgorithm::ComputerName.Description' value: 'The name of the computer on which this snapshot was created.'
  id: 'Attribute::LibOpt_SnapshotAlgorithm::ComputerName.Name' value: 'ComputerName'
  id: 'Attribute::LibOpt_SnapshotAlgorithm::CumNrIterations.Name' value: 'CumNrIterations'
  id: 'Attribute::LibOpt_SnapshotAlgorithm::Details.Description' value: 'An overview of the details of this `LibOpt_Snapshot`.'
  id: 'Attribute::LibOpt_SnapshotAlgorithm::Details.Name' value: 'Details'
  id: 'Attribute::LibOpt_SnapshotAlgorithm::ExecutionNr.Description' value: 'The execution number of this `LibOpt_SnapshotAlgorithm` on its parent `LibOpt_SnapshotComponent`.\nIt is expected that the relevant `LibOpt_Component` is of a `LibOpt_Suboptimizer` type.'
  id: 'Attribute::LibOpt_SnapshotAlgorithm::ExecutionNr.Name' value: 'ExecutionNr'
  id: 'Attribute::LibOpt_SnapshotAlgorithm::HandleResultDuration.Description' value: 'The time it took to handle the result of the algorithm.'
  id: 'Attribute::LibOpt_SnapshotAlgorithm::HandleResultDuration.Name' value: 'HandleResultDuration'
  id: 'Attribute::LibOpt_SnapshotAlgorithm::HandleResultStart.Description' value: 'An attribute to store when the `HandleResult` started.\nThis can be used to set the `HandleResultDuration` in case of an error.\n\nIf the value is negative, the `HandleResultDuration` has already been set.'
  id: 'Attribute::LibOpt_SnapshotAlgorithm::HandleResultStart.Name' value: 'HandleResultStart'
  id: 'Attribute::LibOpt_SnapshotAlgorithm::ImgHasIssues.Description' value: 'Whether the snapshot has any issues associated to it'
  id: 'Attribute::LibOpt_SnapshotAlgorithm::ImgHasIssues.Name' value: 'ImgHasIssues'
  id: 'Attribute::LibOpt_SnapshotAlgorithm::InitializeDuration.Description' value: 'The time it took to initialize the algorithm.'
  id: 'Attribute::LibOpt_SnapshotAlgorithm::InitializeDuration.Name' value: 'InitializeDuration'
  id: 'Attribute::LibOpt_SnapshotAlgorithm::IsAsynchronous.Description' value: 'Whether the algorithm was executed asynchronous.'
  id: 'Attribute::LibOpt_SnapshotAlgorithm::IsAsynchronous.Name' value: 'IsAsynchronous'
  id: 'Attribute::LibOpt_SnapshotAlgorithm::MDS.Description' value: 'The MDSID on which this snapshot was created.'
  id: 'Attribute::LibOpt_SnapshotAlgorithm::MDS.Name' value: 'MDS'
  id: 'Attribute::LibOpt_SnapshotAlgorithm::NrIssues.Description' value: 'The number of `LibOpt_Issues` related to this `LibOpt_Snapshot`.'
  id: 'Attribute::LibOpt_SnapshotAlgorithm::NrIssues.Name' value: 'NrIssues'
  id: 'Attribute::LibOpt_SnapshotAlgorithm::PrecisionTimeStamp.Description' value: 'The time according to OS::PrecisionCounter() when this object was created.'
  id: 'Attribute::LibOpt_SnapshotAlgorithm::PrecisionTimeStamp.Name' value: 'PrecisionTimeStamp'
  id: 'Attribute::LibOpt_SnapshotAlgorithm::SequenceNr.Description' value: 'The sequence number of the `LibOpt_Snapshot`.'
  id: 'Attribute::LibOpt_SnapshotAlgorithm::SequenceNr.Name' value: 'SequenceNr'
  id: 'Attribute::LibOpt_SnapshotAlgorithm::SolveDuration.Description' value: 'The time it took to execute the algorithm.'
  id: 'Attribute::LibOpt_SnapshotAlgorithm::SolveDuration.Name' value: 'SolveDuration'
  id: 'Attribute::LibOpt_SnapshotAlgorithm::Status.Name' value: 'Status'
  id: 'Attribute::LibOpt_SnapshotAlgorithm::TimeSince.Description' value: 'The duration since the start of the optimizer run.'
  id: 'Attribute::LibOpt_SnapshotAlgorithm::TimeSince.Name' value: 'TimeSince'
  id: 'Attribute::LibOpt_SnapshotAlgorithm::TimeStamp.Description' value: 'The date time this `LibOpt_Snapshot` was created.'
  id: 'Attribute::LibOpt_SnapshotAlgorithm::TimeStamp.Name' value: 'TimeStamp'
  id: 'Attribute::LibOpt_SnapshotAlgorithm::TotalTime.Description' value: 'The total time spent in the algorithm'
  id: 'Attribute::LibOpt_SnapshotAlgorithm::TotalTime.Name' value: 'TotalTime'
  id: 'Attribute::LibOpt_SnapshotAlgorithm::Type.Description' value: 'A way to distinguish between different types of `LibOpt_Snapshot`.'
  id: 'Attribute::LibOpt_SnapshotAlgorithm::Type.Name' value: 'Type'
  id: 'Attribute::LibOpt_SnapshotCapacity::MaxAmount.Name' value: 'MaxAmount'
  id: 'Attribute::LibOpt_SnapshotCapacity::MinAmount.Name' value: 'MinAmount'
  id: 'Attribute::LibOpt_SnapshotCapacity::StartAmount.Name' value: 'StartAmount'
  id: 'Attribute::LibOpt_SnapshotCapacityElement::Amount.Name' value: 'Amount'
  id: 'Attribute::LibOpt_SnapshotCapacityElement::Duration.Name' value: 'Duration'
  id: 'Attribute::LibOpt_SnapshotCapacityElement::Processed.Name' value: 'Processed'
  id: 'Attribute::LibOpt_SnapshotCapacityElement::Start.Name' value: 'Start'
  id: 'Attribute::LibOpt_SnapshotComponent::ComponentType.Description' value: 'The `DefinitionName` of the `LibOpt_Component` that created this `LibOpt_Snapshot`.'
  id: 'Attribute::LibOpt_SnapshotComponent::ComponentType.Name' value: 'ComponentType'
  id: 'Attribute::LibOpt_SnapshotComponent::ComputerName.Description' value: 'The name of the computer on which this snapshot was created.'
  id: 'Attribute::LibOpt_SnapshotComponent::ComputerName.Name' value: 'ComputerName'
  id: 'Attribute::LibOpt_SnapshotComponent::CumDuration.Description' value: 'Cumulative duration of the snapshots in the component'
  id: 'Attribute::LibOpt_SnapshotComponent::CumDuration.Name' value: 'CumDuration'
  id: 'Attribute::LibOpt_SnapshotComponent::CumNrIterations.Name' value: 'CumNrIterations'
  id: 'Attribute::LibOpt_SnapshotComponent::Details.Description' value: 'An overview of the details of this `LibOpt_Snapshot`.'
  id: 'Attribute::LibOpt_SnapshotComponent::Details.Name' value: 'Details'
  id: 'Attribute::LibOpt_SnapshotComponent::Duration.Description' value: 'The execution duration of the `LibOpt_Component.Operation` and `LibOpt_Component.DoFinalizeCurrentComponent` methods.'
  id: 'Attribute::LibOpt_SnapshotComponent::Duration.Name' value: 'Duration'
  id: 'Attribute::LibOpt_SnapshotComponent::DurationDoFinalize.Description' value: 'The duration the `LibOpt_Component` took to execute the `LibOpt_Component.DoFinalizeCurrentComponent` method.\n\nNote: The `LibOpt_Component.DoFinalizeCurrentComponent` method can create a dataset copy and trigger a breakpoint. \nThe time spent on these topics is not included in this attribute, because they are also not included in the `Duration` attribute\n\nThe following items are taken into account by this attribute:\n- The processing of all datasets that have been created during the execution of this component.\n- The deletion of the current task. This also calls the `LibOpt_Component.OnFinalize` method.\nThe `LibOpt_Component.OnFinalize` method is an overridable method that can be used for special actions when finalizing a component. For example, it can be used for dataset cleanup.'
  id: 'Attribute::LibOpt_SnapshotComponent::DurationDoFinalize.Name' value: 'DurationDoFinalize'
  id: 'Attribute::LibOpt_SnapshotComponent::DurationOperation.Description' value: 'The duration the `LibOpt_Component` took to execute the `LibOpt_Component.Operation` method.'
  id: 'Attribute::LibOpt_SnapshotComponent::DurationOperation.Name' value: 'DurationOperation'
  id: 'Attribute::LibOpt_SnapshotComponent::End.Description' value: 'End of the snapshot'
  id: 'Attribute::LibOpt_SnapshotComponent::End.Name' value: 'End'
  id: 'Attribute::LibOpt_SnapshotComponent::ImgHasIssues.Description' value: 'Whether the snapshot has any issues associated to it'
  id: 'Attribute::LibOpt_SnapshotComponent::ImgHasIssues.Name' value: 'ImgHasIssues'
  id: 'Attribute::LibOpt_SnapshotComponent::MDS.Description' value: 'The MDSID on which this snapshot was created.'
  id: 'Attribute::LibOpt_SnapshotComponent::MDS.Name' value: 'MDS'
  id: 'Attribute::LibOpt_SnapshotComponent::Name.Description' value: 'The name of the `LibOpt_Component` that created this `LibOpt_Snapshot`.'
  id: 'Attribute::LibOpt_SnapshotComponent::Name.Name' value: 'Name'
  id: 'Attribute::LibOpt_SnapshotComponent::NrIssues.Description' value: 'The number of `LibOpt_Issues` related to this `LibOpt_Snapshot`.'
  id: 'Attribute::LibOpt_SnapshotComponent::NrIssues.Name' value: 'NrIssues'
  id: 'Attribute::LibOpt_SnapshotComponent::PrecisionTimeStamp.Description' value: 'The time according to OS::PrecisionCounter() when this object was created.'
  id: 'Attribute::LibOpt_SnapshotComponent::PrecisionTimeStamp.Name' value: 'PrecisionTimeStamp'
  id: 'Attribute::LibOpt_SnapshotComponent::PrecisionTimeStampDoFinalize.Description' value: 'The time according to `OS::PrecisionCounter()` when the `LibOpt_Component.DoFinalizeCurrentComponent` method is called.'
  id: 'Attribute::LibOpt_SnapshotComponent::PrecisionTimeStampDoFinalize.Name' value: 'PrecisionTimeStampDoFinalize'
  id: 'Attribute::LibOpt_SnapshotComponent::PrecisionTimeStampDoFinalizeDone.Description' value: 'The time when the `LibOpt_Component.DoFinalizeCurrentComponent` method of the `this.Component` component finished executing according to `OS::PrecisionCounter()`.\nNote: The `LibOpt_Component.DoFinalizeCurrentComponent` method also calls some reactive methods. \nAny reactive method that has to be executed before the next component can be executed, is also taken into account by this attribute.'
  id: 'Attribute::LibOpt_SnapshotComponent::PrecisionTimeStampDoFinalizeDone.Name' value: 'PrecisionTimeStampDoFinalizeDone'
  id: 'Attribute::LibOpt_SnapshotComponent::PrecisionTimeStampDone.Description' value: 'The time when the `LibOpt_Component.Operation` method of the `this.Component` component finished executing according to `OS::PrecisionCounter()`.'
  id: 'Attribute::LibOpt_SnapshotComponent::PrecisionTimeStampDone.Name' value: 'PrecisionTimeStampDone'
  id: 'Attribute::LibOpt_SnapshotComponent::PrecisionTimeStampStartComponent.Description' value: 'The time according to `OS::PrecisionCounter()` when the `LibOpt_Component.DoTask` method of the component of this `LibOpt_SnapshotComponent` is called.'
  id: 'Attribute::LibOpt_SnapshotComponent::PrecisionTimeStampStartComponent.Name' value: 'PrecisionTimeStampStartComponent'
  id: 'Attribute::LibOpt_SnapshotComponent::SequenceNr.Description' value: 'The sequence number of the `LibOpt_Snapshot`.'
  id: 'Attribute::LibOpt_SnapshotComponent::SequenceNr.Name' value: 'SequenceNr'
  id: 'Attribute::LibOpt_SnapshotComponent::Start.Description' value: 'Start of the snapshotcomponent'
  id: 'Attribute::LibOpt_SnapshotComponent::Start.Name' value: 'Start'
  id: 'Attribute::LibOpt_SnapshotComponent::Status.Name' value: 'Status'
  id: 'Attribute::LibOpt_SnapshotComponent::TimeSince.Description' value: 'The duration since the start of the optimizer run.'
  id: 'Attribute::LibOpt_SnapshotComponent::TimeSince.Name' value: 'TimeSince'
  id: 'Attribute::LibOpt_SnapshotComponent::TimeStamp.Description' value: 'The date time this `LibOpt_Snapshot` was created.'
  id: 'Attribute::LibOpt_SnapshotComponent::TimeStamp.Name' value: 'TimeStamp'
  id: 'Attribute::LibOpt_SnapshotComponent::TimeStampDone.Description' value: 'The date time the `LibOpt_Task` of this `LibOpt_Snapshot` is done.'
  id: 'Attribute::LibOpt_SnapshotComponent::TimeStampDone.Name' value: 'TimeStampDone'
  id: 'Attribute::LibOpt_SnapshotComponent::Type.Description' value: 'A way to distinguish between different types of `LibOpt_Snapshot`.'
  id: 'Attribute::LibOpt_SnapshotComponent::Type.Name' value: 'Type'
  id: 'Attribute::LibOpt_SnapshotError::ComputerName.Description' value: 'The name of the computer on which this snapshot was created.'
  id: 'Attribute::LibOpt_SnapshotError::ComputerName.Name' value: 'ComputerName'
  id: 'Attribute::LibOpt_SnapshotError::CumNrIterations.Name' value: 'CumNrIterations'
  id: 'Attribute::LibOpt_SnapshotError::Description.Description' value: 'The log entry (the error, warning or debug information) that was sent.'
  id: 'Attribute::LibOpt_SnapshotError::Description.Name' value: 'Description'
  id: 'Attribute::LibOpt_SnapshotError::DetailedInformation.Description' value: 'The detailed information of the `Exception` or `QuillError` caught. This contains the location where it was thrown.'
  id: 'Attribute::LibOpt_SnapshotError::DetailedInformation.Name' value: 'DetailedInformation'
  id: 'Attribute::LibOpt_SnapshotError::Details.Description' value: 'An overview of the details of this `LibOpt_Snapshot`.'
  id: 'Attribute::LibOpt_SnapshotError::Details.Name' value: 'Details'
  id: 'Attribute::LibOpt_SnapshotError::DeveloperInformation.Description' value: 'The developer information of the `Exception` or `QuillError`.'
  id: 'Attribute::LibOpt_SnapshotError::DeveloperInformation.Name' value: 'DeveloperInformation'
  id: 'Attribute::LibOpt_SnapshotError::ErrorNr.Description' value: 'The number associated with the error.'
  id: 'Attribute::LibOpt_SnapshotError::ErrorNr.Name' value: 'ErrorNr'
  id: 'Attribute::LibOpt_SnapshotError::ImgHasIssues.Description' value: 'Whether the snapshot has any issues associated to it'
  id: 'Attribute::LibOpt_SnapshotError::ImgHasIssues.Name' value: 'ImgHasIssues'
  id: 'Attribute::LibOpt_SnapshotError::MDS.Description' value: 'The MDSID on which this snapshot was created.'
  id: 'Attribute::LibOpt_SnapshotError::MDS.Name' value: 'MDS'
  id: 'Attribute::LibOpt_SnapshotError::NrIssues.Description' value: 'The number of `LibOpt_Issues` related to this `LibOpt_Snapshot`.'
  id: 'Attribute::LibOpt_SnapshotError::NrIssues.Name' value: 'NrIssues'
  id: 'Attribute::LibOpt_SnapshotError::PrecisionTimeStamp.Description' value: 'The time according to OS::PrecisionCounter() when this object was created.'
  id: 'Attribute::LibOpt_SnapshotError::PrecisionTimeStamp.Name' value: 'PrecisionTimeStamp'
  id: 'Attribute::LibOpt_SnapshotError::SequenceNr.Description' value: 'The sequence number of the `LibOpt_Snapshot`.'
  id: 'Attribute::LibOpt_SnapshotError::SequenceNr.Name' value: 'SequenceNr'
  id: 'Attribute::LibOpt_SnapshotError::Status.Name' value: 'Status'
  id: 'Attribute::LibOpt_SnapshotError::TimeSince.Description' value: 'The duration since the start of the optimizer run.'
  id: 'Attribute::LibOpt_SnapshotError::TimeSince.Name' value: 'TimeSince'
  id: 'Attribute::LibOpt_SnapshotError::TimeStamp.Description' value: 'The date time this `LibOpt_Snapshot` was created.'
  id: 'Attribute::LibOpt_SnapshotError::TimeStamp.Name' value: 'TimeStamp'
  id: 'Attribute::LibOpt_SnapshotError::Type.Description' value: 'A way to distinguish between different types of `LibOpt_Snapshot`.'
  id: 'Attribute::LibOpt_SnapshotError::Type.Name' value: 'Type'
  id: 'Attribute::LibOpt_SnapshotGP::ComputerName.Description' value: 'The name of the computer on which this snapshot was created.'
  id: 'Attribute::LibOpt_SnapshotGP::ComputerName.Name' value: 'ComputerName'
  id: 'Attribute::LibOpt_SnapshotGP::CumNrIterations.Name' value: 'CumNrIterations'
  id: 'Attribute::LibOpt_SnapshotGP::Details.Description' value: 'An overview of the details of this `LibOpt_Snapshot`.'
  id: 'Attribute::LibOpt_SnapshotGP::Details.Name' value: 'Details'
  id: 'Attribute::LibOpt_SnapshotGP::ExecutionNr.Description' value: 'The execution number of this `LibOpt_SnapshotAlgorithm` on its parent `LibOpt_SnapshotComponent`.\nIt is expected that the relevant `LibOpt_Component` is of a `LibOpt_Suboptimizer` type.'
  id: 'Attribute::LibOpt_SnapshotGP::ExecutionNr.Name' value: 'ExecutionNr'
  id: 'Attribute::LibOpt_SnapshotGP::HandleResultDuration.Description' value: 'The time it took to handle the result of the algorithm.'
  id: 'Attribute::LibOpt_SnapshotGP::HandleResultDuration.Name' value: 'HandleResultDuration'
  id: 'Attribute::LibOpt_SnapshotGP::HandleResultStart.Description' value: 'An attribute to store when the `HandleResult` started.\nThis can be used to set the `HandleResultDuration` in case of an error.\n\nIf the value is negative, the `HandleResultDuration` has already been set.'
  id: 'Attribute::LibOpt_SnapshotGP::HandleResultStart.Name' value: 'HandleResultStart'
  id: 'Attribute::LibOpt_SnapshotGP::ImgHasIssues.Description' value: 'Whether the snapshot has any issues associated to it'
  id: 'Attribute::LibOpt_SnapshotGP::ImgHasIssues.Name' value: 'ImgHasIssues'
  id: 'Attribute::LibOpt_SnapshotGP::InitializeDuration.Description' value: 'The time it took to initialize the algorithm.'
  id: 'Attribute::LibOpt_SnapshotGP::InitializeDuration.Name' value: 'InitializeDuration'
  id: 'Attribute::LibOpt_SnapshotGP::IsAsynchronous.Description' value: 'Whether the algorithm was executed asynchronous.'
  id: 'Attribute::LibOpt_SnapshotGP::IsAsynchronous.Name' value: 'IsAsynchronous'
  id: 'Attribute::LibOpt_SnapshotGP::MDS.Description' value: 'The MDSID on which this snapshot was created.'
  id: 'Attribute::LibOpt_SnapshotGP::MDS.Name' value: 'MDS'
  id: 'Attribute::LibOpt_SnapshotGP::NrIssues.Description' value: 'The number of `LibOpt_Issues` related to this `LibOpt_Snapshot`.'
  id: 'Attribute::LibOpt_SnapshotGP::NrIssues.Name' value: 'NrIssues'
  id: 'Attribute::LibOpt_SnapshotGP::NrOfAlgorithms.Description' value: 'The number of algorithms in the graph program.'
  id: 'Attribute::LibOpt_SnapshotGP::NrOfAlgorithms.Name' value: 'NrOfAlgorithms'
  id: 'Attribute::LibOpt_SnapshotGP::NrOfEdgeFilterAttributes.Description' value: 'The number of edge filter attributes in the graph program.'
  id: 'Attribute::LibOpt_SnapshotGP::NrOfEdgeFilterAttributes.Name' value: 'NrOfEdgeFilterAttributes'
  id: 'Attribute::LibOpt_SnapshotGP::NrOfGraphs.Description' value: 'The number of graphs in the graph program.'
  id: 'Attribute::LibOpt_SnapshotGP::NrOfGraphs.Name' value: 'NrOfGraphs'
  id: 'Attribute::LibOpt_SnapshotGP::NrOfNodeFilterAttributes.Description' value: 'The number of node filter attributes in the graph program.'
  id: 'Attribute::LibOpt_SnapshotGP::NrOfNodeFilterAttributes.Name' value: 'NrOfNodeFilterAttributes'
  id: 'Attribute::LibOpt_SnapshotGP::PrecisionTimeStamp.Description' value: 'The time according to OS::PrecisionCounter() when this object was created.'
  id: 'Attribute::LibOpt_SnapshotGP::PrecisionTimeStamp.Name' value: 'PrecisionTimeStamp'
  id: 'Attribute::LibOpt_SnapshotGP::SequenceNr.Description' value: 'The sequence number of the `LibOpt_Snapshot`.'
  id: 'Attribute::LibOpt_SnapshotGP::SequenceNr.Name' value: 'SequenceNr'
  id: 'Attribute::LibOpt_SnapshotGP::SolveDuration.Description' value: 'The time it took to execute the algorithm.'
  id: 'Attribute::LibOpt_SnapshotGP::SolveDuration.Name' value: 'SolveDuration'
  id: 'Attribute::LibOpt_SnapshotGP::Status.Name' value: 'Status'
  id: 'Attribute::LibOpt_SnapshotGP::TimeSince.Description' value: 'The duration since the start of the optimizer run.'
  id: 'Attribute::LibOpt_SnapshotGP::TimeSince.Name' value: 'TimeSince'
  id: 'Attribute::LibOpt_SnapshotGP::TimeStamp.Description' value: 'The date time this `LibOpt_Snapshot` was created.'
  id: 'Attribute::LibOpt_SnapshotGP::TimeStamp.Name' value: 'TimeStamp'
  id: 'Attribute::LibOpt_SnapshotGP::TotalTime.Description' value: 'The total time spent in the algorithm'
  id: 'Attribute::LibOpt_SnapshotGP::TotalTime.Name' value: 'TotalTime'
  id: 'Attribute::LibOpt_SnapshotGP::Type.Description' value: 'A way to distinguish between different types of `LibOpt_Snapshot`.'
  id: 'Attribute::LibOpt_SnapshotGP::Type.Name' value: 'Type'
  id: 'Attribute::LibOpt_SnapshotInfo::ComputerName.Description' value: 'The name of the computer on which this snapshot was created.'
  id: 'Attribute::LibOpt_SnapshotInfo::ComputerName.Name' value: 'ComputerName'
  id: 'Attribute::LibOpt_SnapshotInfo::CumNrIterations.Name' value: 'CumNrIterations'
  id: 'Attribute::LibOpt_SnapshotInfo::Description.Description' value: 'The log entry (the error, warning or debug information) that was sent.'
  id: 'Attribute::LibOpt_SnapshotInfo::Description.Name' value: 'Description'
  id: 'Attribute::LibOpt_SnapshotInfo::Details.Description' value: 'An overview of the details of this `LibOpt_Snapshot`.'
  id: 'Attribute::LibOpt_SnapshotInfo::Details.Name' value: 'Details'
  id: 'Attribute::LibOpt_SnapshotInfo::ImgHasIssues.Description' value: 'Whether the snapshot has any issues associated to it'
  id: 'Attribute::LibOpt_SnapshotInfo::ImgHasIssues.Name' value: 'ImgHasIssues'
  id: 'Attribute::LibOpt_SnapshotInfo::MDS.Description' value: 'The MDSID on which this snapshot was created.'
  id: 'Attribute::LibOpt_SnapshotInfo::MDS.Name' value: 'MDS'
  id: 'Attribute::LibOpt_SnapshotInfo::NrIssues.Description' value: 'The number of `LibOpt_Issues` related to this `LibOpt_Snapshot`.'
  id: 'Attribute::LibOpt_SnapshotInfo::NrIssues.Name' value: 'NrIssues'
  id: 'Attribute::LibOpt_SnapshotInfo::PrecisionTimeStamp.Description' value: 'The time according to OS::PrecisionCounter() when this object was created.'
  id: 'Attribute::LibOpt_SnapshotInfo::PrecisionTimeStamp.Name' value: 'PrecisionTimeStamp'
  id: 'Attribute::LibOpt_SnapshotInfo::SequenceNr.Description' value: 'The sequence number of the `LibOpt_Snapshot`.'
  id: 'Attribute::LibOpt_SnapshotInfo::SequenceNr.Name' value: 'SequenceNr'
  id: 'Attribute::LibOpt_SnapshotInfo::Status.Name' value: 'Status'
  id: 'Attribute::LibOpt_SnapshotInfo::TimeSince.Description' value: 'The duration since the start of the optimizer run.'
  id: 'Attribute::LibOpt_SnapshotInfo::TimeSince.Name' value: 'TimeSince'
  id: 'Attribute::LibOpt_SnapshotInfo::TimeStamp.Description' value: 'The date time this `LibOpt_Snapshot` was created.'
  id: 'Attribute::LibOpt_SnapshotInfo::TimeStamp.Name' value: 'TimeStamp'
  id: 'Attribute::LibOpt_SnapshotInfo::Type.Description' value: 'A way to distinguish between different types of `LibOpt_Snapshot`.'
  id: 'Attribute::LibOpt_SnapshotInfo::Type.Name' value: 'Type'
  id: 'Attribute::LibOpt_SnapshotKPI::Comment.Description' value: 'A comment on when this `LibOpt_SnapshotKPI` was taken. For example, before handling result or after handling result.'
  id: 'Attribute::LibOpt_SnapshotKPI::Comment.Name' value: 'Comment'
  id: 'Attribute::LibOpt_SnapshotKPI::ComputerName.Description' value: 'The name of the computer on which this snapshot was created.'
  id: 'Attribute::LibOpt_SnapshotKPI::ComputerName.Name' value: 'ComputerName'
  id: 'Attribute::LibOpt_SnapshotKPI::CumNrIterations.Name' value: 'CumNrIterations'
  id: 'Attribute::LibOpt_SnapshotKPI::Details.Description' value: 'An overview of the details of this `LibOpt_Snapshot`.'
  id: 'Attribute::LibOpt_SnapshotKPI::Details.Name' value: 'Details'
  id: 'Attribute::LibOpt_SnapshotKPI::ImgHasIssues.Description' value: 'Whether the snapshot has any issues associated to it'
  id: 'Attribute::LibOpt_SnapshotKPI::ImgHasIssues.Name' value: 'ImgHasIssues'
  id: 'Attribute::LibOpt_SnapshotKPI::IsPreHandleResult.Description' value: 'This attribute is `true` if the `LibOpt_SnapshotKPI` is created in `LibOpt_Suboptimizer.PreHandleResult`.\nThis attribute is `false` if the `LibOpt_SnapshotKPI` is created in `LibOpt_Suboptimizer.PostHandleResult`.'
  id: 'Attribute::LibOpt_SnapshotKPI::IsPreHandleResult.Name' value: 'IsPreHandleResult'
  id: 'Attribute::LibOpt_SnapshotKPI::IsRolledBack.Description' value: 'Whether the KPI snapshot is rolled back or not.\nThis applies to the KPI snapshot that is created after the handle result.\nThe KPI snapshot before the handle result is technically also rolled back, but we assume the values stored in that snapshot are still accurate.'
  id: 'Attribute::LibOpt_SnapshotKPI::IsRolledBack.Name' value: 'IsRolledBack'
  id: 'Attribute::LibOpt_SnapshotKPI::MDS.Description' value: 'The MDSID on which this snapshot was created.'
  id: 'Attribute::LibOpt_SnapshotKPI::MDS.Name' value: 'MDS'
  id: 'Attribute::LibOpt_SnapshotKPI::NrIssues.Description' value: 'The number of `LibOpt_Issues` related to this `LibOpt_Snapshot`.'
  id: 'Attribute::LibOpt_SnapshotKPI::NrIssues.Name' value: 'NrIssues'
  id: 'Attribute::LibOpt_SnapshotKPI::PrecisionTimeStamp.Description' value: 'The time according to OS::PrecisionCounter() when this object was created.'
  id: 'Attribute::LibOpt_SnapshotKPI::PrecisionTimeStamp.Name' value: 'PrecisionTimeStamp'
  id: 'Attribute::LibOpt_SnapshotKPI::RollbackKPI.Description' value: 'The value (as a `RealVector`) of the `LibOpt_RollbackKPI` of the `LibOpt_Suboptimizer`.'
  id: 'Attribute::LibOpt_SnapshotKPI::RollbackKPI.Name' value: 'RollbackKPI'
  id: 'Attribute::LibOpt_SnapshotKPI::SequenceNr.Description' value: 'The sequence number of the `LibOpt_Snapshot`.'
  id: 'Attribute::LibOpt_SnapshotKPI::SequenceNr.Name' value: 'SequenceNr'
  id: 'Attribute::LibOpt_SnapshotKPI::Status.Name' value: 'Status'
  id: 'Attribute::LibOpt_SnapshotKPI::TimeSince.Description' value: 'The duration since the start of the optimizer run.'
  id: 'Attribute::LibOpt_SnapshotKPI::TimeSince.Name' value: 'TimeSince'
  id: 'Attribute::LibOpt_SnapshotKPI::TimeStamp.Description' value: 'The date time this `LibOpt_Snapshot` was created.'
  id: 'Attribute::LibOpt_SnapshotKPI::TimeStamp.Name' value: 'TimeStamp'
  id: 'Attribute::LibOpt_SnapshotKPI::Type.Description' value: 'A way to distinguish between different types of `LibOpt_Snapshot`.'
  id: 'Attribute::LibOpt_SnapshotKPI::Type.Name' value: 'Type'
  id: 'Attribute::LibOpt_SnapshotKPIDefault::Comment.Description' value: 'A comment on when this `LibOpt_SnapshotKPI` was taken. For example, before handling result or after handling result.'
  id: 'Attribute::LibOpt_SnapshotKPIDefault::Comment.Name' value: 'Comment'
  id: 'Attribute::LibOpt_SnapshotKPIDefault::ComputerName.Description' value: 'The name of the computer on which this snapshot was created.'
  id: 'Attribute::LibOpt_SnapshotKPIDefault::ComputerName.Name' value: 'ComputerName'
  id: 'Attribute::LibOpt_SnapshotKPIDefault::CumNrIterations.Name' value: 'CumNrIterations'
  id: 'Attribute::LibOpt_SnapshotKPIDefault::Details.Description' value: 'An overview of the details of this `LibOpt_Snapshot`.'
  id: 'Attribute::LibOpt_SnapshotKPIDefault::Details.Name' value: 'Details'
  id: 'Attribute::LibOpt_SnapshotKPIDefault::ImgHasIssues.Description' value: 'Whether the snapshot has any issues associated to it'
  id: 'Attribute::LibOpt_SnapshotKPIDefault::ImgHasIssues.Name' value: 'ImgHasIssues'
  id: 'Attribute::LibOpt_SnapshotKPIDefault::IsPreHandleResult.Description' value: 'This attribute is `true` if the `LibOpt_SnapshotKPI` is created in `LibOpt_Suboptimizer.PreHandleResult`.\nThis attribute is `false` if the `LibOpt_SnapshotKPI` is created in `LibOpt_Suboptimizer.PostHandleResult`.'
  id: 'Attribute::LibOpt_SnapshotKPIDefault::IsPreHandleResult.Name' value: 'IsPreHandleResult'
  id: 'Attribute::LibOpt_SnapshotKPIDefault::IsRolledBack.Description' value: 'Whether the KPI snapshot is rolled back or not.\nThis applies to the KPI snapshot that is created after the handle result.\nThe KPI snapshot before the handle result is technically also rolled back, but we assume the values stored in that snapshot are still accurate.'
  id: 'Attribute::LibOpt_SnapshotKPIDefault::IsRolledBack.Name' value: 'IsRolledBack'
  id: 'Attribute::LibOpt_SnapshotKPIDefault::MDS.Description' value: 'The MDSID on which this snapshot was created.'
  id: 'Attribute::LibOpt_SnapshotKPIDefault::MDS.Name' value: 'MDS'
  id: 'Attribute::LibOpt_SnapshotKPIDefault::NrIssues.Description' value: 'The number of `LibOpt_Issues` related to this `LibOpt_Snapshot`.'
  id: 'Attribute::LibOpt_SnapshotKPIDefault::NrIssues.Name' value: 'NrIssues'
  id: 'Attribute::LibOpt_SnapshotKPIDefault::PrecisionTimeStamp.Description' value: 'The time according to OS::PrecisionCounter() when this object was created.'
  id: 'Attribute::LibOpt_SnapshotKPIDefault::PrecisionTimeStamp.Name' value: 'PrecisionTimeStamp'
  id: 'Attribute::LibOpt_SnapshotKPIDefault::RollbackKPI.Description' value: 'The value (as a `RealVector`) of the `LibOpt_RollbackKPI` of the `LibOpt_Suboptimizer`.'
  id: 'Attribute::LibOpt_SnapshotKPIDefault::RollbackKPI.Name' value: 'RollbackKPI'
  id: 'Attribute::LibOpt_SnapshotKPIDefault::SequenceNr.Description' value: 'The sequence number of the `LibOpt_Snapshot`.'
  id: 'Attribute::LibOpt_SnapshotKPIDefault::SequenceNr.Name' value: 'SequenceNr'
  id: 'Attribute::LibOpt_SnapshotKPIDefault::Status.Name' value: 'Status'
  id: 'Attribute::LibOpt_SnapshotKPIDefault::TimeSince.Description' value: 'The duration since the start of the optimizer run.'
  id: 'Attribute::LibOpt_SnapshotKPIDefault::TimeSince.Name' value: 'TimeSince'
  id: 'Attribute::LibOpt_SnapshotKPIDefault::TimeStamp.Description' value: 'The date time this `LibOpt_Snapshot` was created.'
  id: 'Attribute::LibOpt_SnapshotKPIDefault::TimeStamp.Name' value: 'TimeStamp'
  id: 'Attribute::LibOpt_SnapshotKPIDefault::Type.Description' value: 'A way to distinguish between different types of `LibOpt_Snapshot`.'
  id: 'Attribute::LibOpt_SnapshotKPIDefault::Type.Name' value: 'Type'
  id: 'Attribute::LibOpt_SnapshotKPIPart::ComputerName.Description' value: 'The name of the computer on which this snapshot was created.'
  id: 'Attribute::LibOpt_SnapshotKPIPart::ComputerName.Name' value: 'ComputerName'
  id: 'Attribute::LibOpt_SnapshotKPIPart::CumNrIterations.Name' value: 'CumNrIterations'
  id: 'Attribute::LibOpt_SnapshotKPIPart::Details.Description' value: 'An overview of the details of this `LibOpt_Snapshot`.'
  id: 'Attribute::LibOpt_SnapshotKPIPart::Details.Name' value: 'Details'
  id: 'Attribute::LibOpt_SnapshotKPIPart::ImgHasIssues.Description' value: 'Whether the snapshot has any issues associated to it'
  id: 'Attribute::LibOpt_SnapshotKPIPart::ImgHasIssues.Name' value: 'ImgHasIssues'
  id: 'Attribute::LibOpt_SnapshotKPIPart::KPIName.Description' value: 'The name of the `LibOpt_KPI` this was created from.'
  id: 'Attribute::LibOpt_SnapshotKPIPart::KPIName.Name' value: 'KPIName'
  id: 'Attribute::LibOpt_SnapshotKPIPart::KPIValue.Description' value: 'The value of the `LibOpt_KPI` at the time this was created.'
  id: 'Attribute::LibOpt_SnapshotKPIPart::KPIValue.Name' value: 'KPIValue'
  id: 'Attribute::LibOpt_SnapshotKPIPart::MDS.Description' value: 'The MDSID on which this snapshot was created.'
  id: 'Attribute::LibOpt_SnapshotKPIPart::MDS.Name' value: 'MDS'
  id: 'Attribute::LibOpt_SnapshotKPIPart::NrIssues.Description' value: 'The number of `LibOpt_Issues` related to this `LibOpt_Snapshot`.'
  id: 'Attribute::LibOpt_SnapshotKPIPart::NrIssues.Name' value: 'NrIssues'
  id: 'Attribute::LibOpt_SnapshotKPIPart::PrecisionTimeStamp.Description' value: 'The time according to OS::PrecisionCounter() when this object was created.'
  id: 'Attribute::LibOpt_SnapshotKPIPart::PrecisionTimeStamp.Name' value: 'PrecisionTimeStamp'
  id: 'Attribute::LibOpt_SnapshotKPIPart::SequenceNr.Description' value: 'The sequence number of the `LibOpt_Snapshot`.'
  id: 'Attribute::LibOpt_SnapshotKPIPart::SequenceNr.Name' value: 'SequenceNr'
  id: 'Attribute::LibOpt_SnapshotKPIPart::Status.Name' value: 'Status'
  id: 'Attribute::LibOpt_SnapshotKPIPart::TimeSince.Description' value: 'The duration since the start of the optimizer run.'
  id: 'Attribute::LibOpt_SnapshotKPIPart::TimeSince.Name' value: 'TimeSince'
  id: 'Attribute::LibOpt_SnapshotKPIPart::TimeStamp.Description' value: 'The date time this `LibOpt_Snapshot` was created.'
  id: 'Attribute::LibOpt_SnapshotKPIPart::TimeStamp.Name' value: 'TimeStamp'
  id: 'Attribute::LibOpt_SnapshotKPIPart::Type.Description' value: 'A way to distinguish between different types of `LibOpt_Snapshot`.'
  id: 'Attribute::LibOpt_SnapshotKPIPart::Type.Name' value: 'Type'
  id: 'Attribute::LibOpt_SnapshotLogEntry::ComputerName.Description' value: 'The name of the computer on which this snapshot was created.'
  id: 'Attribute::LibOpt_SnapshotLogEntry::ComputerName.Name' value: 'ComputerName'
  id: 'Attribute::LibOpt_SnapshotLogEntry::CumNrIterations.Name' value: 'CumNrIterations'
  id: 'Attribute::LibOpt_SnapshotLogEntry::Description.Description' value: 'The log entry (the error, warning or debug information) that was sent.'
  id: 'Attribute::LibOpt_SnapshotLogEntry::Description.Name' value: 'Description'
  id: 'Attribute::LibOpt_SnapshotLogEntry::Details.Description' value: 'An overview of the details of this `LibOpt_Snapshot`.'
  id: 'Attribute::LibOpt_SnapshotLogEntry::Details.Name' value: 'Details'
  id: 'Attribute::LibOpt_SnapshotLogEntry::ImgHasIssues.Description' value: 'Whether the snapshot has any issues associated to it'
  id: 'Attribute::LibOpt_SnapshotLogEntry::ImgHasIssues.Name' value: 'ImgHasIssues'
  id: 'Attribute::LibOpt_SnapshotLogEntry::MDS.Description' value: 'The MDSID on which this snapshot was created.'
  id: 'Attribute::LibOpt_SnapshotLogEntry::MDS.Name' value: 'MDS'
  id: 'Attribute::LibOpt_SnapshotLogEntry::NrIssues.Description' value: 'The number of `LibOpt_Issues` related to this `LibOpt_Snapshot`.'
  id: 'Attribute::LibOpt_SnapshotLogEntry::NrIssues.Name' value: 'NrIssues'
  id: 'Attribute::LibOpt_SnapshotLogEntry::PrecisionTimeStamp.Description' value: 'The time according to OS::PrecisionCounter() when this object was created.'
  id: 'Attribute::LibOpt_SnapshotLogEntry::PrecisionTimeStamp.Name' value: 'PrecisionTimeStamp'
  id: 'Attribute::LibOpt_SnapshotLogEntry::SequenceNr.Description' value: 'The sequence number of the `LibOpt_Snapshot`.'
  id: 'Attribute::LibOpt_SnapshotLogEntry::SequenceNr.Name' value: 'SequenceNr'
  id: 'Attribute::LibOpt_SnapshotLogEntry::Status.Name' value: 'Status'
  id: 'Attribute::LibOpt_SnapshotLogEntry::TimeSince.Description' value: 'The duration since the start of the optimizer run.'
  id: 'Attribute::LibOpt_SnapshotLogEntry::TimeSince.Name' value: 'TimeSince'
  id: 'Attribute::LibOpt_SnapshotLogEntry::TimeStamp.Description' value: 'The date time this `LibOpt_Snapshot` was created.'
  id: 'Attribute::LibOpt_SnapshotLogEntry::TimeStamp.Name' value: 'TimeStamp'
  id: 'Attribute::LibOpt_SnapshotLogEntry::Type.Description' value: 'A way to distinguish between different types of `LibOpt_Snapshot`.'
  id: 'Attribute::LibOpt_SnapshotLogEntry::Type.Name' value: 'Type'
  id: 'Attribute::LibOpt_SnapshotMP::AbsoluteGap.Description' value: 'The absolute gap of the solution. This is the first absolute gap if there are multiple goals.\n\nThis attribute is DEPRECATED. Use `AbsoluteGaps`.'
  id: 'Attribute::LibOpt_SnapshotMP::AbsoluteGap.Name' value: 'AbsoluteGap'
  id: 'Attribute::LibOpt_SnapshotMP::AbsoluteGaps.Description' value: 'The absolute gaps of the solution.'
  id: 'Attribute::LibOpt_SnapshotMP::AbsoluteGaps.Name' value: 'AbsoluteGaps'
  id: 'Attribute::LibOpt_SnapshotMP::Bound.Description' value: 'The lower bound or upper bound of the solution. This is calculated by relaxing the integer variables. This is the first bound if there are multiple goals.\n\nThis attribute is DEPRECATED. Use `Bounds`.'
  id: 'Attribute::LibOpt_SnapshotMP::Bound.Name' value: 'Bound'
  id: 'Attribute::LibOpt_SnapshotMP::Bounds.Description' value: 'The lower bound or upper bound of the solution. This is calculated by relaxing the integer variables.'
  id: 'Attribute::LibOpt_SnapshotMP::Bounds.Name' value: 'Bounds'
  id: 'Attribute::LibOpt_SnapshotMP::ComputerName.Description' value: 'The name of the computer on which this snapshot was created.'
  id: 'Attribute::LibOpt_SnapshotMP::ComputerName.Name' value: 'ComputerName'
  id: 'Attribute::LibOpt_SnapshotMP::CumNrIterations.Name' value: 'CumNrIterations'
  id: 'Attribute::LibOpt_SnapshotMP::Details.Description' value: 'An overview of the details of this `LibOpt_Snapshot`.'
  id: 'Attribute::LibOpt_SnapshotMP::Details.Name' value: 'Details'
  id: 'Attribute::LibOpt_SnapshotMP::ExecutionNr.Description' value: 'The execution number of this `LibOpt_SnapshotAlgorithm` on its parent `LibOpt_SnapshotComponent`.\nIt is expected that the relevant `LibOpt_Component` is of a `LibOpt_Suboptimizer` type.'
  id: 'Attribute::LibOpt_SnapshotMP::ExecutionNr.Name' value: 'ExecutionNr'
  id: 'Attribute::LibOpt_SnapshotMP::GoalScore.Description' value: 'The goal score of the solution. This is the first goal score if there are multiple goals.\n\nThis attribute is DEPRECATED. Use `GoalScores`.'
  id: 'Attribute::LibOpt_SnapshotMP::GoalScore.Name' value: 'GoalScore'
  id: 'Attribute::LibOpt_SnapshotMP::GoalScores.Description' value: 'The goal score of the solution.'
  id: 'Attribute::LibOpt_SnapshotMP::GoalScores.Name' value: 'GoalScores'
  id: 'Attribute::LibOpt_SnapshotMP::HandleResultDuration.Description' value: 'The time it took to handle the result of the algorithm.'
  id: 'Attribute::LibOpt_SnapshotMP::HandleResultDuration.Name' value: 'HandleResultDuration'
  id: 'Attribute::LibOpt_SnapshotMP::HandleResultStart.Description' value: 'An attribute to store when the `HandleResult` started.\nThis can be used to set the `HandleResultDuration` in case of an error.\n\nIf the value is negative, the `HandleResultDuration` has already been set.'
  id: 'Attribute::LibOpt_SnapshotMP::HandleResultStart.Name' value: 'HandleResultStart'
  id: 'Attribute::LibOpt_SnapshotMP::ImgHasIssues.Description' value: 'Whether the snapshot has any issues associated to it'
  id: 'Attribute::LibOpt_SnapshotMP::ImgHasIssues.Name' value: 'ImgHasIssues'
  id: 'Attribute::LibOpt_SnapshotMP::ImgIsFeasible.Name' value: 'ImgIsFeasible'
  id: 'Attribute::LibOpt_SnapshotMP::InitializeDuration.Description' value: 'The time it took to initialize the algorithm.'
  id: 'Attribute::LibOpt_SnapshotMP::InitializeDuration.Name' value: 'InitializeDuration'
  id: 'Attribute::LibOpt_SnapshotMP::IsAsynchronous.Description' value: 'Whether the algorithm was executed asynchronous.'
  id: 'Attribute::LibOpt_SnapshotMP::IsAsynchronous.Name' value: 'IsAsynchronous'
  id: 'Attribute::LibOpt_SnapshotMP::IsFeasible.Description' value: 'Whether the result of the mathematical program was feasible.'
  id: 'Attribute::LibOpt_SnapshotMP::IsFeasible.Name' value: 'IsFeasible'
  id: 'Attribute::LibOpt_SnapshotMP::IsFixed.Description' value: 'Whether the MIP is fixed.'
  id: 'Attribute::LibOpt_SnapshotMP::IsFixed.Name' value: 'IsFixed'
  id: 'Attribute::LibOpt_SnapshotMP::IsMIP.Description' value: 'Whether at least one of the variables is integer.'
  id: 'Attribute::LibOpt_SnapshotMP::IsMIP.Name' value: 'IsMIP'
  id: 'Attribute::LibOpt_SnapshotMP::IsOptimal.Description' value: 'Whether the result of the mathematical program was optimal or not.'
  id: 'Attribute::LibOpt_SnapshotMP::IsOptimal.Name' value: 'IsOptimal'
  id: 'Attribute::LibOpt_SnapshotMP::IsQuadratic.Description' value: 'Whether the problem is quadratic.'
  id: 'Attribute::LibOpt_SnapshotMP::IsQuadratic.Name' value: 'IsQuadratic'
  id: 'Attribute::LibOpt_SnapshotMP::IsQuadraticallyConstrained.Description' value: 'Whether or not the problem is quadratically constrained.'
  id: 'Attribute::LibOpt_SnapshotMP::IsQuadraticallyConstrained.Name' value: 'IsQuadraticallyConstrained'
  id: 'Attribute::LibOpt_SnapshotMP::Kappa.Description' value: 'A summary of the distribution of the condition number of the optimal bases CPLEX encountered during the solution of a MIP model.\nA high Kappa value is an indication that the MIP or LP is ill-conditioned.\nThis means that small changes in the problem definition can lead to large changes on the solution, as a form of butterfly effect.\nIn ill-conditioned problems CPLEX may fail to find a feasible solution (even if one exists), solve slowly and inconsistently, or return suboptimal results.'
  id: 'Attribute::LibOpt_SnapshotMP::Kappa.Name' value: 'Kappa'
  id: 'Attribute::LibOpt_SnapshotMP::MDS.Description' value: 'The MDSID on which this snapshot was created.'
  id: 'Attribute::LibOpt_SnapshotMP::MDS.Name' value: 'MDS'
  id: 'Attribute::LibOpt_SnapshotMP::NrConstraints.Description' value: 'The number of constraints used in the mathematical program.'
  id: 'Attribute::LibOpt_SnapshotMP::NrConstraints.Name' value: 'NrConstraints'
  id: 'Attribute::LibOpt_SnapshotMP::NrGoalLevels.Description' value: 'The number of goal levels (a.k.a priorities/hierarchies) used in the mathematical program.'
  id: 'Attribute::LibOpt_SnapshotMP::NrGoalLevels.Name' value: 'NrGoalLevels'
  id: 'Attribute::LibOpt_SnapshotMP::NrIssues.Description' value: 'The number of `LibOpt_Issues` related to this `LibOpt_Snapshot`.'
  id: 'Attribute::LibOpt_SnapshotMP::NrIssues.Name' value: 'NrIssues'
  id: 'Attribute::LibOpt_SnapshotMP::NrVariables.Description' value: 'The number of variables used in the mathematical program.'
  id: 'Attribute::LibOpt_SnapshotMP::NrVariables.Name' value: 'NrVariables'
  id: 'Attribute::LibOpt_SnapshotMP::NumberOfSolutions.Description' value: 'The number of solutions found.'
  id: 'Attribute::LibOpt_SnapshotMP::NumberOfSolutions.Name' value: 'NumberOfSolutions'
  id: 'Attribute::LibOpt_SnapshotMP::PrecisionTimeStamp.Description' value: 'The time according to OS::PrecisionCounter() when this object was created.'
  id: 'Attribute::LibOpt_SnapshotMP::PrecisionTimeStamp.Name' value: 'PrecisionTimeStamp'
  id: 'Attribute::LibOpt_SnapshotMP::RelativeGap.Description' value: 'The relative gap of the solution. This is the relative gap if there are multiple goals.\n\nThis attribute is DEPRECATED. Use `RelativeGaps`.'
  id: 'Attribute::LibOpt_SnapshotMP::RelativeGap.Name' value: 'RelativeGap'
  id: 'Attribute::LibOpt_SnapshotMP::RelativeGaps.Description' value: 'The relative gap of the solution\n\nThis attribute is DEPRECATED. Use `RelativeGaps`.'
  id: 'Attribute::LibOpt_SnapshotMP::RelativeGaps.Name' value: 'RelativeGaps'
  id: 'Attribute::LibOpt_SnapshotMP::SequenceNr.Description' value: 'The sequence number of the `LibOpt_Snapshot`.'
  id: 'Attribute::LibOpt_SnapshotMP::SequenceNr.Name' value: 'SequenceNr'
  id: 'Attribute::LibOpt_SnapshotMP::SolveDuration.Description' value: 'The time it took to execute the algorithm.'
  id: 'Attribute::LibOpt_SnapshotMP::SolveDuration.Name' value: 'SolveDuration'
  id: 'Attribute::LibOpt_SnapshotMP::Status.Name' value: 'Status'
  id: 'Attribute::LibOpt_SnapshotMP::TimeSince.Description' value: 'The duration since the start of the optimizer run.'
  id: 'Attribute::LibOpt_SnapshotMP::TimeSince.Name' value: 'TimeSince'
  id: 'Attribute::LibOpt_SnapshotMP::TimeStamp.Description' value: 'The date time this `LibOpt_Snapshot` was created.'
  id: 'Attribute::LibOpt_SnapshotMP::TimeStamp.Name' value: 'TimeStamp'
  id: 'Attribute::LibOpt_SnapshotMP::TotalTime.Description' value: 'The total time spent in the algorithm'
  id: 'Attribute::LibOpt_SnapshotMP::TotalTime.Name' value: 'TotalTime'
  id: 'Attribute::LibOpt_SnapshotMP::Type.Description' value: 'A way to distinguish between different types of `LibOpt_Snapshot`.'
  id: 'Attribute::LibOpt_SnapshotMP::Type.Name' value: 'Type'
  id: 'Attribute::LibOpt_SnapshotOptimizerRunController::ComputerName.Description' value: 'The name of the computer on which this snapshot was created.'
  id: 'Attribute::LibOpt_SnapshotOptimizerRunController::ComputerName.Name' value: 'ComputerName'
  id: 'Attribute::LibOpt_SnapshotOptimizerRunController::CumNrIterations.Name' value: 'CumNrIterations'
  id: 'Attribute::LibOpt_SnapshotOptimizerRunController::Details.Description' value: 'An overview of the details of this `LibOpt_Snapshot`.'
  id: 'Attribute::LibOpt_SnapshotOptimizerRunController::Details.Name' value: 'Details'
  id: 'Attribute::LibOpt_SnapshotOptimizerRunController::HasStarted.Description' value: 'This attribute is set to true after the `LibOpt_OptimizerRunController` gives approval to start the `LibOpt_Run`.'
  id: 'Attribute::LibOpt_SnapshotOptimizerRunController::HasStarted.Name' value: 'HasStarted'
  id: 'Attribute::LibOpt_SnapshotOptimizerRunController::ImgHasIssues.Description' value: 'Whether the snapshot has any issues associated to it'
  id: 'Attribute::LibOpt_SnapshotOptimizerRunController::ImgHasIssues.Name' value: 'ImgHasIssues'
  id: 'Attribute::LibOpt_SnapshotOptimizerRunController::IsStopped.Description' value: 'This attribute is true if a requested `LibOpt_Run` is stopped before the run started.'
  id: 'Attribute::LibOpt_SnapshotOptimizerRunController::IsStopped.Name' value: 'IsStopped'
  id: 'Attribute::LibOpt_SnapshotOptimizerRunController::MDS.Description' value: 'The MDSID on which this snapshot was created.'
  id: 'Attribute::LibOpt_SnapshotOptimizerRunController::MDS.Name' value: 'MDS'
  id: 'Attribute::LibOpt_SnapshotOptimizerRunController::NrIssues.Description' value: 'The number of `LibOpt_Issues` related to this `LibOpt_Snapshot`.'
  id: 'Attribute::LibOpt_SnapshotOptimizerRunController::NrIssues.Name' value: 'NrIssues'
  id: 'Attribute::LibOpt_SnapshotOptimizerRunController::PrecisionTimeStamp.Description' value: 'The time according to OS::PrecisionCounter() when this object was created.'
  id: 'Attribute::LibOpt_SnapshotOptimizerRunController::PrecisionTimeStamp.Name' value: 'PrecisionTimeStamp'
  id: 'Attribute::LibOpt_SnapshotOptimizerRunController::RequestedOn.Description' value: 'If the `LibOpt_OptimizerRunController` is enabled, then a request to start a `LibOpt_Run` has to be sent to the `LibOpt_OptimizerRunController` before the run can be started.\nThe `RequestedOn` attribute is equal to the date time of this request.'
  id: 'Attribute::LibOpt_SnapshotOptimizerRunController::RequestedOn.Name' value: 'RequestedOn'
  id: 'Attribute::LibOpt_SnapshotOptimizerRunController::SequenceNr.Description' value: 'The sequence number of the `LibOpt_Snapshot`.'
  id: 'Attribute::LibOpt_SnapshotOptimizerRunController::SequenceNr.Name' value: 'SequenceNr'
  id: 'Attribute::LibOpt_SnapshotOptimizerRunController::StartedOn.Description' value: 'The date time this `LibOpt_Run` started optimization.\nThis attribute is set after the run controller confirmed that the `LibOpt_Run` can start.'
  id: 'Attribute::LibOpt_SnapshotOptimizerRunController::StartedOn.Name' value: 'StartedOn'
  id: 'Attribute::LibOpt_SnapshotOptimizerRunController::Status.Name' value: 'Status'
  id: 'Attribute::LibOpt_SnapshotOptimizerRunController::TimeSince.Description' value: 'The duration since the start of the optimizer run.'
  id: 'Attribute::LibOpt_SnapshotOptimizerRunController::TimeSince.Name' value: 'TimeSince'
  id: 'Attribute::LibOpt_SnapshotOptimizerRunController::TimeStamp.Description' value: 'The date time this `LibOpt_Snapshot` was created.'
  id: 'Attribute::LibOpt_SnapshotOptimizerRunController::TimeStamp.Name' value: 'TimeStamp'
  id: 'Attribute::LibOpt_SnapshotOptimizerRunController::Type.Description' value: 'A way to distinguish between different types of `LibOpt_Snapshot`.'
  id: 'Attribute::LibOpt_SnapshotOptimizerRunController::Type.Name' value: 'Type'
  id: 'Attribute::LibOpt_SnapshotOptimizerRunController::WaitingDuration.Description' value: 'The duration between the moment that the run was requested and the moment that the run was actually started. \nSo the duration between `RequestedOn` and `StartedOn`.'
  id: 'Attribute::LibOpt_SnapshotOptimizerRunController::WaitingDuration.Name' value: 'WaitingDuration'
  id: 'Attribute::LibOpt_SnapshotPOA::ComputerName.Description' value: 'The name of the computer on which this snapshot was created.'
  id: 'Attribute::LibOpt_SnapshotPOA::ComputerName.Name' value: 'ComputerName'
  id: 'Attribute::LibOpt_SnapshotPOA::CumNrIterations.Name' value: 'CumNrIterations'
  id: 'Attribute::LibOpt_SnapshotPOA::Details.Description' value: 'An overview of the details of this `LibOpt_Snapshot`.'
  id: 'Attribute::LibOpt_SnapshotPOA::Details.Name' value: 'Details'
  id: 'Attribute::LibOpt_SnapshotPOA::ExecutionNr.Description' value: 'The execution number of this `LibOpt_SnapshotAlgorithm` on its parent `LibOpt_SnapshotComponent`.\nIt is expected that the relevant `LibOpt_Component` is of a `LibOpt_Suboptimizer` type.'
  id: 'Attribute::LibOpt_SnapshotPOA::ExecutionNr.Name' value: 'ExecutionNr'
  id: 'Attribute::LibOpt_SnapshotPOA::HandleResultDuration.Description' value: 'The time it took to handle the result of the algorithm.'
  id: 'Attribute::LibOpt_SnapshotPOA::HandleResultDuration.Name' value: 'HandleResultDuration'
  id: 'Attribute::LibOpt_SnapshotPOA::HandleResultStart.Description' value: 'An attribute to store when the `HandleResult` started.\nThis can be used to set the `HandleResultDuration` in case of an error.\n\nIf the value is negative, the `HandleResultDuration` has already been set.'
  id: 'Attribute::LibOpt_SnapshotPOA::HandleResultStart.Name' value: 'HandleResultStart'
  id: 'Attribute::LibOpt_SnapshotPOA::ImgHasIssues.Description' value: 'Whether the snapshot has any issues associated to it'
  id: 'Attribute::LibOpt_SnapshotPOA::ImgHasIssues.Name' value: 'ImgHasIssues'
  id: 'Attribute::LibOpt_SnapshotPOA::InitializeDuration.Description' value: 'The time it took to initialize the algorithm.'
  id: 'Attribute::LibOpt_SnapshotPOA::InitializeDuration.Name' value: 'InitializeDuration'
  id: 'Attribute::LibOpt_SnapshotPOA::IsAsynchronous.Description' value: 'Whether the algorithm was executed asynchronous.'
  id: 'Attribute::LibOpt_SnapshotPOA::IsAsynchronous.Name' value: 'IsAsynchronous'
  id: 'Attribute::LibOpt_SnapshotPOA::MDS.Description' value: 'The MDSID on which this snapshot was created.'
  id: 'Attribute::LibOpt_SnapshotPOA::MDS.Name' value: 'MDS'
  id: 'Attribute::LibOpt_SnapshotPOA::MaxPathPopulation.Description' value: 'The maximum number of moves that will be evaluated per path.'
  id: 'Attribute::LibOpt_SnapshotPOA::MaxPathPopulation.Name' value: 'MaxPathPopulation'
  id: 'Attribute::LibOpt_SnapshotPOA::MaxPopulation.Description' value: 'The maximum number of moves that will be evaluated.'
  id: 'Attribute::LibOpt_SnapshotPOA::MaxPopulation.Name' value: 'MaxPopulation'
  id: 'Attribute::LibOpt_SnapshotPOA::NrIssues.Description' value: 'The number of `LibOpt_Issues` related to this `LibOpt_Snapshot`.'
  id: 'Attribute::LibOpt_SnapshotPOA::NrIssues.Name' value: 'NrIssues'
  id: 'Attribute::LibOpt_SnapshotPOA::NrNodes.Description' value: 'The number of poa nodes in the poa algorithm.'
  id: 'Attribute::LibOpt_SnapshotPOA::NrNodes.Name' value: 'NrNodes'
  id: 'Attribute::LibOpt_SnapshotPOA::NrPathTypes.Description' value: 'The number of poa path types in the poa.'
  id: 'Attribute::LibOpt_SnapshotPOA::NrPathTypes.Name' value: 'NrPathTypes'
  id: 'Attribute::LibOpt_SnapshotPOA::PopulationSize95Percentile.Description' value: 'The 95th percentile of the population size. 95% of the POA iterations within a single POA run have a population size less than or equal to this value.'
  id: 'Attribute::LibOpt_SnapshotPOA::PopulationSize95Percentile.Name' value: 'PopulationSize95Percentile'
  id: 'Attribute::LibOpt_SnapshotPOA::PrecisionTimeStamp.Description' value: 'The time according to OS::PrecisionCounter() when this object was created.'
  id: 'Attribute::LibOpt_SnapshotPOA::PrecisionTimeStamp.Name' value: 'PrecisionTimeStamp'
  id: 'Attribute::LibOpt_SnapshotPOA::SequenceNr.Description' value: 'The sequence number of the `LibOpt_Snapshot`.'
  id: 'Attribute::LibOpt_SnapshotPOA::SequenceNr.Name' value: 'SequenceNr'
  id: 'Attribute::LibOpt_SnapshotPOA::SolveDuration.Description' value: 'The time it took to execute the algorithm.'
  id: 'Attribute::LibOpt_SnapshotPOA::SolveDuration.Name' value: 'SolveDuration'
  id: 'Attribute::LibOpt_SnapshotPOA::Status.Name' value: 'Status'
  id: 'Attribute::LibOpt_SnapshotPOA::TimeSince.Description' value: 'The duration since the start of the optimizer run.'
  id: 'Attribute::LibOpt_SnapshotPOA::TimeSince.Name' value: 'TimeSince'
  id: 'Attribute::LibOpt_SnapshotPOA::TimeStamp.Description' value: 'The date time this `LibOpt_Snapshot` was created.'
  id: 'Attribute::LibOpt_SnapshotPOA::TimeStamp.Name' value: 'TimeStamp'
  id: 'Attribute::LibOpt_SnapshotPOA::TotalTime.Description' value: 'The total time spent in the algorithm'
  id: 'Attribute::LibOpt_SnapshotPOA::TotalTime.Name' value: 'TotalTime'
  id: 'Attribute::LibOpt_SnapshotPOA::Type.Description' value: 'A way to distinguish between different types of `LibOpt_Snapshot`.'
  id: 'Attribute::LibOpt_SnapshotPOA::Type.Name' value: 'Type'
  id: 'Attribute::LibOpt_SnapshotPOASolution::BenefitOffset.Description' value: 'The offset of the benefits, used to increase the score of the benefits. This can be useful, since the total score contains costs / benefits.'
  id: 'Attribute::LibOpt_SnapshotPOASolution::BenefitOffset.Name' value: 'BenefitOffset'
  id: 'Attribute::LibOpt_SnapshotPOASolution::ComputerName.Description' value: 'The name of the computer on which this snapshot was created.'
  id: 'Attribute::LibOpt_SnapshotPOASolution::ComputerName.Name' value: 'ComputerName'
  id: 'Attribute::LibOpt_SnapshotPOASolution::CostOffset.Description' value: 'The offset of the costs, used to increase the costs score. This can be useful, since the total score contains costs / benefits.'
  id: 'Attribute::LibOpt_SnapshotPOASolution::CostOffset.Name' value: 'CostOffset'
  id: 'Attribute::LibOpt_SnapshotPOASolution::CumNrIterations.Name' value: 'CumNrIterations'
  id: 'Attribute::LibOpt_SnapshotPOASolution::Details.Description' value: 'An overview of the details of this `LibOpt_Snapshot`.'
  id: 'Attribute::LibOpt_SnapshotPOASolution::Details.Name' value: 'Details'
  id: 'Attribute::LibOpt_SnapshotPOASolution::ImgHasIssues.Description' value: 'Whether the snapshot has any issues associated to it'
  id: 'Attribute::LibOpt_SnapshotPOASolution::ImgHasIssues.Name' value: 'ImgHasIssues'
  id: 'Attribute::LibOpt_SnapshotPOASolution::MDS.Description' value: 'The MDSID on which this snapshot was created.'
  id: 'Attribute::LibOpt_SnapshotPOASolution::MDS.Name' value: 'MDS'
  id: 'Attribute::LibOpt_SnapshotPOASolution::NrIssues.Description' value: 'The number of `LibOpt_Issues` related to this `LibOpt_Snapshot`.'
  id: 'Attribute::LibOpt_SnapshotPOASolution::NrIssues.Name' value: 'NrIssues'
  id: 'Attribute::LibOpt_SnapshotPOASolution::PlannedNodeBenefit.Description' value: 'The sum of the planned benefits of all the planned nodes.'
  id: 'Attribute::LibOpt_SnapshotPOASolution::PlannedNodeBenefit.Name' value: 'PlannedNodeBenefit'
  id: 'Attribute::LibOpt_SnapshotPOASolution::PrecisionTimeStamp.Description' value: 'The time according to OS::PrecisionCounter() when this object was created.'
  id: 'Attribute::LibOpt_SnapshotPOASolution::PrecisionTimeStamp.Name' value: 'PrecisionTimeStamp'
  id: 'Attribute::LibOpt_SnapshotPOASolution::Role.Description' value: 'An identifier to specify the type of `POARun` this represents.\nFor example, initial solution or final solution.'
  id: 'Attribute::LibOpt_SnapshotPOASolution::Role.Name' value: 'Role'
  id: 'Attribute::LibOpt_SnapshotPOASolution::SequenceNr.Description' value: 'The sequence number of the `LibOpt_Snapshot`.'
  id: 'Attribute::LibOpt_SnapshotPOASolution::SequenceNr.Name' value: 'SequenceNr'
  id: 'Attribute::LibOpt_SnapshotPOASolution::Status.Name' value: 'Status'
  id: 'Attribute::LibOpt_SnapshotPOASolution::TimeSince.Description' value: 'The duration since the start of the optimizer run.'
  id: 'Attribute::LibOpt_SnapshotPOASolution::TimeSince.Name' value: 'TimeSince'
  id: 'Attribute::LibOpt_SnapshotPOASolution::TimeStamp.Description' value: 'The date time this `LibOpt_Snapshot` was created.'
  id: 'Attribute::LibOpt_SnapshotPOASolution::TimeStamp.Name' value: 'TimeStamp'
  id: 'Attribute::LibOpt_SnapshotPOASolution::TotalConstraintScore.Description' value: 'The sum of the scores of the individual constraints. This is the total constraint cost of the entire subpuzzle.'
  id: 'Attribute::LibOpt_SnapshotPOASolution::TotalConstraintScore.Name' value: 'TotalConstraintScore'
  id: 'Attribute::LibOpt_SnapshotPOASolution::TotalGoalScore.Description' value: 'The sum of the scores of the individual goals. This is the total goal score of the entire subpuzzle.'
  id: 'Attribute::LibOpt_SnapshotPOASolution::TotalGoalScore.Name' value: 'TotalGoalScore'
  id: 'Attribute::LibOpt_SnapshotPOASolution::TotalResourceScore.Description' value: 'The sum of the scores of the individual POA resources. This is the total POA resource score of the entire subpuzzle.'
  id: 'Attribute::LibOpt_SnapshotPOASolution::TotalResourceScore.Name' value: 'TotalResourceScore'
  id: 'Attribute::LibOpt_SnapshotPOASolution::Type.Description' value: 'A way to distinguish between different types of `LibOpt_Snapshot`.'
  id: 'Attribute::LibOpt_SnapshotPOASolution::Type.Name' value: 'Type'
  id: 'Attribute::LibOpt_SnapshotPOASolution::UnplannedNodeCosts.Description' value: 'The sum of the unplanned costs of all the unplanned nodes in the subpuzzle.'
  id: 'Attribute::LibOpt_SnapshotPOASolution::UnplannedNodeCosts.Name' value: 'UnplannedNodeCosts'
  id: 'Attribute::LibOpt_SnapshotReplannable::ComputerName.Description' value: 'The name of the computer on which this snapshot was created.'
  id: 'Attribute::LibOpt_SnapshotReplannable::ComputerName.Name' value: 'ComputerName'
  id: 'Attribute::LibOpt_SnapshotReplannable::CumNrIterations.Name' value: 'CumNrIterations'
  id: 'Attribute::LibOpt_SnapshotReplannable::Details.Description' value: 'An overview of the details of this `LibOpt_Snapshot`.'
  id: 'Attribute::LibOpt_SnapshotReplannable::Details.Name' value: 'Details'
  id: 'Attribute::LibOpt_SnapshotReplannable::ImgHasIssues.Description' value: 'Whether the snapshot has any issues associated to it'
  id: 'Attribute::LibOpt_SnapshotReplannable::ImgHasIssues.Name' value: 'ImgHasIssues'
  id: 'Attribute::LibOpt_SnapshotReplannable::MDS.Description' value: 'The MDSID on which this snapshot was created.'
  id: 'Attribute::LibOpt_SnapshotReplannable::MDS.Name' value: 'MDS'
  id: 'Attribute::LibOpt_SnapshotReplannable::NrIssues.Description' value: 'The number of `LibOpt_Issues` related to this `LibOpt_Snapshot`.'
  id: 'Attribute::LibOpt_SnapshotReplannable::NrIssues.Name' value: 'NrIssues'
  id: 'Attribute::LibOpt_SnapshotReplannable::PrecisionTimeStamp.Description' value: 'The time according to OS::PrecisionCounter() when this object was created.'
  id: 'Attribute::LibOpt_SnapshotReplannable::PrecisionTimeStamp.Name' value: 'PrecisionTimeStamp'
  id: 'Attribute::LibOpt_SnapshotReplannable::SequenceNr.Description' value: 'The sequence number of the `LibOpt_Snapshot`.'
  id: 'Attribute::LibOpt_SnapshotReplannable::SequenceNr.Name' value: 'SequenceNr'
  id: 'Attribute::LibOpt_SnapshotReplannable::Status.Name' value: 'Status'
  id: 'Attribute::LibOpt_SnapshotReplannable::TimeSince.Description' value: 'The duration since the start of the optimizer run.'
  id: 'Attribute::LibOpt_SnapshotReplannable::TimeSince.Name' value: 'TimeSince'
  id: 'Attribute::LibOpt_SnapshotReplannable::TimeStamp.Description' value: 'The date time this `LibOpt_Snapshot` was created.'
  id: 'Attribute::LibOpt_SnapshotReplannable::TimeStamp.Name' value: 'TimeStamp'
  id: 'Attribute::LibOpt_SnapshotReplannable::Type.Description' value: 'A way to distinguish between different types of `LibOpt_Snapshot`.'
  id: 'Attribute::LibOpt_SnapshotReplannable::Type.Name' value: 'Type'
  id: 'Attribute::LibOpt_SnapshotReplannableCopyDataset::ComponentPositionName.Description' value: 'The `LibOpt_DatasetCopyConditional` that created this `LibOpt_SnapshotReplannableCopyDataset` is attached to some component position. \nThis attribute contains the name of that component position.'
  id: 'Attribute::LibOpt_SnapshotReplannableCopyDataset::ComponentPositionName.Name' value: 'ComponentPositionName'
  id: 'Attribute::LibOpt_SnapshotReplannableCopyDataset::ComputerName.Description' value: 'The name of the computer on which this snapshot was created.'
  id: 'Attribute::LibOpt_SnapshotReplannableCopyDataset::ComputerName.Name' value: 'ComputerName'
  id: 'Attribute::LibOpt_SnapshotReplannableCopyDataset::CumNrIterations.Name' value: 'CumNrIterations'
  id: 'Attribute::LibOpt_SnapshotReplannableCopyDataset::DatasetName.Description' value: 'The name of the dataset that is linked to this snapshot.\n\nThe copy dataset logic assumes that there is only one dataset with this name.\nIt is also assumed that there is only one `LibOpt_SnapshotReplannableCopyDataset` object with this name.\n(Except during the serializing/deserializing process. During this process it is allowed that briefly 2 snapshots with the same dataset name exist)'
  id: 'Attribute::LibOpt_SnapshotReplannableCopyDataset::DatasetName.Name' value: 'DatasetName'
  id: 'Attribute::LibOpt_SnapshotReplannableCopyDataset::Details.Description' value: 'An overview of the details of this `LibOpt_Snapshot`.'
  id: 'Attribute::LibOpt_SnapshotReplannableCopyDataset::Details.Name' value: 'Details'
  id: 'Attribute::LibOpt_SnapshotReplannableCopyDataset::HasCreatedDataset.Description' value: "This attribute is used to change the dataset copy icon in the 'Status' column of the 'Snapshots' form.\nWhen this attribute is `false`, then the 'Copy in progress' icon is shown.\nWhen it is `true`, then the 'Copy created' icon is shown"
  id: 'Attribute::LibOpt_SnapshotReplannableCopyDataset::HasCreatedDataset.Name' value: 'HasCreatedDataset'
  id: 'Attribute::LibOpt_SnapshotReplannableCopyDataset::HasExecutedDoFinalizeDatasetCopyDelete.Description' value: 'This attribute is `true` if the `LibOpt_DatasetCopyConditional::DoFinalizeDatasetCopyDelete` static method has been executed for this snapshot.'
  id: 'Attribute::LibOpt_SnapshotReplannableCopyDataset::HasExecutedDoFinalizeDatasetCopyDelete.Name' value: 'HasExecutedDoFinalizeDatasetCopyDelete'
  id: 'Attribute::LibOpt_SnapshotReplannableCopyDataset::HasFailedToCreateDataset.Description' value: "When this attribute is `true`, then an error occurred during the creation of a dataset copy.\nThis can have several causes. For example, the full path of the dataset copy exceeded Windows' maximum path length. This happens when the path to the DSS folder is long or when the dataset name is too long."
  id: 'Attribute::LibOpt_SnapshotReplannableCopyDataset::HasFailedToCreateDataset.Name' value: 'HasFailedToCreateDataset'
  id: 'Attribute::LibOpt_SnapshotReplannableCopyDataset::HasToBeDeleted.Description' value: 'The `LibOpt_DatasetCopyConditional::DoFinalizeDatasetCopyDelete` method attempts to delete dataset copies. \nIf the dataset that is attached to this `LibOpt_SnapshotReplannableCopyDataset` cannot be deleted because the dataset copy is still being created, then the `HasToBeDeleted` attribute is set to `true`.\n\nAfter the dataset is created, then the `LibOpt_DatasetCopyConditional::HandleSuccessfulDatasetCopy` method is executed. \nThis method deletes the dataset if the `HasToBeDeleted` attribute is `true`.'
  id: 'Attribute::LibOpt_SnapshotReplannableCopyDataset::HasToBeDeleted.Name' value: 'HasToBeDeleted'
  id: 'Attribute::LibOpt_SnapshotReplannableCopyDataset::ImgHasIssues.Description' value: 'Whether the snapshot has any issues associated to it'
  id: 'Attribute::LibOpt_SnapshotReplannableCopyDataset::ImgHasIssues.Name' value: 'ImgHasIssues'
  id: 'Attribute::LibOpt_SnapshotReplannableCopyDataset::IsDatasetDeleted.Description' value: "This attribute is `true` if either `IsDatasetDeletedByOptimizer`, `IsDatasetDeletedManually` or `IsDatasetDeletedUnspecifiedReason` is `true`.\n\nThis attribute is used in the 'Status' image attribute column. This column is used in the 'Snapshots' and 'Replannable snapshots' forms.\nIf this attribute is `true`, then an icon will be shown in this column which indicates that the dataset that is connected to the `LibOpt_SnapshotReplannableCopyDataset` is deleted."
  id: 'Attribute::LibOpt_SnapshotReplannableCopyDataset::IsDatasetDeleted.Name' value: 'IsDatasetDeleted'
  id: 'Attribute::LibOpt_SnapshotReplannableCopyDataset::IsDatasetDeletedByOptimizer.Description' value: 'This attribute is `true` when the optimizer has deleted the dataset copy that belongs to this `LibOpt_SnapshotReplannableCopyDataset`.\n\nWhen a `LibOpt_DatasetCopyConditional` is used to create a dataset copy during an optimizer run, then also a `LibOpt_SnapshotReplannableCopyDataset` is created. \nWhen the `LibOpt_DatasetCopyConditional.DeleteCondition` method of this `LibOpt_DatasetCopyConditional` returns `true` during the optimizer run, then the dataset copy is deleted. \nThis sets the `IsDatasetDeletedByOptimizer` attribute of the `LibOpt_SnapshotReplannableCopyDataset` to `true`.'
  id: 'Attribute::LibOpt_SnapshotReplannableCopyDataset::IsDatasetDeletedByOptimizer.Name' value: 'IsDatasetDeletedByOptimizer'
  id: 'Attribute::LibOpt_SnapshotReplannableCopyDataset::IsDatasetDeletedManually.Description' value: "This attribute is `true` when the dataset copy that belongs to this `LibOpt_SnapshotReplannableCopyDataset` is deleted by a manual action.\nAn example of a manual action is using the 'Delete dataset' context menu item in the 'Snapshots' or 'Replannable snapshots' form.\n\nThis attribute is NOT set to `true` when the dataset copy is deleted outside of the LibOpt libary. In this case, the `IsDatasetDeletedUnspecifiedReason` attribute is used."
  id: 'Attribute::LibOpt_SnapshotReplannableCopyDataset::IsDatasetDeletedManually.Name' value: 'IsDatasetDeletedManually'
  id: 'Attribute::LibOpt_SnapshotReplannableCopyDataset::IsDatasetDeletedUnspecifiedReason.Description' value: "This attribute is set to `true` when a dataset is unexpectedly deleted. \nA dataset counts as 'unexpectedly deleted' when a dataset is deleted outside of the LibOpt library.\nA dataset is deleted outside of the LibOpt library, when, for example, the dataset is deleted by using the 'Manage datasets' form or by using a scenario manager."
  id: 'Attribute::LibOpt_SnapshotReplannableCopyDataset::IsDatasetDeletedUnspecifiedReason.Name' value: 'IsDatasetDeletedUnspecifiedReason'
  id: 'Attribute::LibOpt_SnapshotReplannableCopyDataset::IsDatasetLoaded.Description' value: "This attribute is used in the 'Status' image attribute column. This column is used in the 'Snapshots' and 'Replannable snapshots' forms.\nIf this attribute is `true`, then an icon will be shown in this column which indicates that the dataset that is connected to the `LibOpt_SnapshotReplannableCopyDataset` is loaded."
  id: 'Attribute::LibOpt_SnapshotReplannableCopyDataset::IsDatasetLoaded.Name' value: 'IsDatasetLoaded'
  id: 'Attribute::LibOpt_SnapshotReplannableCopyDataset::IsDatasetSelected.Description' value: "This attribute is used in the 'Status' image attribute column. This column is used in the 'Snapshots' and 'Replannable snapshots' forms.\nIf this attribute is `true`, then a checkmark icon will be shown in this column.\nThis checkmark indicates that the dataset that is connected to the `LibOpt_SnapshotReplannableCopyDataset` is the currently active/selected dataset in your client."
  id: 'Attribute::LibOpt_SnapshotReplannableCopyDataset::IsDatasetSelected.Name' value: 'IsDatasetSelected'
  id: 'Attribute::LibOpt_SnapshotReplannableCopyDataset::IsGetMDSObjectOverridden.Description' value: 'When the `LibOpt_Optimization.GetMDSObject` method on a `LibOpt_Optimization` subclass is not overridden, then no robust dataset copies can be created by the `LibOpt_DatasetCopyConditional::CopyDatasetRobust` method.\nThe `IsGetMDSObjectOverridden` attribute is set to `false` when the `LibOpt_Optimization.GetMDSObject` method does not return an `MDSObject` when the `LibOpt_DatasetCopyConditional::CopyDatasetRobust` method is called by the optimizer.\n\nWhen this attribute is `false`, then the `Details` attribute of this `LibOpt_SnapshotReplannableCopyDataset` will explain that the `LibOpt_Optimization.GetMDSObject` method should be overridden.'
  id: 'Attribute::LibOpt_SnapshotReplannableCopyDataset::IsGetMDSObjectOverridden.Name' value: 'IsGetMDSObjectOverridden'
  id: 'Attribute::LibOpt_SnapshotReplannableCopyDataset::IsMemoryOnly.Description' value: 'This attribute is `true` when the dataset copy that belongs to this `LibOpt_SnapshotReplannableCopyDataset` is in MemoryOnly storage mode.\n\nDataset copies that are created with the `LibOpt_DatasetCopyConditional::CopyDatasetRobust` method are created in MemoryOnly storage mode. \nLater, in the `LibOpt_DatasetCopyConditional::DoFinalizeDatasetCopyChangeToStandAlone` method, all MemoryOnly dataset copies are converted to StandAloneStorage dataset copies. \nThis method also sets the `IsMemoryOnly` attribute to `false`.'
  id: 'Attribute::LibOpt_SnapshotReplannableCopyDataset::IsMemoryOnly.Name' value: 'IsMemoryOnly'
  id: 'Attribute::LibOpt_SnapshotReplannableCopyDataset::IsQuickDatasetCopy.Description' value: 'There are 2 ways to copy a dataset. A quick method and a slow and robust method.\n\nThe quick method reactively creates a (standalone storage) dataset. This can be done in a separate transaction, which makes it faster than other dataset copy methods. \nThis quick method does not work during rollbacks or errors, because the reactive transaction would have to be rolled back.\n\nThe slow and robust method creates a dataset in the same transaction. This means that the optimization process will have to wait until the dataset copy is finished.\nThe storage state is first memory only, which gets changed to standalone storage in `LibOpt_DatasetCopyConditional::DoFinalizeDatasetCopyChangeToStandAlone`'
  id: 'Attribute::LibOpt_SnapshotReplannableCopyDataset::IsQuickDatasetCopy.Name' value: 'IsQuickDatasetCopy'
  id: 'Attribute::LibOpt_SnapshotReplannableCopyDataset::MDS.Description' value: 'The MDSID on which this snapshot was created.'
  id: 'Attribute::LibOpt_SnapshotReplannableCopyDataset::MDS.Name' value: 'MDS'
  id: 'Attribute::LibOpt_SnapshotReplannableCopyDataset::NrIssues.Description' value: 'The number of `LibOpt_Issues` related to this `LibOpt_Snapshot`.'
  id: 'Attribute::LibOpt_SnapshotReplannableCopyDataset::NrIssues.Name' value: 'NrIssues'
  id: 'Attribute::LibOpt_SnapshotReplannableCopyDataset::PrecisionTimeStamp.Description' value: 'The time according to OS::PrecisionCounter() when this object was created.'
  id: 'Attribute::LibOpt_SnapshotReplannableCopyDataset::PrecisionTimeStamp.Name' value: 'PrecisionTimeStamp'
  id: 'Attribute::LibOpt_SnapshotReplannableCopyDataset::SequenceNr.Description' value: 'The sequence number of the `LibOpt_Snapshot`.'
  id: 'Attribute::LibOpt_SnapshotReplannableCopyDataset::SequenceNr.Name' value: 'SequenceNr'
  id: 'Attribute::LibOpt_SnapshotReplannableCopyDataset::Status.Name' value: 'Status'
  id: 'Attribute::LibOpt_SnapshotReplannableCopyDataset::TimeSince.Description' value: 'The duration since the start of the optimizer run.'
  id: 'Attribute::LibOpt_SnapshotReplannableCopyDataset::TimeSince.Name' value: 'TimeSince'
  id: 'Attribute::LibOpt_SnapshotReplannableCopyDataset::TimeStamp.Description' value: 'The date time this `LibOpt_Snapshot` was created.'
  id: 'Attribute::LibOpt_SnapshotReplannableCopyDataset::TimeStamp.Name' value: 'TimeStamp'
  id: 'Attribute::LibOpt_SnapshotReplannableCopyDataset::Type.Description' value: 'A way to distinguish between different types of `LibOpt_Snapshot`.'
  id: 'Attribute::LibOpt_SnapshotReplannableCopyDataset::Type.Name' value: 'Type'
  id: 'Attribute::LibOpt_SnapshotResult::ComputerName.Description' value: 'The name of the computer on which this snapshot was created.'
  id: 'Attribute::LibOpt_SnapshotResult::ComputerName.Name' value: 'ComputerName'
  id: 'Attribute::LibOpt_SnapshotResult::CumNrIterations.Name' value: 'CumNrIterations'
  id: 'Attribute::LibOpt_SnapshotResult::Details.Description' value: 'An overview of the details of this `LibOpt_Snapshot`.'
  id: 'Attribute::LibOpt_SnapshotResult::Details.Name' value: 'Details'
  id: 'Attribute::LibOpt_SnapshotResult::ImgHasIssues.Description' value: 'Whether the snapshot has any issues associated to it'
  id: 'Attribute::LibOpt_SnapshotResult::ImgHasIssues.Name' value: 'ImgHasIssues'
  id: 'Attribute::LibOpt_SnapshotResult::MDS.Description' value: 'The MDSID on which this snapshot was created.'
  id: 'Attribute::LibOpt_SnapshotResult::MDS.Name' value: 'MDS'
  id: 'Attribute::LibOpt_SnapshotResult::NrIssues.Description' value: 'The number of `LibOpt_Issues` related to this `LibOpt_Snapshot`.'
  id: 'Attribute::LibOpt_SnapshotResult::NrIssues.Name' value: 'NrIssues'
  id: 'Attribute::LibOpt_SnapshotResult::PrecisionTimeStamp.Description' value: 'The time according to OS::PrecisionCounter() when this object was created.'
  id: 'Attribute::LibOpt_SnapshotResult::PrecisionTimeStamp.Name' value: 'PrecisionTimeStamp'
  id: 'Attribute::LibOpt_SnapshotResult::SequenceNr.Description' value: 'The sequence number of the `LibOpt_Snapshot`.'
  id: 'Attribute::LibOpt_SnapshotResult::SequenceNr.Name' value: 'SequenceNr'
  id: 'Attribute::LibOpt_SnapshotResult::Status.Name' value: 'Status'
  id: 'Attribute::LibOpt_SnapshotResult::TimeSince.Description' value: 'The duration since the start of the optimizer run.'
  id: 'Attribute::LibOpt_SnapshotResult::TimeSince.Name' value: 'TimeSince'
  id: 'Attribute::LibOpt_SnapshotResult::TimeStamp.Description' value: 'The date time this `LibOpt_Snapshot` was created.'
  id: 'Attribute::LibOpt_SnapshotResult::TimeStamp.Name' value: 'TimeStamp'
  id: 'Attribute::LibOpt_SnapshotResult::Type.Description' value: 'A way to distinguish between different types of `LibOpt_Snapshot`.'
  id: 'Attribute::LibOpt_SnapshotResult::Type.Name' value: 'Type'
  id: 'Attribute::LibOpt_SnapshotSelectorAnchor::AnchorIdentifier.Description' value: 'The identifier of the `LibOpt_ScopeElement` of the selected anchor.'
  id: 'Attribute::LibOpt_SnapshotSelectorAnchor::AnchorIdentifier.Name' value: 'AnchorIdentifier'
  id: 'Attribute::LibOpt_SnapshotSelectorAnchor::AnchorLastSelected.Description' value: 'The value of the `LibOpt_Anchor.LastSelected` attribute.'
  id: 'Attribute::LibOpt_SnapshotSelectorAnchor::AnchorLastSelected.Name' value: 'AnchorLastSelected'
  id: 'Attribute::LibOpt_SnapshotSelectorAnchor::AnchorNumberOfTimesSelected.Description' value: 'The value of the `LibOpt_Anchor.NumberOfTimesSelected` attribute.'
  id: 'Attribute::LibOpt_SnapshotSelectorAnchor::AnchorNumberOfTimesSelected.Name' value: 'AnchorNumberOfTimesSelected'
  id: 'Attribute::LibOpt_SnapshotSelectorAnchor::AnchorNumberOfTimesSelectedSinceUnplanned.Description' value: 'The value of the `LibOpt_Anchor.NumberOfTimesSelectedSinceUnplanned` attribute.'
  id: 'Attribute::LibOpt_SnapshotSelectorAnchor::AnchorNumberOfTimesSelectedSinceUnplanned.Name' value: 'AnchorNumberOfTimesSelectedSinceUnplanned'
  id: 'Attribute::LibOpt_SnapshotSelectorAnchor::ComputerName.Description' value: 'The name of the computer on which this snapshot was created.'
  id: 'Attribute::LibOpt_SnapshotSelectorAnchor::ComputerName.Name' value: 'ComputerName'
  id: 'Attribute::LibOpt_SnapshotSelectorAnchor::CumNrIterations.Name' value: 'CumNrIterations'
  id: 'Attribute::LibOpt_SnapshotSelectorAnchor::Details.Description' value: 'An overview of the details of this `LibOpt_Snapshot`.'
  id: 'Attribute::LibOpt_SnapshotSelectorAnchor::Details.Name' value: 'Details'
  id: 'Attribute::LibOpt_SnapshotSelectorAnchor::ImgHasIssues.Description' value: 'Whether the snapshot has any issues associated to it'
  id: 'Attribute::LibOpt_SnapshotSelectorAnchor::ImgHasIssues.Name' value: 'ImgHasIssues'
  id: 'Attribute::LibOpt_SnapshotSelectorAnchor::MDS.Description' value: 'The MDSID on which this snapshot was created.'
  id: 'Attribute::LibOpt_SnapshotSelectorAnchor::MDS.Name' value: 'MDS'
  id: 'Attribute::LibOpt_SnapshotSelectorAnchor::NrIssues.Description' value: 'The number of `LibOpt_Issues` related to this `LibOpt_Snapshot`.'
  id: 'Attribute::LibOpt_SnapshotSelectorAnchor::NrIssues.Name' value: 'NrIssues'
  id: 'Attribute::LibOpt_SnapshotSelectorAnchor::PrecisionTimeStamp.Description' value: 'The time according to OS::PrecisionCounter() when this object was created.'
  id: 'Attribute::LibOpt_SnapshotSelectorAnchor::PrecisionTimeStamp.Name' value: 'PrecisionTimeStamp'
  id: 'Attribute::LibOpt_SnapshotSelectorAnchor::SequenceNr.Description' value: 'The sequence number of the `LibOpt_Snapshot`.'
  id: 'Attribute::LibOpt_SnapshotSelectorAnchor::SequenceNr.Name' value: 'SequenceNr'
  id: 'Attribute::LibOpt_SnapshotSelectorAnchor::Status.Name' value: 'Status'
  id: 'Attribute::LibOpt_SnapshotSelectorAnchor::TimeSince.Description' value: 'The duration since the start of the optimizer run.'
  id: 'Attribute::LibOpt_SnapshotSelectorAnchor::TimeSince.Name' value: 'TimeSince'
  id: 'Attribute::LibOpt_SnapshotSelectorAnchor::TimeStamp.Description' value: 'The date time this `LibOpt_Snapshot` was created.'
  id: 'Attribute::LibOpt_SnapshotSelectorAnchor::TimeStamp.Name' value: 'TimeStamp'
  id: 'Attribute::LibOpt_SnapshotSelectorAnchor::Type.Description' value: 'A way to distinguish between different types of `LibOpt_Snapshot`.'
  id: 'Attribute::LibOpt_SnapshotSelectorAnchor::Type.Name' value: 'Type'
  id: 'Attribute::LibOpt_SnapshotSuboptimizer::ComputerName.Description' value: 'The name of the computer on which this snapshot was created.'
  id: 'Attribute::LibOpt_SnapshotSuboptimizer::ComputerName.Name' value: 'ComputerName'
  id: 'Attribute::LibOpt_SnapshotSuboptimizer::CumNrIterations.Name' value: 'CumNrIterations'
  id: 'Attribute::LibOpt_SnapshotSuboptimizer::CumulativeRollbacks.Description' value: 'The cumulative number of rollbacks for this `LibOpt_Suboptimizer` including this snapshot.'
  id: 'Attribute::LibOpt_SnapshotSuboptimizer::CumulativeRollbacks.Name' value: 'CumulativeRollbacks'
  id: 'Attribute::LibOpt_SnapshotSuboptimizer::Details.Description' value: 'An overview of the details of this `LibOpt_Snapshot`.'
  id: 'Attribute::LibOpt_SnapshotSuboptimizer::Details.Name' value: 'Details'
  id: 'Attribute::LibOpt_SnapshotSuboptimizer::ImgHasIssues.Description' value: 'Whether the snapshot has any issues associated to it'
  id: 'Attribute::LibOpt_SnapshotSuboptimizer::ImgHasIssues.Name' value: 'ImgHasIssues'
  id: 'Attribute::LibOpt_SnapshotSuboptimizer::Improvement.Description' value: 'The improvement in the `LibOpt_RollbackKPI`.'
  id: 'Attribute::LibOpt_SnapshotSuboptimizer::Improvement.Name' value: 'Improvement'
  id: 'Attribute::LibOpt_SnapshotSuboptimizer::IsImprovement.Description' value: 'Whether or not the solution improved because of this `LibOpt_Suboptimizer` run.'
  id: 'Attribute::LibOpt_SnapshotSuboptimizer::IsImprovement.Name' value: 'IsImprovement'
  id: 'Attribute::LibOpt_SnapshotSuboptimizer::IsRollback.Description' value: 'Whether this `LibOpt_Snapshot` represents a rollback.'
  id: 'Attribute::LibOpt_SnapshotSuboptimizer::IsRollback.Name' value: 'IsRollback'
  id: 'Attribute::LibOpt_SnapshotSuboptimizer::MDS.Description' value: 'The MDSID on which this snapshot was created.'
  id: 'Attribute::LibOpt_SnapshotSuboptimizer::MDS.Name' value: 'MDS'
  id: 'Attribute::LibOpt_SnapshotSuboptimizer::NrIssues.Description' value: 'The number of `LibOpt_Issues` related to this `LibOpt_Snapshot`.'
  id: 'Attribute::LibOpt_SnapshotSuboptimizer::NrIssues.Name' value: 'NrIssues'
  id: 'Attribute::LibOpt_SnapshotSuboptimizer::NrKPILevels.Description' value: 'The number of KPI levels on this `LibOpt_SnapshotSuboptimizer`.'
  id: 'Attribute::LibOpt_SnapshotSuboptimizer::NrKPILevels.Name' value: 'NrKPILevels'
  id: 'Attribute::LibOpt_SnapshotSuboptimizer::PrecisionTimeStamp.Description' value: 'The time according to OS::PrecisionCounter() when this object was created.'
  id: 'Attribute::LibOpt_SnapshotSuboptimizer::PrecisionTimeStamp.Name' value: 'PrecisionTimeStamp'
  id: 'Attribute::LibOpt_SnapshotSuboptimizer::SequenceNr.Description' value: 'The sequence number of the `LibOpt_Snapshot`.'
  id: 'Attribute::LibOpt_SnapshotSuboptimizer::SequenceNr.Name' value: 'SequenceNr'
  id: 'Attribute::LibOpt_SnapshotSuboptimizer::Status.Name' value: 'Status'
  id: 'Attribute::LibOpt_SnapshotSuboptimizer::TimeSince.Description' value: 'The duration since the start of the optimizer run.'
  id: 'Attribute::LibOpt_SnapshotSuboptimizer::TimeSince.Name' value: 'TimeSince'
  id: 'Attribute::LibOpt_SnapshotSuboptimizer::TimeStamp.Description' value: 'The date time this `LibOpt_Snapshot` was created.'
  id: 'Attribute::LibOpt_SnapshotSuboptimizer::TimeStamp.Name' value: 'TimeStamp'
  id: 'Attribute::LibOpt_SnapshotSuboptimizer::Type.Description' value: 'A way to distinguish between different types of `LibOpt_Snapshot`.'
  id: 'Attribute::LibOpt_SnapshotSuboptimizer::Type.Name' value: 'Type'
  id: 'Attribute::LibOpt_SnapshotSwitch::ComputerName.Description' value: 'The name of the computer on which this snapshot was created.'
  id: 'Attribute::LibOpt_SnapshotSwitch::ComputerName.Name' value: 'ComputerName'
  id: 'Attribute::LibOpt_SnapshotSwitch::CumNrIterations.Name' value: 'CumNrIterations'
  id: 'Attribute::LibOpt_SnapshotSwitch::Details.Description' value: 'An overview of the details of this `LibOpt_Snapshot`.'
  id: 'Attribute::LibOpt_SnapshotSwitch::Details.Name' value: 'Details'
  id: 'Attribute::LibOpt_SnapshotSwitch::ImgHasIssues.Description' value: 'Whether the snapshot has any issues associated to it'
  id: 'Attribute::LibOpt_SnapshotSwitch::ImgHasIssues.Name' value: 'ImgHasIssues'
  id: 'Attribute::LibOpt_SnapshotSwitch::MDS.Description' value: 'The MDSID on which this snapshot was created.'
  id: 'Attribute::LibOpt_SnapshotSwitch::MDS.Name' value: 'MDS'
  id: 'Attribute::LibOpt_SnapshotSwitch::NrIssues.Description' value: 'The number of `LibOpt_Issues` related to this `LibOpt_Snapshot`.'
  id: 'Attribute::LibOpt_SnapshotSwitch::NrIssues.Name' value: 'NrIssues'
  id: 'Attribute::LibOpt_SnapshotSwitch::PrecisionTimeStamp.Description' value: 'The time according to OS::PrecisionCounter() when this object was created.'
  id: 'Attribute::LibOpt_SnapshotSwitch::PrecisionTimeStamp.Name' value: 'PrecisionTimeStamp'
  id: 'Attribute::LibOpt_SnapshotSwitch::SequenceNr.Description' value: 'The sequence number of the `LibOpt_Snapshot`.'
  id: 'Attribute::LibOpt_SnapshotSwitch::SequenceNr.Name' value: 'SequenceNr'
  id: 'Attribute::LibOpt_SnapshotSwitch::Status.Name' value: 'Status'
  id: 'Attribute::LibOpt_SnapshotSwitch::TimeSince.Description' value: 'The duration since the start of the optimizer run.'
  id: 'Attribute::LibOpt_SnapshotSwitch::TimeSince.Name' value: 'TimeSince'
  id: 'Attribute::LibOpt_SnapshotSwitch::TimeStamp.Description' value: 'The date time this `LibOpt_Snapshot` was created.'
  id: 'Attribute::LibOpt_SnapshotSwitch::TimeStamp.Name' value: 'TimeStamp'
  id: 'Attribute::LibOpt_SnapshotSwitch::Type.Description' value: 'A way to distinguish between different types of `LibOpt_Snapshot`.'
  id: 'Attribute::LibOpt_SnapshotSwitch::Type.Name' value: 'Type'
  id: 'Attribute::LibOpt_SnapshotWarning::ComputerName.Description' value: 'The name of the computer on which this snapshot was created.'
  id: 'Attribute::LibOpt_SnapshotWarning::ComputerName.Name' value: 'ComputerName'
  id: 'Attribute::LibOpt_SnapshotWarning::CumNrIterations.Name' value: 'CumNrIterations'
  id: 'Attribute::LibOpt_SnapshotWarning::Description.Description' value: 'The log entry (the error, warning or debug information) that was sent.'
  id: 'Attribute::LibOpt_SnapshotWarning::Description.Name' value: 'Description'
  id: 'Attribute::LibOpt_SnapshotWarning::Details.Description' value: 'An overview of the details of this `LibOpt_Snapshot`.'
  id: 'Attribute::LibOpt_SnapshotWarning::Details.Name' value: 'Details'
  id: 'Attribute::LibOpt_SnapshotWarning::ImgHasIssues.Description' value: 'Whether the snapshot has any issues associated to it'
  id: 'Attribute::LibOpt_SnapshotWarning::ImgHasIssues.Name' value: 'ImgHasIssues'
  id: 'Attribute::LibOpt_SnapshotWarning::MDS.Description' value: 'The MDSID on which this snapshot was created.'
  id: 'Attribute::LibOpt_SnapshotWarning::MDS.Name' value: 'MDS'
  id: 'Attribute::LibOpt_SnapshotWarning::NrIssues.Description' value: 'The number of `LibOpt_Issues` related to this `LibOpt_Snapshot`.'
  id: 'Attribute::LibOpt_SnapshotWarning::NrIssues.Name' value: 'NrIssues'
  id: 'Attribute::LibOpt_SnapshotWarning::PossibleSolution.Description' value: 'A possible solution to the problem that occurred.'
  id: 'Attribute::LibOpt_SnapshotWarning::PossibleSolution.Name' value: 'PossibleSolution'
  id: 'Attribute::LibOpt_SnapshotWarning::PrecisionTimeStamp.Description' value: 'The time according to OS::PrecisionCounter() when this object was created.'
  id: 'Attribute::LibOpt_SnapshotWarning::PrecisionTimeStamp.Name' value: 'PrecisionTimeStamp'
  id: 'Attribute::LibOpt_SnapshotWarning::SequenceNr.Description' value: 'The sequence number of the `LibOpt_Snapshot`.'
  id: 'Attribute::LibOpt_SnapshotWarning::SequenceNr.Name' value: 'SequenceNr'
  id: 'Attribute::LibOpt_SnapshotWarning::Severity.Description' value: 'The severity of this warning. Its value is within the range of [1, 5], where 5 is the most severe.\n\nNOTE:\nUse one of the `LibOpt_Issue::Severity_*` static methods to set the value for this attribute.\nSubsequently, this attribute will be used to determine the `Severity` for a `LibOpt_Issue` of a `LibOpt_StatisticWarning`.'
  id: 'Attribute::LibOpt_SnapshotWarning::Severity.Name' value: 'Severity'
  id: 'Attribute::LibOpt_SnapshotWarning::Status.Name' value: 'Status'
  id: 'Attribute::LibOpt_SnapshotWarning::TimeSince.Description' value: 'The duration since the start of the optimizer run.'
  id: 'Attribute::LibOpt_SnapshotWarning::TimeSince.Name' value: 'TimeSince'
  id: 'Attribute::LibOpt_SnapshotWarning::TimeStamp.Description' value: 'The date time this `LibOpt_Snapshot` was created.'
  id: 'Attribute::LibOpt_SnapshotWarning::TimeStamp.Name' value: 'TimeStamp'
  id: 'Attribute::LibOpt_SnapshotWarning::Type.Description' value: 'A way to distinguish between different types of `LibOpt_Snapshot`.'
  id: 'Attribute::LibOpt_SnapshotWarning::Type.Name' value: 'Type'
  id: 'Attribute::LibOpt_Statistic::Description.Description' value: 'The description for this statistic.'
  id: 'Attribute::LibOpt_Statistic::Description.Name' value: 'Description'
  id: 'Attribute::LibOpt_Statistic::Focus.Description' value: 'A string that represents the object/aspect this statistic focuses on when collecting its values. It does not have to be unique as the relevant object/aspect could have multiple statistics.\n\nFor example, a `LibOpt_StatisticSuboptimizerMPInfeasible` statistic and a `LibOpt_StatisticSuboptimizerMPKappa` statistic can have the same `Focus` value of "MIP Subopt, Execution 2".\nThis means they both collect values about:\n- the `LibOpt_Component` (`LibOpt_SuboptimizerMP` in particular) with `LibOpt_SuboptimizerMP.Name` of "MIP Subopt", and\n- the 2nd MP execution of said MP suboptimizer.\n\nThe difference is that the former statistic focuses on infeasibility, while the latter statistic focuses on Kappa values.\nSee the `LibOpt_Statistic.Type` attribute for more details about this.'
  id: 'Attribute::LibOpt_Statistic::Focus.Name' value: 'Focus'
  id: 'Attribute::LibOpt_Statistic::ImgIssueType.Name' value: 'ImgIssueType'
  id: 'Attribute::LibOpt_Statistic::ImgValueType.Name' value: 'ImgValueType'
  id: 'Attribute::LibOpt_Statistic::LowerThreshold.Description' value: 'The lower threshold used to determine whether to create `LibOpt_Issues` for values collected by this statistic.'
  id: 'Attribute::LibOpt_Statistic::LowerThreshold.Name' value: 'LowerThreshold'
  id: 'Attribute::LibOpt_Statistic::MaxSeverityOfIssues.Description' value: 'The maximum `Severity` among the `LibOpt_Issues` created for this statistic.'
  id: 'Attribute::LibOpt_Statistic::MaxSeverityOfIssues.Name' value: 'MaxSeverityOfIssues'
  id: 'Attribute::LibOpt_Statistic::NrElements.Description' value: 'The number of elements (values / aspects / etc.) collected by this statistic.'
  id: 'Attribute::LibOpt_Statistic::NrElements.Name' value: 'NrElements'
  id: 'Attribute::LibOpt_Statistic::NrElementsWithIssue.Description' value: 'The number of elements (values / aspects / etc.) collected by this statistic which has a `LibOpt_Issue` created for it.'
  id: 'Attribute::LibOpt_Statistic::NrElementsWithIssue.Name' value: 'NrElementsWithIssue'
  id: 'Attribute::LibOpt_Statistic::NrIssuesNotSeen.Description' value: 'The number of `LibOpt_Issues` of this `LibOpt_Statistic` with `LibOpt_Issue.IsSeen` = `false`.\n\nNote:\nThe usage of `LibOpt_Issue.IsSeen` is subject to user\'s preference.\nSome may use it to mark an issue as "seen" in the literal sense, while some may choose to use it to mark an issue as "addressed".'
  id: 'Attribute::LibOpt_Statistic::NrIssuesNotSeen.Name' value: 'NrIssuesNotSeen'
  id: 'Attribute::LibOpt_Statistic::PercentageOfElementsWithIssue.Description' value: 'The percentage of elements (values / aspects / etc.) collected by this statistic which has a `LibOpt_Issue` created for it.'
  id: 'Attribute::LibOpt_Statistic::PercentageOfElementsWithIssue.Name' value: 'PercentageOfElementsWithIssue'
  id: 'Attribute::LibOpt_Statistic::Priority.Description' value: 'The maximum priority of all the `LibOpt_Issues` relevant to the statistic.'
  id: 'Attribute::LibOpt_Statistic::Priority.Name' value: 'Priority'
  id: 'Attribute::LibOpt_Statistic::PriorityName.Description' value: 'A string representing the priority.'
  id: 'Attribute::LibOpt_Statistic::PriorityName.Name' value: 'PriorityName'
  id: 'Attribute::LibOpt_Statistic::Severity.Description' value: 'The severity of the statistic.\n\nFor statistics that work on iterations:\nThis is the average of highest 5% of severities related to the elements in this statistic.\n\nFor example, if we have a statistic with 100 elements, and 10 issues with severities : 4.0, 3.8, 3.7, 3.5, 1.4, 1.3, 0.3, 0.3, 0.3, 0.1, the severity of the statistic will be\naverage( 4.0, 3.8, 3.7, 3.5, 1.4 ) = 3.3\n\nIf there are no 5 issues, we give elements without an issue a severity of 0.\nFor example if we have a statistic with 100 elements, and 2 issues with severities : 4.0, 3.8, the severity of the statistic will be\naverage( 4.0, 3.8, 0.0, 0.0, 0.0 ) = 1.6\n\nWe add the zeroes so a statistic with 1 highly severe issue will not outrank a statistic with many medium-high severe issues.\nThe latter will probably cause more damage to the performance/quality of the optimizer, as it happens more often.\n\nFor statistics that work on scope elements:\nThis is the highest severity of its related issues.\n\nThe reason for this distinction is that it is OK to have a bad iteration, but a single bad scope element may ruin your entire plan.'
  id: 'Attribute::LibOpt_Statistic::Severity.Name' value: 'Severity'
  id: 'Attribute::LibOpt_Statistic::Type.Description' value: 'A short description for the type of this `LibOpt_Statistic`.'
  id: 'Attribute::LibOpt_Statistic::Type.Name' value: 'Type'
  id: 'Attribute::LibOpt_Statistic::UOM.Description' value: 'The unit of measurement for the values collected by this statistic.'
  id: 'Attribute::LibOpt_Statistic::UOM.Name' value: 'UOM'
  id: 'Attribute::LibOpt_Statistic::UpperThreshold.Description' value: 'The upper threshold used to determine whether to create `LibOpt_Issues` for values collected by this statistic.'
  id: 'Attribute::LibOpt_Statistic::UpperThreshold.Name' value: 'UpperThreshold'
  id: 'Attribute::LibOpt_Statistic::ValueType.Description' value: 'The type of values collected by this statistic.'
  id: 'Attribute::LibOpt_Statistic::ValueType.Name' value: 'ValueType'
  id: 'Attribute::LibOpt_Statistic::ValuesAsRealVector.Description' value: 'The `RealVector` of values collected by this statistic, stored in the form of a `BinaryValue`.'
  id: 'Attribute::LibOpt_Statistic::ValuesAsRealVector.Name' value: 'ValuesAsRealVector'
  id: 'Attribute::LibOpt_StatisticError::Description.Description' value: 'The description for this statistic.'
  id: 'Attribute::LibOpt_StatisticError::Description.Name' value: 'Description'
  id: 'Attribute::LibOpt_StatisticError::Focus.Description' value: 'A string that represents the object/aspect this statistic focuses on when collecting its values. It does not have to be unique as the relevant object/aspect could have multiple statistics.\n\nFor example, a `LibOpt_StatisticSuboptimizerMPInfeasible` statistic and a `LibOpt_StatisticSuboptimizerMPKappa` statistic can have the same `Focus` value of "MIP Subopt, Execution 2".\nThis means they both collect values about:\n- the `LibOpt_Component` (`LibOpt_SuboptimizerMP` in particular) with `LibOpt_SuboptimizerMP.Name` of "MIP Subopt", and\n- the 2nd MP execution of said MP suboptimizer.\n\nThe difference is that the former statistic focuses on infeasibility, while the latter statistic focuses on Kappa values.\nSee the `LibOpt_Statistic.Type` attribute for more details about this.'
  id: 'Attribute::LibOpt_StatisticError::Focus.Name' value: 'Focus'
  id: 'Attribute::LibOpt_StatisticError::ImgIssueType.Name' value: 'ImgIssueType'
  id: 'Attribute::LibOpt_StatisticError::ImgValueType.Name' value: 'ImgValueType'
  id: 'Attribute::LibOpt_StatisticError::LogEntryDetails.Description' value: 'A helper attribute that shows the common `LibOpt_SnapshotLogEntry.Details` message of the `LibOpt_SnapshotLogEntrys` that is grouped under this `LibOpt_StatisticLogEntry`.'
  id: 'Attribute::LibOpt_StatisticError::LogEntryDetails.Name' value: 'LogEntryDetails'
  id: 'Attribute::LibOpt_StatisticError::LowerThreshold.Description' value: 'The lower threshold used to determine whether to create `LibOpt_Issues` for values collected by this statistic.'
  id: 'Attribute::LibOpt_StatisticError::LowerThreshold.Name' value: 'LowerThreshold'
  id: 'Attribute::LibOpt_StatisticError::MaxSeverityOfIssues.Description' value: 'The maximum `Severity` among the `LibOpt_Issues` created for this statistic.'
  id: 'Attribute::LibOpt_StatisticError::MaxSeverityOfIssues.Name' value: 'MaxSeverityOfIssues'
  id: 'Attribute::LibOpt_StatisticError::NrElements.Description' value: 'The number of elements (values / aspects / etc.) collected by this statistic.'
  id: 'Attribute::LibOpt_StatisticError::NrElements.Name' value: 'NrElements'
  id: 'Attribute::LibOpt_StatisticError::NrElementsWithIssue.Description' value: 'The number of elements (values / aspects / etc.) collected by this statistic which has a `LibOpt_Issue` created for it.'
  id: 'Attribute::LibOpt_StatisticError::NrElementsWithIssue.Name' value: 'NrElementsWithIssue'
  id: 'Attribute::LibOpt_StatisticError::NrIssuesNotSeen.Description' value: 'The number of `LibOpt_Issues` of this `LibOpt_Statistic` with `LibOpt_Issue.IsSeen` = `false`.\n\nNote:\nThe usage of `LibOpt_Issue.IsSeen` is subject to user\'s preference.\nSome may use it to mark an issue as "seen" in the literal sense, while some may choose to use it to mark an issue as "addressed".'
  id: 'Attribute::LibOpt_StatisticError::NrIssuesNotSeen.Name' value: 'NrIssuesNotSeen'
  id: 'Attribute::LibOpt_StatisticError::PercentageOfElementsWithIssue.Description' value: 'The percentage of elements (values / aspects / etc.) collected by this statistic which has a `LibOpt_Issue` created for it.'
  id: 'Attribute::LibOpt_StatisticError::PercentageOfElementsWithIssue.Name' value: 'PercentageOfElementsWithIssue'
  id: 'Attribute::LibOpt_StatisticError::Priority.Description' value: 'The maximum priority of all the `LibOpt_Issues` relevant to the statistic.'
  id: 'Attribute::LibOpt_StatisticError::Priority.Name' value: 'Priority'
  id: 'Attribute::LibOpt_StatisticError::PriorityName.Description' value: 'A string representing the priority.'
  id: 'Attribute::LibOpt_StatisticError::PriorityName.Name' value: 'PriorityName'
  id: 'Attribute::LibOpt_StatisticError::Severity.Description' value: 'The severity of the statistic.\n\nFor statistics that work on iterations:\nThis is the average of highest 5% of severities related to the elements in this statistic.\n\nFor example, if we have a statistic with 100 elements, and 10 issues with severities : 4.0, 3.8, 3.7, 3.5, 1.4, 1.3, 0.3, 0.3, 0.3, 0.1, the severity of the statistic will be\naverage( 4.0, 3.8, 3.7, 3.5, 1.4 ) = 3.3\n\nIf there are no 5 issues, we give elements without an issue a severity of 0.\nFor example if we have a statistic with 100 elements, and 2 issues with severities : 4.0, 3.8, the severity of the statistic will be\naverage( 4.0, 3.8, 0.0, 0.0, 0.0 ) = 1.6\n\nWe add the zeroes so a statistic with 1 highly severe issue will not outrank a statistic with many medium-high severe issues.\nThe latter will probably cause more damage to the performance/quality of the optimizer, as it happens more often.\n\nFor statistics that work on scope elements:\nThis is the highest severity of its related issues.\n\nThe reason for this distinction is that it is OK to have a bad iteration, but a single bad scope element may ruin your entire plan.'
  id: 'Attribute::LibOpt_StatisticError::Severity.Name' value: 'Severity'
  id: 'Attribute::LibOpt_StatisticError::Type.Description' value: 'A short description for the type of this `LibOpt_Statistic`.'
  id: 'Attribute::LibOpt_StatisticError::Type.Name' value: 'Type'
  id: 'Attribute::LibOpt_StatisticError::UOM.Description' value: 'The unit of measurement for the values collected by this statistic.'
  id: 'Attribute::LibOpt_StatisticError::UOM.Name' value: 'UOM'
  id: 'Attribute::LibOpt_StatisticError::UpperThreshold.Description' value: 'The upper threshold used to determine whether to create `LibOpt_Issues` for values collected by this statistic.'
  id: 'Attribute::LibOpt_StatisticError::UpperThreshold.Name' value: 'UpperThreshold'
  id: 'Attribute::LibOpt_StatisticError::ValueType.Description' value: 'The type of values collected by this statistic.'
  id: 'Attribute::LibOpt_StatisticError::ValueType.Name' value: 'ValueType'
  id: 'Attribute::LibOpt_StatisticError::ValuesAsRealVector.Description' value: 'The `RealVector` of values collected by this statistic, stored in the form of a `BinaryValue`.'
  id: 'Attribute::LibOpt_StatisticError::ValuesAsRealVector.Name' value: 'ValuesAsRealVector'
  id: 'Attribute::LibOpt_StatisticLogEntry::Description.Description' value: 'The description for this statistic.'
  id: 'Attribute::LibOpt_StatisticLogEntry::Description.Name' value: 'Description'
  id: 'Attribute::LibOpt_StatisticLogEntry::Focus.Description' value: 'A string that represents the object/aspect this statistic focuses on when collecting its values. It does not have to be unique as the relevant object/aspect could have multiple statistics.\n\nFor example, a `LibOpt_StatisticSuboptimizerMPInfeasible` statistic and a `LibOpt_StatisticSuboptimizerMPKappa` statistic can have the same `Focus` value of "MIP Subopt, Execution 2".\nThis means they both collect values about:\n- the `LibOpt_Component` (`LibOpt_SuboptimizerMP` in particular) with `LibOpt_SuboptimizerMP.Name` of "MIP Subopt", and\n- the 2nd MP execution of said MP suboptimizer.\n\nThe difference is that the former statistic focuses on infeasibility, while the latter statistic focuses on Kappa values.\nSee the `LibOpt_Statistic.Type` attribute for more details about this.'
  id: 'Attribute::LibOpt_StatisticLogEntry::Focus.Name' value: 'Focus'
  id: 'Attribute::LibOpt_StatisticLogEntry::ImgIssueType.Name' value: 'ImgIssueType'
  id: 'Attribute::LibOpt_StatisticLogEntry::ImgValueType.Name' value: 'ImgValueType'
  id: 'Attribute::LibOpt_StatisticLogEntry::LogEntryDetails.Description' value: 'A helper attribute that shows the common `LibOpt_SnapshotLogEntry.Details` message of the `LibOpt_SnapshotLogEntrys` that is grouped under this `LibOpt_StatisticLogEntry`.'
  id: 'Attribute::LibOpt_StatisticLogEntry::LogEntryDetails.Name' value: 'LogEntryDetails'
  id: 'Attribute::LibOpt_StatisticLogEntry::LowerThreshold.Description' value: 'The lower threshold used to determine whether to create `LibOpt_Issues` for values collected by this statistic.'
  id: 'Attribute::LibOpt_StatisticLogEntry::LowerThreshold.Name' value: 'LowerThreshold'
  id: 'Attribute::LibOpt_StatisticLogEntry::MaxSeverityOfIssues.Description' value: 'The maximum `Severity` among the `LibOpt_Issues` created for this statistic.'
  id: 'Attribute::LibOpt_StatisticLogEntry::MaxSeverityOfIssues.Name' value: 'MaxSeverityOfIssues'
  id: 'Attribute::LibOpt_StatisticLogEntry::NrElements.Description' value: 'The number of elements (values / aspects / etc.) collected by this statistic.'
  id: 'Attribute::LibOpt_StatisticLogEntry::NrElements.Name' value: 'NrElements'
  id: 'Attribute::LibOpt_StatisticLogEntry::NrElementsWithIssue.Description' value: 'The number of elements (values / aspects / etc.) collected by this statistic which has a `LibOpt_Issue` created for it.'
  id: 'Attribute::LibOpt_StatisticLogEntry::NrElementsWithIssue.Name' value: 'NrElementsWithIssue'
  id: 'Attribute::LibOpt_StatisticLogEntry::NrIssuesNotSeen.Description' value: 'The number of `LibOpt_Issues` of this `LibOpt_Statistic` with `LibOpt_Issue.IsSeen` = `false`.\n\nNote:\nThe usage of `LibOpt_Issue.IsSeen` is subject to user\'s preference.\nSome may use it to mark an issue as "seen" in the literal sense, while some may choose to use it to mark an issue as "addressed".'
  id: 'Attribute::LibOpt_StatisticLogEntry::NrIssuesNotSeen.Name' value: 'NrIssuesNotSeen'
  id: 'Attribute::LibOpt_StatisticLogEntry::PercentageOfElementsWithIssue.Description' value: 'The percentage of elements (values / aspects / etc.) collected by this statistic which has a `LibOpt_Issue` created for it.'
  id: 'Attribute::LibOpt_StatisticLogEntry::PercentageOfElementsWithIssue.Name' value: 'PercentageOfElementsWithIssue'
  id: 'Attribute::LibOpt_StatisticLogEntry::Priority.Description' value: 'The maximum priority of all the `LibOpt_Issues` relevant to the statistic.'
  id: 'Attribute::LibOpt_StatisticLogEntry::Priority.Name' value: 'Priority'
  id: 'Attribute::LibOpt_StatisticLogEntry::PriorityName.Description' value: 'A string representing the priority.'
  id: 'Attribute::LibOpt_StatisticLogEntry::PriorityName.Name' value: 'PriorityName'
  id: 'Attribute::LibOpt_StatisticLogEntry::Severity.Description' value: 'The severity of the statistic.\n\nFor statistics that work on iterations:\nThis is the average of highest 5% of severities related to the elements in this statistic.\n\nFor example, if we have a statistic with 100 elements, and 10 issues with severities : 4.0, 3.8, 3.7, 3.5, 1.4, 1.3, 0.3, 0.3, 0.3, 0.1, the severity of the statistic will be\naverage( 4.0, 3.8, 3.7, 3.5, 1.4 ) = 3.3\n\nIf there are no 5 issues, we give elements without an issue a severity of 0.\nFor example if we have a statistic with 100 elements, and 2 issues with severities : 4.0, 3.8, the severity of the statistic will be\naverage( 4.0, 3.8, 0.0, 0.0, 0.0 ) = 1.6\n\nWe add the zeroes so a statistic with 1 highly severe issue will not outrank a statistic with many medium-high severe issues.\nThe latter will probably cause more damage to the performance/quality of the optimizer, as it happens more often.\n\nFor statistics that work on scope elements:\nThis is the highest severity of its related issues.\n\nThe reason for this distinction is that it is OK to have a bad iteration, but a single bad scope element may ruin your entire plan.'
  id: 'Attribute::LibOpt_StatisticLogEntry::Severity.Name' value: 'Severity'
  id: 'Attribute::LibOpt_StatisticLogEntry::Type.Description' value: 'A short description for the type of this `LibOpt_Statistic`.'
  id: 'Attribute::LibOpt_StatisticLogEntry::Type.Name' value: 'Type'
  id: 'Attribute::LibOpt_StatisticLogEntry::UOM.Description' value: 'The unit of measurement for the values collected by this statistic.'
  id: 'Attribute::LibOpt_StatisticLogEntry::UOM.Name' value: 'UOM'
  id: 'Attribute::LibOpt_StatisticLogEntry::UpperThreshold.Description' value: 'The upper threshold used to determine whether to create `LibOpt_Issues` for values collected by this statistic.'
  id: 'Attribute::LibOpt_StatisticLogEntry::UpperThreshold.Name' value: 'UpperThreshold'
  id: 'Attribute::LibOpt_StatisticLogEntry::ValueType.Description' value: 'The type of values collected by this statistic.'
  id: 'Attribute::LibOpt_StatisticLogEntry::ValueType.Name' value: 'ValueType'
  id: 'Attribute::LibOpt_StatisticLogEntry::ValuesAsRealVector.Description' value: 'The `RealVector` of values collected by this statistic, stored in the form of a `BinaryValue`.'
  id: 'Attribute::LibOpt_StatisticLogEntry::ValuesAsRealVector.Name' value: 'ValuesAsRealVector'
  id: 'Attribute::LibOpt_StatisticScopeElement::Description.Description' value: 'The description for this statistic.'
  id: 'Attribute::LibOpt_StatisticScopeElement::Description.Name' value: 'Description'
  id: 'Attribute::LibOpt_StatisticScopeElement::Focus.Description' value: 'A string that represents the object/aspect this statistic focuses on when collecting its values. It does not have to be unique as the relevant object/aspect could have multiple statistics.\n\nFor example, a `LibOpt_StatisticSuboptimizerMPInfeasible` statistic and a `LibOpt_StatisticSuboptimizerMPKappa` statistic can have the same `Focus` value of "MIP Subopt, Execution 2".\nThis means they both collect values about:\n- the `LibOpt_Component` (`LibOpt_SuboptimizerMP` in particular) with `LibOpt_SuboptimizerMP.Name` of "MIP Subopt", and\n- the 2nd MP execution of said MP suboptimizer.\n\nThe difference is that the former statistic focuses on infeasibility, while the latter statistic focuses on Kappa values.\nSee the `LibOpt_Statistic.Type` attribute for more details about this.'
  id: 'Attribute::LibOpt_StatisticScopeElement::Focus.Name' value: 'Focus'
  id: 'Attribute::LibOpt_StatisticScopeElement::HasData.Description' value: 'Whether this `LibOpt_StatisticScopeElement` has data.'
  id: 'Attribute::LibOpt_StatisticScopeElement::HasData.Name' value: 'HasData'
  id: 'Attribute::LibOpt_StatisticScopeElement::ImgIssueType.Name' value: 'ImgIssueType'
  id: 'Attribute::LibOpt_StatisticScopeElement::ImgValueType.Name' value: 'ImgValueType'
  id: 'Attribute::LibOpt_StatisticScopeElement::IsStandardDeviationValid.Description' value: 'Whether the `LibOpt_StatisticSummary.StandardDeviation` among values collected by this `LibOpt_StatisticScopeElement` is within a reasonable range.\n\nThe `UpperThreshold` and/or `LowerThreshold` of a `LibOpt_StatisticScopeElement` are derived using the "outlier" approach.\nWhen the `LibOpt_StatisticSummary.StandardDeviation` is too large (indicating that the spread of the data points is large), it follows that the `LibOpt_StatisticSummary.IQR` is large too, which makes the "outlier" thresholds too large/small.\nAs a result, none of the values collected by this statistic would actually violate the "outlier" thresholds, and no `LibOpt_Issues` will be created..\nThe absence of issues gives a false impression that the aspect that this `LibOpt_StatisticScopeElement` focuses on does not require further attention.\nThus, if this constraint is fired for your statistic, then it might be worth to look into the values of this `LibOpt_StatisticScopeElement` even though no issues were created.'
  id: 'Attribute::LibOpt_StatisticScopeElement::IsStandardDeviationValid.Name' value: 'IsStandardDeviationValid'
  id: 'Attribute::LibOpt_StatisticScopeElement::LowerThreshold.Description' value: 'The lower threshold used to determine whether to create `LibOpt_Issues` for values collected by this statistic.'
  id: 'Attribute::LibOpt_StatisticScopeElement::LowerThreshold.Name' value: 'LowerThreshold'
  id: 'Attribute::LibOpt_StatisticScopeElement::MaxSeverityOfIssues.Description' value: 'The maximum `Severity` among the `LibOpt_Issues` created for this statistic.'
  id: 'Attribute::LibOpt_StatisticScopeElement::MaxSeverityOfIssues.Name' value: 'MaxSeverityOfIssues'
  id: 'Attribute::LibOpt_StatisticScopeElement::NrElements.Description' value: 'The number of elements (values / aspects / etc.) collected by this statistic.'
  id: 'Attribute::LibOpt_StatisticScopeElement::NrElements.Name' value: 'NrElements'
  id: 'Attribute::LibOpt_StatisticScopeElement::NrElementsWithIssue.Description' value: 'The number of elements (values / aspects / etc.) collected by this statistic which has a `LibOpt_Issue` created for it.'
  id: 'Attribute::LibOpt_StatisticScopeElement::NrElementsWithIssue.Name' value: 'NrElementsWithIssue'
  id: 'Attribute::LibOpt_StatisticScopeElement::NrIssuesNotSeen.Description' value: 'The number of `LibOpt_Issues` of this `LibOpt_Statistic` with `LibOpt_Issue.IsSeen` = `false`.\n\nNote:\nThe usage of `LibOpt_Issue.IsSeen` is subject to user\'s preference.\nSome may use it to mark an issue as "seen" in the literal sense, while some may choose to use it to mark an issue as "addressed".'
  id: 'Attribute::LibOpt_StatisticScopeElement::NrIssuesNotSeen.Name' value: 'NrIssuesNotSeen'
  id: 'Attribute::LibOpt_StatisticScopeElement::PercentageOfElementsWithIssue.Description' value: 'The percentage of elements (values / aspects / etc.) collected by this statistic which has a `LibOpt_Issue` created for it.'
  id: 'Attribute::LibOpt_StatisticScopeElement::PercentageOfElementsWithIssue.Name' value: 'PercentageOfElementsWithIssue'
  id: 'Attribute::LibOpt_StatisticScopeElement::Priority.Description' value: 'The maximum priority of all the `LibOpt_Issues` relevant to the statistic.'
  id: 'Attribute::LibOpt_StatisticScopeElement::Priority.Name' value: 'Priority'
  id: 'Attribute::LibOpt_StatisticScopeElement::PriorityName.Description' value: 'A string representing the priority.'
  id: 'Attribute::LibOpt_StatisticScopeElement::PriorityName.Name' value: 'PriorityName'
  id: 'Attribute::LibOpt_StatisticScopeElement::Severity.Description' value: 'The severity of the statistic.\n\nFor statistics that work on iterations:\nThis is the average of highest 5% of severities related to the elements in this statistic.\n\nFor example, if we have a statistic with 100 elements, and 10 issues with severities : 4.0, 3.8, 3.7, 3.5, 1.4, 1.3, 0.3, 0.3, 0.3, 0.1, the severity of the statistic will be\naverage( 4.0, 3.8, 3.7, 3.5, 1.4 ) = 3.3\n\nIf there are no 5 issues, we give elements without an issue a severity of 0.\nFor example if we have a statistic with 100 elements, and 2 issues with severities : 4.0, 3.8, the severity of the statistic will be\naverage( 4.0, 3.8, 0.0, 0.0, 0.0 ) = 1.6\n\nWe add the zeroes so a statistic with 1 highly severe issue will not outrank a statistic with many medium-high severe issues.\nThe latter will probably cause more damage to the performance/quality of the optimizer, as it happens more often.\n\nFor statistics that work on scope elements:\nThis is the highest severity of its related issues.\n\nThe reason for this distinction is that it is OK to have a bad iteration, but a single bad scope element may ruin your entire plan.'
  id: 'Attribute::LibOpt_StatisticScopeElement::Severity.Name' value: 'Severity'
  id: 'Attribute::LibOpt_StatisticScopeElement::Type.Description' value: 'A short description for the type of this `LibOpt_Statistic`.'
  id: 'Attribute::LibOpt_StatisticScopeElement::Type.Name' value: 'Type'
  id: 'Attribute::LibOpt_StatisticScopeElement::UOM.Description' value: 'The unit of measurement for the values collected by this statistic.'
  id: 'Attribute::LibOpt_StatisticScopeElement::UOM.Name' value: 'UOM'
  id: 'Attribute::LibOpt_StatisticScopeElement::UpperThreshold.Description' value: 'The upper threshold used to determine whether to create `LibOpt_Issues` for values collected by this statistic.'
  id: 'Attribute::LibOpt_StatisticScopeElement::UpperThreshold.Name' value: 'UpperThreshold'
  id: 'Attribute::LibOpt_StatisticScopeElement::ValueType.Description' value: 'The type of values collected by this statistic.'
  id: 'Attribute::LibOpt_StatisticScopeElement::ValueType.Name' value: 'ValueType'
  id: 'Attribute::LibOpt_StatisticScopeElement::ValuesAsRealVector.Description' value: 'The `RealVector` of values collected by this statistic, stored in the form of a `BinaryValue`.'
  id: 'Attribute::LibOpt_StatisticScopeElement::ValuesAsRealVector.Name' value: 'ValuesAsRealVector'
  id: 'Attribute::LibOpt_StatisticScopeElementInput::Description.Description' value: 'The description for this statistic.'
  id: 'Attribute::LibOpt_StatisticScopeElementInput::Description.Name' value: 'Description'
  id: 'Attribute::LibOpt_StatisticScopeElementInput::Focus.Description' value: 'A string that represents the object/aspect this statistic focuses on when collecting its values. It does not have to be unique as the relevant object/aspect could have multiple statistics.\n\nFor example, a `LibOpt_StatisticSuboptimizerMPInfeasible` statistic and a `LibOpt_StatisticSuboptimizerMPKappa` statistic can have the same `Focus` value of "MIP Subopt, Execution 2".\nThis means they both collect values about:\n- the `LibOpt_Component` (`LibOpt_SuboptimizerMP` in particular) with `LibOpt_SuboptimizerMP.Name` of "MIP Subopt", and\n- the 2nd MP execution of said MP suboptimizer.\n\nThe difference is that the former statistic focuses on infeasibility, while the latter statistic focuses on Kappa values.\nSee the `LibOpt_Statistic.Type` attribute for more details about this.'
  id: 'Attribute::LibOpt_StatisticScopeElementInput::Focus.Name' value: 'Focus'
  id: 'Attribute::LibOpt_StatisticScopeElementInput::HasData.Description' value: 'Whether this `LibOpt_StatisticScopeElement` has data.'
  id: 'Attribute::LibOpt_StatisticScopeElementInput::HasData.Name' value: 'HasData'
  id: 'Attribute::LibOpt_StatisticScopeElementInput::ImgIssueType.Name' value: 'ImgIssueType'
  id: 'Attribute::LibOpt_StatisticScopeElementInput::ImgValueType.Name' value: 'ImgValueType'
  id: 'Attribute::LibOpt_StatisticScopeElementInput::IsStandardDeviationValid.Description' value: 'Whether the `LibOpt_StatisticSummary.StandardDeviation` among values collected by this `LibOpt_StatisticScopeElement` is within a reasonable range.\n\nThe `UpperThreshold` and/or `LowerThreshold` of a `LibOpt_StatisticScopeElement` are derived using the "outlier" approach.\nWhen the `LibOpt_StatisticSummary.StandardDeviation` is too large (indicating that the spread of the data points is large), it follows that the `LibOpt_StatisticSummary.IQR` is large too, which makes the "outlier" thresholds too large/small.\nAs a result, none of the values collected by this statistic would actually violate the "outlier" thresholds, and no `LibOpt_Issues` will be created..\nThe absence of issues gives a false impression that the aspect that this `LibOpt_StatisticScopeElement` focuses on does not require further attention.\nThus, if this constraint is fired for your statistic, then it might be worth to look into the values of this `LibOpt_StatisticScopeElement` even though no issues were created.'
  id: 'Attribute::LibOpt_StatisticScopeElementInput::IsStandardDeviationValid.Name' value: 'IsStandardDeviationValid'
  id: 'Attribute::LibOpt_StatisticScopeElementInput::LowerThreshold.Description' value: 'The lower threshold used to determine whether to create `LibOpt_Issues` for values collected by this statistic.'
  id: 'Attribute::LibOpt_StatisticScopeElementInput::LowerThreshold.Name' value: 'LowerThreshold'
  id: 'Attribute::LibOpt_StatisticScopeElementInput::MaxSeverityOfIssues.Description' value: 'The maximum `Severity` among the `LibOpt_Issues` created for this statistic.'
  id: 'Attribute::LibOpt_StatisticScopeElementInput::MaxSeverityOfIssues.Name' value: 'MaxSeverityOfIssues'
  id: 'Attribute::LibOpt_StatisticScopeElementInput::NrElements.Description' value: 'The number of elements (values / aspects / etc.) collected by this statistic.'
  id: 'Attribute::LibOpt_StatisticScopeElementInput::NrElements.Name' value: 'NrElements'
  id: 'Attribute::LibOpt_StatisticScopeElementInput::NrElementsWithIssue.Description' value: 'The number of elements (values / aspects / etc.) collected by this statistic which has a `LibOpt_Issue` created for it.'
  id: 'Attribute::LibOpt_StatisticScopeElementInput::NrElementsWithIssue.Name' value: 'NrElementsWithIssue'
  id: 'Attribute::LibOpt_StatisticScopeElementInput::NrIssuesNotSeen.Description' value: 'The number of `LibOpt_Issues` of this `LibOpt_Statistic` with `LibOpt_Issue.IsSeen` = `false`.\n\nNote:\nThe usage of `LibOpt_Issue.IsSeen` is subject to user\'s preference.\nSome may use it to mark an issue as "seen" in the literal sense, while some may choose to use it to mark an issue as "addressed".'
  id: 'Attribute::LibOpt_StatisticScopeElementInput::NrIssuesNotSeen.Name' value: 'NrIssuesNotSeen'
  id: 'Attribute::LibOpt_StatisticScopeElementInput::PercentageOfElementsWithIssue.Description' value: 'The percentage of elements (values / aspects / etc.) collected by this statistic which has a `LibOpt_Issue` created for it.'
  id: 'Attribute::LibOpt_StatisticScopeElementInput::PercentageOfElementsWithIssue.Name' value: 'PercentageOfElementsWithIssue'
  id: 'Attribute::LibOpt_StatisticScopeElementInput::Priority.Description' value: 'The maximum priority of all the `LibOpt_Issues` relevant to the statistic.'
  id: 'Attribute::LibOpt_StatisticScopeElementInput::Priority.Name' value: 'Priority'
  id: 'Attribute::LibOpt_StatisticScopeElementInput::PriorityName.Description' value: 'A string representing the priority.'
  id: 'Attribute::LibOpt_StatisticScopeElementInput::PriorityName.Name' value: 'PriorityName'
  id: 'Attribute::LibOpt_StatisticScopeElementInput::Severity.Description' value: 'The severity of the statistic.\n\nFor statistics that work on iterations:\nThis is the average of highest 5% of severities related to the elements in this statistic.\n\nFor example, if we have a statistic with 100 elements, and 10 issues with severities : 4.0, 3.8, 3.7, 3.5, 1.4, 1.3, 0.3, 0.3, 0.3, 0.1, the severity of the statistic will be\naverage( 4.0, 3.8, 3.7, 3.5, 1.4 ) = 3.3\n\nIf there are no 5 issues, we give elements without an issue a severity of 0.\nFor example if we have a statistic with 100 elements, and 2 issues with severities : 4.0, 3.8, the severity of the statistic will be\naverage( 4.0, 3.8, 0.0, 0.0, 0.0 ) = 1.6\n\nWe add the zeroes so a statistic with 1 highly severe issue will not outrank a statistic with many medium-high severe issues.\nThe latter will probably cause more damage to the performance/quality of the optimizer, as it happens more often.\n\nFor statistics that work on scope elements:\nThis is the highest severity of its related issues.\n\nThe reason for this distinction is that it is OK to have a bad iteration, but a single bad scope element may ruin your entire plan.'
  id: 'Attribute::LibOpt_StatisticScopeElementInput::Severity.Name' value: 'Severity'
  id: 'Attribute::LibOpt_StatisticScopeElementInput::Type.Description' value: 'A short description for the type of this `LibOpt_Statistic`.'
  id: 'Attribute::LibOpt_StatisticScopeElementInput::Type.Name' value: 'Type'
  id: 'Attribute::LibOpt_StatisticScopeElementInput::UOM.Description' value: 'The unit of measurement for the values collected by this statistic.'
  id: 'Attribute::LibOpt_StatisticScopeElementInput::UOM.Name' value: 'UOM'
  id: 'Attribute::LibOpt_StatisticScopeElementInput::UpperThreshold.Description' value: 'The upper threshold used to determine whether to create `LibOpt_Issues` for values collected by this statistic.'
  id: 'Attribute::LibOpt_StatisticScopeElementInput::UpperThreshold.Name' value: 'UpperThreshold'
  id: 'Attribute::LibOpt_StatisticScopeElementInput::ValueType.Description' value: 'The type of values collected by this statistic.'
  id: 'Attribute::LibOpt_StatisticScopeElementInput::ValueType.Name' value: 'ValueType'
  id: 'Attribute::LibOpt_StatisticScopeElementInput::ValuesAsRealVector.Description' value: 'The `RealVector` of values collected by this statistic, stored in the form of a `BinaryValue`.'
  id: 'Attribute::LibOpt_StatisticScopeElementInput::ValuesAsRealVector.Name' value: 'ValuesAsRealVector'
  id: 'Attribute::LibOpt_StatisticScopeElementNoImprovement::Description.Description' value: 'The description for this statistic.'
  id: 'Attribute::LibOpt_StatisticScopeElementNoImprovement::Description.Name' value: 'Description'
  id: 'Attribute::LibOpt_StatisticScopeElementNoImprovement::Focus.Description' value: 'A string that represents the object/aspect this statistic focuses on when collecting its values. It does not have to be unique as the relevant object/aspect could have multiple statistics.\n\nFor example, a `LibOpt_StatisticSuboptimizerMPInfeasible` statistic and a `LibOpt_StatisticSuboptimizerMPKappa` statistic can have the same `Focus` value of "MIP Subopt, Execution 2".\nThis means they both collect values about:\n- the `LibOpt_Component` (`LibOpt_SuboptimizerMP` in particular) with `LibOpt_SuboptimizerMP.Name` of "MIP Subopt", and\n- the 2nd MP execution of said MP suboptimizer.\n\nThe difference is that the former statistic focuses on infeasibility, while the latter statistic focuses on Kappa values.\nSee the `LibOpt_Statistic.Type` attribute for more details about this.'
  id: 'Attribute::LibOpt_StatisticScopeElementNoImprovement::Focus.Name' value: 'Focus'
  id: 'Attribute::LibOpt_StatisticScopeElementNoImprovement::HasData.Description' value: 'Whether this `LibOpt_StatisticScopeElement` has data.'
  id: 'Attribute::LibOpt_StatisticScopeElementNoImprovement::HasData.Name' value: 'HasData'
  id: 'Attribute::LibOpt_StatisticScopeElementNoImprovement::ImgIssueType.Name' value: 'ImgIssueType'
  id: 'Attribute::LibOpt_StatisticScopeElementNoImprovement::ImgValueType.Name' value: 'ImgValueType'
  id: 'Attribute::LibOpt_StatisticScopeElementNoImprovement::IsStandardDeviationValid.Description' value: 'Whether the `LibOpt_StatisticSummary.StandardDeviation` among values collected by this `LibOpt_StatisticScopeElement` is within a reasonable range.\n\nThe `UpperThreshold` and/or `LowerThreshold` of a `LibOpt_StatisticScopeElement` are derived using the "outlier" approach.\nWhen the `LibOpt_StatisticSummary.StandardDeviation` is too large (indicating that the spread of the data points is large), it follows that the `LibOpt_StatisticSummary.IQR` is large too, which makes the "outlier" thresholds too large/small.\nAs a result, none of the values collected by this statistic would actually violate the "outlier" thresholds, and no `LibOpt_Issues` will be created..\nThe absence of issues gives a false impression that the aspect that this `LibOpt_StatisticScopeElement` focuses on does not require further attention.\nThus, if this constraint is fired for your statistic, then it might be worth to look into the values of this `LibOpt_StatisticScopeElement` even though no issues were created.'
  id: 'Attribute::LibOpt_StatisticScopeElementNoImprovement::IsStandardDeviationValid.Name' value: 'IsStandardDeviationValid'
  id: 'Attribute::LibOpt_StatisticScopeElementNoImprovement::LowerThreshold.Description' value: 'The lower threshold used to determine whether to create `LibOpt_Issues` for values collected by this statistic.'
  id: 'Attribute::LibOpt_StatisticScopeElementNoImprovement::LowerThreshold.Name' value: 'LowerThreshold'
  id: 'Attribute::LibOpt_StatisticScopeElementNoImprovement::MaxSeverityOfIssues.Description' value: 'The maximum `Severity` among the `LibOpt_Issues` created for this statistic.'
  id: 'Attribute::LibOpt_StatisticScopeElementNoImprovement::MaxSeverityOfIssues.Name' value: 'MaxSeverityOfIssues'
  id: 'Attribute::LibOpt_StatisticScopeElementNoImprovement::NrElements.Description' value: 'The number of elements (values / aspects / etc.) collected by this statistic.'
  id: 'Attribute::LibOpt_StatisticScopeElementNoImprovement::NrElements.Name' value: 'NrElements'
  id: 'Attribute::LibOpt_StatisticScopeElementNoImprovement::NrElementsWithIssue.Description' value: 'The number of elements (values / aspects / etc.) collected by this statistic which has a `LibOpt_Issue` created for it.'
  id: 'Attribute::LibOpt_StatisticScopeElementNoImprovement::NrElementsWithIssue.Name' value: 'NrElementsWithIssue'
  id: 'Attribute::LibOpt_StatisticScopeElementNoImprovement::NrIssuesNotSeen.Description' value: 'The number of `LibOpt_Issues` of this `LibOpt_Statistic` with `LibOpt_Issue.IsSeen` = `false`.\n\nNote:\nThe usage of `LibOpt_Issue.IsSeen` is subject to user\'s preference.\nSome may use it to mark an issue as "seen" in the literal sense, while some may choose to use it to mark an issue as "addressed".'
  id: 'Attribute::LibOpt_StatisticScopeElementNoImprovement::NrIssuesNotSeen.Name' value: 'NrIssuesNotSeen'
  id: 'Attribute::LibOpt_StatisticScopeElementNoImprovement::PercentageOfElementsWithIssue.Description' value: 'The percentage of elements (values / aspects / etc.) collected by this statistic which has a `LibOpt_Issue` created for it.'
  id: 'Attribute::LibOpt_StatisticScopeElementNoImprovement::PercentageOfElementsWithIssue.Name' value: 'PercentageOfElementsWithIssue'
  id: 'Attribute::LibOpt_StatisticScopeElementNoImprovement::Priority.Description' value: 'The maximum priority of all the `LibOpt_Issues` relevant to the statistic.'
  id: 'Attribute::LibOpt_StatisticScopeElementNoImprovement::Priority.Name' value: 'Priority'
  id: 'Attribute::LibOpt_StatisticScopeElementNoImprovement::PriorityName.Description' value: 'A string representing the priority.'
  id: 'Attribute::LibOpt_StatisticScopeElementNoImprovement::PriorityName.Name' value: 'PriorityName'
  id: 'Attribute::LibOpt_StatisticScopeElementNoImprovement::Severity.Description' value: 'The severity of the statistic.\n\nFor statistics that work on iterations:\nThis is the average of highest 5% of severities related to the elements in this statistic.\n\nFor example, if we have a statistic with 100 elements, and 10 issues with severities : 4.0, 3.8, 3.7, 3.5, 1.4, 1.3, 0.3, 0.3, 0.3, 0.1, the severity of the statistic will be\naverage( 4.0, 3.8, 3.7, 3.5, 1.4 ) = 3.3\n\nIf there are no 5 issues, we give elements without an issue a severity of 0.\nFor example if we have a statistic with 100 elements, and 2 issues with severities : 4.0, 3.8, the severity of the statistic will be\naverage( 4.0, 3.8, 0.0, 0.0, 0.0 ) = 1.6\n\nWe add the zeroes so a statistic with 1 highly severe issue will not outrank a statistic with many medium-high severe issues.\nThe latter will probably cause more damage to the performance/quality of the optimizer, as it happens more often.\n\nFor statistics that work on scope elements:\nThis is the highest severity of its related issues.\n\nThe reason for this distinction is that it is OK to have a bad iteration, but a single bad scope element may ruin your entire plan.'
  id: 'Attribute::LibOpt_StatisticScopeElementNoImprovement::Severity.Name' value: 'Severity'
  id: 'Attribute::LibOpt_StatisticScopeElementNoImprovement::Type.Description' value: 'A short description for the type of this `LibOpt_Statistic`.'
  id: 'Attribute::LibOpt_StatisticScopeElementNoImprovement::Type.Name' value: 'Type'
  id: 'Attribute::LibOpt_StatisticScopeElementNoImprovement::UOM.Description' value: 'The unit of measurement for the values collected by this statistic.'
  id: 'Attribute::LibOpt_StatisticScopeElementNoImprovement::UOM.Name' value: 'UOM'
  id: 'Attribute::LibOpt_StatisticScopeElementNoImprovement::UpperThreshold.Description' value: 'The upper threshold used to determine whether to create `LibOpt_Issues` for values collected by this statistic.'
  id: 'Attribute::LibOpt_StatisticScopeElementNoImprovement::UpperThreshold.Name' value: 'UpperThreshold'
  id: 'Attribute::LibOpt_StatisticScopeElementNoImprovement::ValueType.Description' value: 'The type of values collected by this statistic.'
  id: 'Attribute::LibOpt_StatisticScopeElementNoImprovement::ValueType.Name' value: 'ValueType'
  id: 'Attribute::LibOpt_StatisticScopeElementNoImprovement::ValuesAsRealVector.Description' value: 'The `RealVector` of values collected by this statistic, stored in the form of a `BinaryValue`.'
  id: 'Attribute::LibOpt_StatisticScopeElementNoImprovement::ValuesAsRealVector.Name' value: 'ValuesAsRealVector'
  id: 'Attribute::LibOpt_StatisticScopeElementRollback::Description.Description' value: 'The description for this statistic.'
  id: 'Attribute::LibOpt_StatisticScopeElementRollback::Description.Name' value: 'Description'
  id: 'Attribute::LibOpt_StatisticScopeElementRollback::Focus.Description' value: 'A string that represents the object/aspect this statistic focuses on when collecting its values. It does not have to be unique as the relevant object/aspect could have multiple statistics.\n\nFor example, a `LibOpt_StatisticSuboptimizerMPInfeasible` statistic and a `LibOpt_StatisticSuboptimizerMPKappa` statistic can have the same `Focus` value of "MIP Subopt, Execution 2".\nThis means they both collect values about:\n- the `LibOpt_Component` (`LibOpt_SuboptimizerMP` in particular) with `LibOpt_SuboptimizerMP.Name` of "MIP Subopt", and\n- the 2nd MP execution of said MP suboptimizer.\n\nThe difference is that the former statistic focuses on infeasibility, while the latter statistic focuses on Kappa values.\nSee the `LibOpt_Statistic.Type` attribute for more details about this.'
  id: 'Attribute::LibOpt_StatisticScopeElementRollback::Focus.Name' value: 'Focus'
  id: 'Attribute::LibOpt_StatisticScopeElementRollback::HasData.Description' value: 'Whether this `LibOpt_StatisticScopeElement` has data.'
  id: 'Attribute::LibOpt_StatisticScopeElementRollback::HasData.Name' value: 'HasData'
  id: 'Attribute::LibOpt_StatisticScopeElementRollback::ImgIssueType.Name' value: 'ImgIssueType'
  id: 'Attribute::LibOpt_StatisticScopeElementRollback::ImgValueType.Name' value: 'ImgValueType'
  id: 'Attribute::LibOpt_StatisticScopeElementRollback::IsStandardDeviationValid.Description' value: 'Whether the `LibOpt_StatisticSummary.StandardDeviation` among values collected by this `LibOpt_StatisticScopeElement` is within a reasonable range.\n\nThe `UpperThreshold` and/or `LowerThreshold` of a `LibOpt_StatisticScopeElement` are derived using the "outlier" approach.\nWhen the `LibOpt_StatisticSummary.StandardDeviation` is too large (indicating that the spread of the data points is large), it follows that the `LibOpt_StatisticSummary.IQR` is large too, which makes the "outlier" thresholds too large/small.\nAs a result, none of the values collected by this statistic would actually violate the "outlier" thresholds, and no `LibOpt_Issues` will be created..\nThe absence of issues gives a false impression that the aspect that this `LibOpt_StatisticScopeElement` focuses on does not require further attention.\nThus, if this constraint is fired for your statistic, then it might be worth to look into the values of this `LibOpt_StatisticScopeElement` even though no issues were created.'
  id: 'Attribute::LibOpt_StatisticScopeElementRollback::IsStandardDeviationValid.Name' value: 'IsStandardDeviationValid'
  id: 'Attribute::LibOpt_StatisticScopeElementRollback::LowerThreshold.Description' value: 'The lower threshold used to determine whether to create `LibOpt_Issues` for values collected by this statistic.'
  id: 'Attribute::LibOpt_StatisticScopeElementRollback::LowerThreshold.Name' value: 'LowerThreshold'
  id: 'Attribute::LibOpt_StatisticScopeElementRollback::MaxSeverityOfIssues.Description' value: 'The maximum `Severity` among the `LibOpt_Issues` created for this statistic.'
  id: 'Attribute::LibOpt_StatisticScopeElementRollback::MaxSeverityOfIssues.Name' value: 'MaxSeverityOfIssues'
  id: 'Attribute::LibOpt_StatisticScopeElementRollback::NrElements.Description' value: 'The number of elements (values / aspects / etc.) collected by this statistic.'
  id: 'Attribute::LibOpt_StatisticScopeElementRollback::NrElements.Name' value: 'NrElements'
  id: 'Attribute::LibOpt_StatisticScopeElementRollback::NrElementsWithIssue.Description' value: 'The number of elements (values / aspects / etc.) collected by this statistic which has a `LibOpt_Issue` created for it.'
  id: 'Attribute::LibOpt_StatisticScopeElementRollback::NrElementsWithIssue.Name' value: 'NrElementsWithIssue'
  id: 'Attribute::LibOpt_StatisticScopeElementRollback::NrIssuesNotSeen.Description' value: 'The number of `LibOpt_Issues` of this `LibOpt_Statistic` with `LibOpt_Issue.IsSeen` = `false`.\n\nNote:\nThe usage of `LibOpt_Issue.IsSeen` is subject to user\'s preference.\nSome may use it to mark an issue as "seen" in the literal sense, while some may choose to use it to mark an issue as "addressed".'
  id: 'Attribute::LibOpt_StatisticScopeElementRollback::NrIssuesNotSeen.Name' value: 'NrIssuesNotSeen'
  id: 'Attribute::LibOpt_StatisticScopeElementRollback::PercentageOfElementsWithIssue.Description' value: 'The percentage of elements (values / aspects / etc.) collected by this statistic which has a `LibOpt_Issue` created for it.'
  id: 'Attribute::LibOpt_StatisticScopeElementRollback::PercentageOfElementsWithIssue.Name' value: 'PercentageOfElementsWithIssue'
  id: 'Attribute::LibOpt_StatisticScopeElementRollback::Priority.Description' value: 'The maximum priority of all the `LibOpt_Issues` relevant to the statistic.'
  id: 'Attribute::LibOpt_StatisticScopeElementRollback::Priority.Name' value: 'Priority'
  id: 'Attribute::LibOpt_StatisticScopeElementRollback::PriorityName.Description' value: 'A string representing the priority.'
  id: 'Attribute::LibOpt_StatisticScopeElementRollback::PriorityName.Name' value: 'PriorityName'
  id: 'Attribute::LibOpt_StatisticScopeElementRollback::Severity.Description' value: 'The severity of the statistic.\n\nFor statistics that work on iterations:\nThis is the average of highest 5% of severities related to the elements in this statistic.\n\nFor example, if we have a statistic with 100 elements, and 10 issues with severities : 4.0, 3.8, 3.7, 3.5, 1.4, 1.3, 0.3, 0.3, 0.3, 0.1, the severity of the statistic will be\naverage( 4.0, 3.8, 3.7, 3.5, 1.4 ) = 3.3\n\nIf there are no 5 issues, we give elements without an issue a severity of 0.\nFor example if we have a statistic with 100 elements, and 2 issues with severities : 4.0, 3.8, the severity of the statistic will be\naverage( 4.0, 3.8, 0.0, 0.0, 0.0 ) = 1.6\n\nWe add the zeroes so a statistic with 1 highly severe issue will not outrank a statistic with many medium-high severe issues.\nThe latter will probably cause more damage to the performance/quality of the optimizer, as it happens more often.\n\nFor statistics that work on scope elements:\nThis is the highest severity of its related issues.\n\nThe reason for this distinction is that it is OK to have a bad iteration, but a single bad scope element may ruin your entire plan.'
  id: 'Attribute::LibOpt_StatisticScopeElementRollback::Severity.Name' value: 'Severity'
  id: 'Attribute::LibOpt_StatisticScopeElementRollback::Type.Description' value: 'A short description for the type of this `LibOpt_Statistic`.'
  id: 'Attribute::LibOpt_StatisticScopeElementRollback::Type.Name' value: 'Type'
  id: 'Attribute::LibOpt_StatisticScopeElementRollback::UOM.Description' value: 'The unit of measurement for the values collected by this statistic.'
  id: 'Attribute::LibOpt_StatisticScopeElementRollback::UOM.Name' value: 'UOM'
  id: 'Attribute::LibOpt_StatisticScopeElementRollback::UpperThreshold.Description' value: 'The upper threshold used to determine whether to create `LibOpt_Issues` for values collected by this statistic.'
  id: 'Attribute::LibOpt_StatisticScopeElementRollback::UpperThreshold.Name' value: 'UpperThreshold'
  id: 'Attribute::LibOpt_StatisticScopeElementRollback::ValueType.Description' value: 'The type of values collected by this statistic.'
  id: 'Attribute::LibOpt_StatisticScopeElementRollback::ValueType.Name' value: 'ValueType'
  id: 'Attribute::LibOpt_StatisticScopeElementRollback::ValuesAsRealVector.Description' value: 'The `RealVector` of values collected by this statistic, stored in the form of a `BinaryValue`.'
  id: 'Attribute::LibOpt_StatisticScopeElementRollback::ValuesAsRealVector.Name' value: 'ValuesAsRealVector'
  id: 'Attribute::LibOpt_StatisticSuboptimizer::Description.Description' value: 'The description for this statistic.'
  id: 'Attribute::LibOpt_StatisticSuboptimizer::Description.Name' value: 'Description'
  id: 'Attribute::LibOpt_StatisticSuboptimizer::Focus.Description' value: 'A string that represents the object/aspect this statistic focuses on when collecting its values. It does not have to be unique as the relevant object/aspect could have multiple statistics.\n\nFor example, a `LibOpt_StatisticSuboptimizerMPInfeasible` statistic and a `LibOpt_StatisticSuboptimizerMPKappa` statistic can have the same `Focus` value of "MIP Subopt, Execution 2".\nThis means they both collect values about:\n- the `LibOpt_Component` (`LibOpt_SuboptimizerMP` in particular) with `LibOpt_SuboptimizerMP.Name` of "MIP Subopt", and\n- the 2nd MP execution of said MP suboptimizer.\n\nThe difference is that the former statistic focuses on infeasibility, while the latter statistic focuses on Kappa values.\nSee the `LibOpt_Statistic.Type` attribute for more details about this.'
  id: 'Attribute::LibOpt_StatisticSuboptimizer::Focus.Name' value: 'Focus'
  id: 'Attribute::LibOpt_StatisticSuboptimizer::ImgIssueType.Name' value: 'ImgIssueType'
  id: 'Attribute::LibOpt_StatisticSuboptimizer::ImgValueType.Name' value: 'ImgValueType'
  id: 'Attribute::LibOpt_StatisticSuboptimizer::LowerThreshold.Description' value: 'The lower threshold used to determine whether to create `LibOpt_Issues` for values collected by this statistic.'
  id: 'Attribute::LibOpt_StatisticSuboptimizer::LowerThreshold.Name' value: 'LowerThreshold'
  id: 'Attribute::LibOpt_StatisticSuboptimizer::MaxSeverityOfIssues.Description' value: 'The maximum `Severity` among the `LibOpt_Issues` created for this statistic.'
  id: 'Attribute::LibOpt_StatisticSuboptimizer::MaxSeverityOfIssues.Name' value: 'MaxSeverityOfIssues'
  id: 'Attribute::LibOpt_StatisticSuboptimizer::NrElements.Description' value: 'The number of elements (values / aspects / etc.) collected by this statistic.'
  id: 'Attribute::LibOpt_StatisticSuboptimizer::NrElements.Name' value: 'NrElements'
  id: 'Attribute::LibOpt_StatisticSuboptimizer::NrElementsWithIssue.Description' value: 'The number of elements (values / aspects / etc.) collected by this statistic which has a `LibOpt_Issue` created for it.'
  id: 'Attribute::LibOpt_StatisticSuboptimizer::NrElementsWithIssue.Name' value: 'NrElementsWithIssue'
  id: 'Attribute::LibOpt_StatisticSuboptimizer::NrIssuesNotSeen.Description' value: 'The number of `LibOpt_Issues` of this `LibOpt_Statistic` with `LibOpt_Issue.IsSeen` = `false`.\n\nNote:\nThe usage of `LibOpt_Issue.IsSeen` is subject to user\'s preference.\nSome may use it to mark an issue as "seen" in the literal sense, while some may choose to use it to mark an issue as "addressed".'
  id: 'Attribute::LibOpt_StatisticSuboptimizer::NrIssuesNotSeen.Name' value: 'NrIssuesNotSeen'
  id: 'Attribute::LibOpt_StatisticSuboptimizer::PercentageOfElementsWithIssue.Description' value: 'The percentage of elements (values / aspects / etc.) collected by this statistic which has a `LibOpt_Issue` created for it.'
  id: 'Attribute::LibOpt_StatisticSuboptimizer::PercentageOfElementsWithIssue.Name' value: 'PercentageOfElementsWithIssue'
  id: 'Attribute::LibOpt_StatisticSuboptimizer::Priority.Description' value: 'The maximum priority of all the `LibOpt_Issues` relevant to the statistic.'
  id: 'Attribute::LibOpt_StatisticSuboptimizer::Priority.Name' value: 'Priority'
  id: 'Attribute::LibOpt_StatisticSuboptimizer::PriorityName.Description' value: 'A string representing the priority.'
  id: 'Attribute::LibOpt_StatisticSuboptimizer::PriorityName.Name' value: 'PriorityName'
  id: 'Attribute::LibOpt_StatisticSuboptimizer::Severity.Description' value: 'The severity of the statistic.\n\nFor statistics that work on iterations:\nThis is the average of highest 5% of severities related to the elements in this statistic.\n\nFor example, if we have a statistic with 100 elements, and 10 issues with severities : 4.0, 3.8, 3.7, 3.5, 1.4, 1.3, 0.3, 0.3, 0.3, 0.1, the severity of the statistic will be\naverage( 4.0, 3.8, 3.7, 3.5, 1.4 ) = 3.3\n\nIf there are no 5 issues, we give elements without an issue a severity of 0.\nFor example if we have a statistic with 100 elements, and 2 issues with severities : 4.0, 3.8, the severity of the statistic will be\naverage( 4.0, 3.8, 0.0, 0.0, 0.0 ) = 1.6\n\nWe add the zeroes so a statistic with 1 highly severe issue will not outrank a statistic with many medium-high severe issues.\nThe latter will probably cause more damage to the performance/quality of the optimizer, as it happens more often.\n\nFor statistics that work on scope elements:\nThis is the highest severity of its related issues.\n\nThe reason for this distinction is that it is OK to have a bad iteration, but a single bad scope element may ruin your entire plan.'
  id: 'Attribute::LibOpt_StatisticSuboptimizer::Severity.Name' value: 'Severity'
  id: 'Attribute::LibOpt_StatisticSuboptimizer::Type.Description' value: 'A short description for the type of this `LibOpt_Statistic`.'
  id: 'Attribute::LibOpt_StatisticSuboptimizer::Type.Name' value: 'Type'
  id: 'Attribute::LibOpt_StatisticSuboptimizer::UOM.Description' value: 'The unit of measurement for the values collected by this statistic.'
  id: 'Attribute::LibOpt_StatisticSuboptimizer::UOM.Name' value: 'UOM'
  id: 'Attribute::LibOpt_StatisticSuboptimizer::UpperThreshold.Description' value: 'The upper threshold used to determine whether to create `LibOpt_Issues` for values collected by this statistic.'
  id: 'Attribute::LibOpt_StatisticSuboptimizer::UpperThreshold.Name' value: 'UpperThreshold'
  id: 'Attribute::LibOpt_StatisticSuboptimizer::ValueType.Description' value: 'The type of values collected by this statistic.'
  id: 'Attribute::LibOpt_StatisticSuboptimizer::ValueType.Name' value: 'ValueType'
  id: 'Attribute::LibOpt_StatisticSuboptimizer::ValuesAsRealVector.Description' value: 'The `RealVector` of values collected by this statistic, stored in the form of a `BinaryValue`.'
  id: 'Attribute::LibOpt_StatisticSuboptimizer::ValuesAsRealVector.Name' value: 'ValuesAsRealVector'
  id: 'Attribute::LibOpt_StatisticSuboptimizerKPIImprovement::Description.Description' value: 'The description for this statistic.'
  id: 'Attribute::LibOpt_StatisticSuboptimizerKPIImprovement::Description.Name' value: 'Description'
  id: 'Attribute::LibOpt_StatisticSuboptimizerKPIImprovement::Focus.Description' value: 'A string that represents the object/aspect this statistic focuses on when collecting its values. It does not have to be unique as the relevant object/aspect could have multiple statistics.\n\nFor example, a `LibOpt_StatisticSuboptimizerMPInfeasible` statistic and a `LibOpt_StatisticSuboptimizerMPKappa` statistic can have the same `Focus` value of "MIP Subopt, Execution 2".\nThis means they both collect values about:\n- the `LibOpt_Component` (`LibOpt_SuboptimizerMP` in particular) with `LibOpt_SuboptimizerMP.Name` of "MIP Subopt", and\n- the 2nd MP execution of said MP suboptimizer.\n\nThe difference is that the former statistic focuses on infeasibility, while the latter statistic focuses on Kappa values.\nSee the `LibOpt_Statistic.Type` attribute for more details about this.'
  id: 'Attribute::LibOpt_StatisticSuboptimizerKPIImprovement::Focus.Name' value: 'Focus'
  id: 'Attribute::LibOpt_StatisticSuboptimizerKPIImprovement::ImgIssueType.Name' value: 'ImgIssueType'
  id: 'Attribute::LibOpt_StatisticSuboptimizerKPIImprovement::ImgValueType.Name' value: 'ImgValueType'
  id: 'Attribute::LibOpt_StatisticSuboptimizerKPIImprovement::KPILevel.Description' value: 'The KPI level of the `LibOpt_Suboptimizer`.'
  id: 'Attribute::LibOpt_StatisticSuboptimizerKPIImprovement::KPILevel.Name' value: 'KPILevel'
  id: 'Attribute::LibOpt_StatisticSuboptimizerKPIImprovement::LowerThreshold.Description' value: 'The lower threshold used to determine whether to create `LibOpt_Issues` for values collected by this statistic.'
  id: 'Attribute::LibOpt_StatisticSuboptimizerKPIImprovement::LowerThreshold.Name' value: 'LowerThreshold'
  id: 'Attribute::LibOpt_StatisticSuboptimizerKPIImprovement::MaxSeverityOfIssues.Description' value: 'The maximum `Severity` among the `LibOpt_Issues` created for this statistic.'
  id: 'Attribute::LibOpt_StatisticSuboptimizerKPIImprovement::MaxSeverityOfIssues.Name' value: 'MaxSeverityOfIssues'
  id: 'Attribute::LibOpt_StatisticSuboptimizerKPIImprovement::NrElements.Description' value: 'The number of elements (values / aspects / etc.) collected by this statistic.'
  id: 'Attribute::LibOpt_StatisticSuboptimizerKPIImprovement::NrElements.Name' value: 'NrElements'
  id: 'Attribute::LibOpt_StatisticSuboptimizerKPIImprovement::NrElementsWithIssue.Description' value: 'The number of elements (values / aspects / etc.) collected by this statistic which has a `LibOpt_Issue` created for it.'
  id: 'Attribute::LibOpt_StatisticSuboptimizerKPIImprovement::NrElementsWithIssue.Name' value: 'NrElementsWithIssue'
  id: 'Attribute::LibOpt_StatisticSuboptimizerKPIImprovement::NrIssuesNotSeen.Description' value: 'The number of `LibOpt_Issues` of this `LibOpt_Statistic` with `LibOpt_Issue.IsSeen` = `false`.\n\nNote:\nThe usage of `LibOpt_Issue.IsSeen` is subject to user\'s preference.\nSome may use it to mark an issue as "seen" in the literal sense, while some may choose to use it to mark an issue as "addressed".'
  id: 'Attribute::LibOpt_StatisticSuboptimizerKPIImprovement::NrIssuesNotSeen.Name' value: 'NrIssuesNotSeen'
  id: 'Attribute::LibOpt_StatisticSuboptimizerKPIImprovement::PercentageOfElementsWithIssue.Description' value: 'The percentage of elements (values / aspects / etc.) collected by this statistic which has a `LibOpt_Issue` created for it.'
  id: 'Attribute::LibOpt_StatisticSuboptimizerKPIImprovement::PercentageOfElementsWithIssue.Name' value: 'PercentageOfElementsWithIssue'
  id: 'Attribute::LibOpt_StatisticSuboptimizerKPIImprovement::Priority.Description' value: 'The maximum priority of all the `LibOpt_Issues` relevant to the statistic.'
  id: 'Attribute::LibOpt_StatisticSuboptimizerKPIImprovement::Priority.Name' value: 'Priority'
  id: 'Attribute::LibOpt_StatisticSuboptimizerKPIImprovement::PriorityName.Description' value: 'A string representing the priority.'
  id: 'Attribute::LibOpt_StatisticSuboptimizerKPIImprovement::PriorityName.Name' value: 'PriorityName'
  id: 'Attribute::LibOpt_StatisticSuboptimizerKPIImprovement::Severity.Description' value: 'The severity of the statistic.\n\nFor statistics that work on iterations:\nThis is the average of highest 5% of severities related to the elements in this statistic.\n\nFor example, if we have a statistic with 100 elements, and 10 issues with severities : 4.0, 3.8, 3.7, 3.5, 1.4, 1.3, 0.3, 0.3, 0.3, 0.1, the severity of the statistic will be\naverage( 4.0, 3.8, 3.7, 3.5, 1.4 ) = 3.3\n\nIf there are no 5 issues, we give elements without an issue a severity of 0.\nFor example if we have a statistic with 100 elements, and 2 issues with severities : 4.0, 3.8, the severity of the statistic will be\naverage( 4.0, 3.8, 0.0, 0.0, 0.0 ) = 1.6\n\nWe add the zeroes so a statistic with 1 highly severe issue will not outrank a statistic with many medium-high severe issues.\nThe latter will probably cause more damage to the performance/quality of the optimizer, as it happens more often.\n\nFor statistics that work on scope elements:\nThis is the highest severity of its related issues.\n\nThe reason for this distinction is that it is OK to have a bad iteration, but a single bad scope element may ruin your entire plan.'
  id: 'Attribute::LibOpt_StatisticSuboptimizerKPIImprovement::Severity.Name' value: 'Severity'
  id: 'Attribute::LibOpt_StatisticSuboptimizerKPIImprovement::Type.Description' value: 'A short description for the type of this `LibOpt_Statistic`.'
  id: 'Attribute::LibOpt_StatisticSuboptimizerKPIImprovement::Type.Name' value: 'Type'
  id: 'Attribute::LibOpt_StatisticSuboptimizerKPIImprovement::UOM.Description' value: 'The unit of measurement for the values collected by this statistic.'
  id: 'Attribute::LibOpt_StatisticSuboptimizerKPIImprovement::UOM.Name' value: 'UOM'
  id: 'Attribute::LibOpt_StatisticSuboptimizerKPIImprovement::UpperThreshold.Description' value: 'The upper threshold used to determine whether to create `LibOpt_Issues` for values collected by this statistic.'
  id: 'Attribute::LibOpt_StatisticSuboptimizerKPIImprovement::UpperThreshold.Name' value: 'UpperThreshold'
  id: 'Attribute::LibOpt_StatisticSuboptimizerKPIImprovement::ValueType.Description' value: 'The type of values collected by this statistic.'
  id: 'Attribute::LibOpt_StatisticSuboptimizerKPIImprovement::ValueType.Name' value: 'ValueType'
  id: 'Attribute::LibOpt_StatisticSuboptimizerKPIImprovement::ValuesAsRealVector.Description' value: 'The `RealVector` of values collected by this statistic, stored in the form of a `BinaryValue`.'
  id: 'Attribute::LibOpt_StatisticSuboptimizerKPIImprovement::ValuesAsRealVector.Name' value: 'ValuesAsRealVector'
  id: 'Attribute::LibOpt_StatisticSuboptimizerMP::Description.Description' value: 'The description for this statistic.'
  id: 'Attribute::LibOpt_StatisticSuboptimizerMP::Description.Name' value: 'Description'
  id: 'Attribute::LibOpt_StatisticSuboptimizerMP::ExecutionNr.Description' value: 'The index indicating which `LibOpt_SnapshotMPs` this `LibOpt_StatisticSuboptimizerMP` should collect values from. In particular, this statistic would only look at `LibOpt_SnapshotMPs` which `ExecutionNr` matches this index.'
  id: 'Attribute::LibOpt_StatisticSuboptimizerMP::ExecutionNr.Name' value: 'ExecutionNr'
  id: 'Attribute::LibOpt_StatisticSuboptimizerMP::Focus.Description' value: 'A string that represents the object/aspect this statistic focuses on when collecting its values. It does not have to be unique as the relevant object/aspect could have multiple statistics.\n\nFor example, a `LibOpt_StatisticSuboptimizerMPInfeasible` statistic and a `LibOpt_StatisticSuboptimizerMPKappa` statistic can have the same `Focus` value of "MIP Subopt, Execution 2".\nThis means they both collect values about:\n- the `LibOpt_Component` (`LibOpt_SuboptimizerMP` in particular) with `LibOpt_SuboptimizerMP.Name` of "MIP Subopt", and\n- the 2nd MP execution of said MP suboptimizer.\n\nThe difference is that the former statistic focuses on infeasibility, while the latter statistic focuses on Kappa values.\nSee the `LibOpt_Statistic.Type` attribute for more details about this.'
  id: 'Attribute::LibOpt_StatisticSuboptimizerMP::Focus.Name' value: 'Focus'
  id: 'Attribute::LibOpt_StatisticSuboptimizerMP::GoalLevel.Description' value: 'The goal level of `LibOpt_SnapshotMPs` of a particular attribute (such as `LibOpt_SnapshotMP.GoalScores`, `LibOpt_SnapshotMP.RelativeGaps`, etc.) which this `LibOpt_StatisticSuboptimizerMP` should collect values from.\n\nFor example, suppose we have a `LibOpt_StatisticSuboptimizerMP` with `GoalLevel` of 2 which collect values about relative gap.\nThis statistic will then retrieve the values corresponding with the 2nd goal level stored on the `LibOpt_SnapshotMP.RelativeGaps` attribute of its related `LibOpt_SnapshotMPs`.'
  id: 'Attribute::LibOpt_StatisticSuboptimizerMP::GoalLevel.Name' value: 'GoalLevel'
  id: 'Attribute::LibOpt_StatisticSuboptimizerMP::ImgIssueType.Name' value: 'ImgIssueType'
  id: 'Attribute::LibOpt_StatisticSuboptimizerMP::ImgValueType.Name' value: 'ImgValueType'
  id: 'Attribute::LibOpt_StatisticSuboptimizerMP::LowerThreshold.Description' value: 'The lower threshold used to determine whether to create `LibOpt_Issues` for values collected by this statistic.'
  id: 'Attribute::LibOpt_StatisticSuboptimizerMP::LowerThreshold.Name' value: 'LowerThreshold'
  id: 'Attribute::LibOpt_StatisticSuboptimizerMP::MaxSeverityOfIssues.Description' value: 'The maximum `Severity` among the `LibOpt_Issues` created for this statistic.'
  id: 'Attribute::LibOpt_StatisticSuboptimizerMP::MaxSeverityOfIssues.Name' value: 'MaxSeverityOfIssues'
  id: 'Attribute::LibOpt_StatisticSuboptimizerMP::NrElements.Description' value: 'The number of elements (values / aspects / etc.) collected by this statistic.'
  id: 'Attribute::LibOpt_StatisticSuboptimizerMP::NrElements.Name' value: 'NrElements'
  id: 'Attribute::LibOpt_StatisticSuboptimizerMP::NrElementsWithIssue.Description' value: 'The number of elements (values / aspects / etc.) collected by this statistic which has a `LibOpt_Issue` created for it.'
  id: 'Attribute::LibOpt_StatisticSuboptimizerMP::NrElementsWithIssue.Name' value: 'NrElementsWithIssue'
  id: 'Attribute::LibOpt_StatisticSuboptimizerMP::NrIssuesNotSeen.Description' value: 'The number of `LibOpt_Issues` of this `LibOpt_Statistic` with `LibOpt_Issue.IsSeen` = `false`.\n\nNote:\nThe usage of `LibOpt_Issue.IsSeen` is subject to user\'s preference.\nSome may use it to mark an issue as "seen" in the literal sense, while some may choose to use it to mark an issue as "addressed".'
  id: 'Attribute::LibOpt_StatisticSuboptimizerMP::NrIssuesNotSeen.Name' value: 'NrIssuesNotSeen'
  id: 'Attribute::LibOpt_StatisticSuboptimizerMP::PercentageOfElementsWithIssue.Description' value: 'The percentage of elements (values / aspects / etc.) collected by this statistic which has a `LibOpt_Issue` created for it.'
  id: 'Attribute::LibOpt_StatisticSuboptimizerMP::PercentageOfElementsWithIssue.Name' value: 'PercentageOfElementsWithIssue'
  id: 'Attribute::LibOpt_StatisticSuboptimizerMP::Priority.Description' value: 'The maximum priority of all the `LibOpt_Issues` relevant to the statistic.'
  id: 'Attribute::LibOpt_StatisticSuboptimizerMP::Priority.Name' value: 'Priority'
  id: 'Attribute::LibOpt_StatisticSuboptimizerMP::PriorityName.Description' value: 'A string representing the priority.'
  id: 'Attribute::LibOpt_StatisticSuboptimizerMP::PriorityName.Name' value: 'PriorityName'
  id: 'Attribute::LibOpt_StatisticSuboptimizerMP::Severity.Description' value: 'The severity of the statistic.\n\nFor statistics that work on iterations:\nThis is the average of highest 5% of severities related to the elements in this statistic.\n\nFor example, if we have a statistic with 100 elements, and 10 issues with severities : 4.0, 3.8, 3.7, 3.5, 1.4, 1.3, 0.3, 0.3, 0.3, 0.1, the severity of the statistic will be\naverage( 4.0, 3.8, 3.7, 3.5, 1.4 ) = 3.3\n\nIf there are no 5 issues, we give elements without an issue a severity of 0.\nFor example if we have a statistic with 100 elements, and 2 issues with severities : 4.0, 3.8, the severity of the statistic will be\naverage( 4.0, 3.8, 0.0, 0.0, 0.0 ) = 1.6\n\nWe add the zeroes so a statistic with 1 highly severe issue will not outrank a statistic with many medium-high severe issues.\nThe latter will probably cause more damage to the performance/quality of the optimizer, as it happens more often.\n\nFor statistics that work on scope elements:\nThis is the highest severity of its related issues.\n\nThe reason for this distinction is that it is OK to have a bad iteration, but a single bad scope element may ruin your entire plan.'
  id: 'Attribute::LibOpt_StatisticSuboptimizerMP::Severity.Name' value: 'Severity'
  id: 'Attribute::LibOpt_StatisticSuboptimizerMP::Type.Description' value: 'A short description for the type of this `LibOpt_Statistic`.'
  id: 'Attribute::LibOpt_StatisticSuboptimizerMP::Type.Name' value: 'Type'
  id: 'Attribute::LibOpt_StatisticSuboptimizerMP::UOM.Description' value: 'The unit of measurement for the values collected by this statistic.'
  id: 'Attribute::LibOpt_StatisticSuboptimizerMP::UOM.Name' value: 'UOM'
  id: 'Attribute::LibOpt_StatisticSuboptimizerMP::UpperThreshold.Description' value: 'The upper threshold used to determine whether to create `LibOpt_Issues` for values collected by this statistic.'
  id: 'Attribute::LibOpt_StatisticSuboptimizerMP::UpperThreshold.Name' value: 'UpperThreshold'
  id: 'Attribute::LibOpt_StatisticSuboptimizerMP::ValueType.Description' value: 'The type of values collected by this statistic.'
  id: 'Attribute::LibOpt_StatisticSuboptimizerMP::ValueType.Name' value: 'ValueType'
  id: 'Attribute::LibOpt_StatisticSuboptimizerMP::ValuesAsRealVector.Description' value: 'The `RealVector` of values collected by this statistic, stored in the form of a `BinaryValue`.'
  id: 'Attribute::LibOpt_StatisticSuboptimizerMP::ValuesAsRealVector.Name' value: 'ValuesAsRealVector'
  id: 'Attribute::LibOpt_StatisticSuboptimizerMPInfeasible::Description.Description' value: 'The description for this statistic.'
  id: 'Attribute::LibOpt_StatisticSuboptimizerMPInfeasible::Description.Name' value: 'Description'
  id: 'Attribute::LibOpt_StatisticSuboptimizerMPInfeasible::ExecutionNr.Description' value: 'The index indicating which `LibOpt_SnapshotMPs` this `LibOpt_StatisticSuboptimizerMP` should collect values from. In particular, this statistic would only look at `LibOpt_SnapshotMPs` which `ExecutionNr` matches this index.'
  id: 'Attribute::LibOpt_StatisticSuboptimizerMPInfeasible::ExecutionNr.Name' value: 'ExecutionNr'
  id: 'Attribute::LibOpt_StatisticSuboptimizerMPInfeasible::Focus.Description' value: 'A string that represents the object/aspect this statistic focuses on when collecting its values. It does not have to be unique as the relevant object/aspect could have multiple statistics.\n\nFor example, a `LibOpt_StatisticSuboptimizerMPInfeasible` statistic and a `LibOpt_StatisticSuboptimizerMPKappa` statistic can have the same `Focus` value of "MIP Subopt, Execution 2".\nThis means they both collect values about:\n- the `LibOpt_Component` (`LibOpt_SuboptimizerMP` in particular) with `LibOpt_SuboptimizerMP.Name` of "MIP Subopt", and\n- the 2nd MP execution of said MP suboptimizer.\n\nThe difference is that the former statistic focuses on infeasibility, while the latter statistic focuses on Kappa values.\nSee the `LibOpt_Statistic.Type` attribute for more details about this.'
  id: 'Attribute::LibOpt_StatisticSuboptimizerMPInfeasible::Focus.Name' value: 'Focus'
  id: 'Attribute::LibOpt_StatisticSuboptimizerMPInfeasible::GoalLevel.Description' value: 'The goal level of `LibOpt_SnapshotMPs` of a particular attribute (such as `LibOpt_SnapshotMP.GoalScores`, `LibOpt_SnapshotMP.RelativeGaps`, etc.) which this `LibOpt_StatisticSuboptimizerMP` should collect values from.\n\nFor example, suppose we have a `LibOpt_StatisticSuboptimizerMP` with `GoalLevel` of 2 which collect values about relative gap.\nThis statistic will then retrieve the values corresponding with the 2nd goal level stored on the `LibOpt_SnapshotMP.RelativeGaps` attribute of its related `LibOpt_SnapshotMPs`.'
  id: 'Attribute::LibOpt_StatisticSuboptimizerMPInfeasible::GoalLevel.Name' value: 'GoalLevel'
  id: 'Attribute::LibOpt_StatisticSuboptimizerMPInfeasible::ImgIssueType.Name' value: 'ImgIssueType'
  id: 'Attribute::LibOpt_StatisticSuboptimizerMPInfeasible::ImgValueType.Name' value: 'ImgValueType'
  id: 'Attribute::LibOpt_StatisticSuboptimizerMPInfeasible::LowerThreshold.Description' value: 'The lower threshold used to determine whether to create `LibOpt_Issues` for values collected by this statistic.'
  id: 'Attribute::LibOpt_StatisticSuboptimizerMPInfeasible::LowerThreshold.Name' value: 'LowerThreshold'
  id: 'Attribute::LibOpt_StatisticSuboptimizerMPInfeasible::MaxSeverityOfIssues.Description' value: 'The maximum `Severity` among the `LibOpt_Issues` created for this statistic.'
  id: 'Attribute::LibOpt_StatisticSuboptimizerMPInfeasible::MaxSeverityOfIssues.Name' value: 'MaxSeverityOfIssues'
  id: 'Attribute::LibOpt_StatisticSuboptimizerMPInfeasible::NrElements.Description' value: 'The number of elements (values / aspects / etc.) collected by this statistic.'
  id: 'Attribute::LibOpt_StatisticSuboptimizerMPInfeasible::NrElements.Name' value: 'NrElements'
  id: 'Attribute::LibOpt_StatisticSuboptimizerMPInfeasible::NrElementsWithIssue.Description' value: 'The number of elements (values / aspects / etc.) collected by this statistic which has a `LibOpt_Issue` created for it.'
  id: 'Attribute::LibOpt_StatisticSuboptimizerMPInfeasible::NrElementsWithIssue.Name' value: 'NrElementsWithIssue'
  id: 'Attribute::LibOpt_StatisticSuboptimizerMPInfeasible::NrIssuesNotSeen.Description' value: 'The number of `LibOpt_Issues` of this `LibOpt_Statistic` with `LibOpt_Issue.IsSeen` = `false`.\n\nNote:\nThe usage of `LibOpt_Issue.IsSeen` is subject to user\'s preference.\nSome may use it to mark an issue as "seen" in the literal sense, while some may choose to use it to mark an issue as "addressed".'
  id: 'Attribute::LibOpt_StatisticSuboptimizerMPInfeasible::NrIssuesNotSeen.Name' value: 'NrIssuesNotSeen'
  id: 'Attribute::LibOpt_StatisticSuboptimizerMPInfeasible::PercentageOfElementsWithIssue.Description' value: 'The percentage of elements (values / aspects / etc.) collected by this statistic which has a `LibOpt_Issue` created for it.'
  id: 'Attribute::LibOpt_StatisticSuboptimizerMPInfeasible::PercentageOfElementsWithIssue.Name' value: 'PercentageOfElementsWithIssue'
  id: 'Attribute::LibOpt_StatisticSuboptimizerMPInfeasible::Priority.Description' value: 'The maximum priority of all the `LibOpt_Issues` relevant to the statistic.'
  id: 'Attribute::LibOpt_StatisticSuboptimizerMPInfeasible::Priority.Name' value: 'Priority'
  id: 'Attribute::LibOpt_StatisticSuboptimizerMPInfeasible::PriorityName.Description' value: 'A string representing the priority.'
  id: 'Attribute::LibOpt_StatisticSuboptimizerMPInfeasible::PriorityName.Name' value: 'PriorityName'
  id: 'Attribute::LibOpt_StatisticSuboptimizerMPInfeasible::Severity.Description' value: 'The severity of the statistic.\n\nFor statistics that work on iterations:\nThis is the average of highest 5% of severities related to the elements in this statistic.\n\nFor example, if we have a statistic with 100 elements, and 10 issues with severities : 4.0, 3.8, 3.7, 3.5, 1.4, 1.3, 0.3, 0.3, 0.3, 0.1, the severity of the statistic will be\naverage( 4.0, 3.8, 3.7, 3.5, 1.4 ) = 3.3\n\nIf there are no 5 issues, we give elements without an issue a severity of 0.\nFor example if we have a statistic with 100 elements, and 2 issues with severities : 4.0, 3.8, the severity of the statistic will be\naverage( 4.0, 3.8, 0.0, 0.0, 0.0 ) = 1.6\n\nWe add the zeroes so a statistic with 1 highly severe issue will not outrank a statistic with many medium-high severe issues.\nThe latter will probably cause more damage to the performance/quality of the optimizer, as it happens more often.\n\nFor statistics that work on scope elements:\nThis is the highest severity of its related issues.\n\nThe reason for this distinction is that it is OK to have a bad iteration, but a single bad scope element may ruin your entire plan.'
  id: 'Attribute::LibOpt_StatisticSuboptimizerMPInfeasible::Severity.Name' value: 'Severity'
  id: 'Attribute::LibOpt_StatisticSuboptimizerMPInfeasible::Type.Description' value: 'A short description for the type of this `LibOpt_Statistic`.'
  id: 'Attribute::LibOpt_StatisticSuboptimizerMPInfeasible::Type.Name' value: 'Type'
  id: 'Attribute::LibOpt_StatisticSuboptimizerMPInfeasible::UOM.Description' value: 'The unit of measurement for the values collected by this statistic.'
  id: 'Attribute::LibOpt_StatisticSuboptimizerMPInfeasible::UOM.Name' value: 'UOM'
  id: 'Attribute::LibOpt_StatisticSuboptimizerMPInfeasible::UpperThreshold.Description' value: 'The upper threshold used to determine whether to create `LibOpt_Issues` for values collected by this statistic.'
  id: 'Attribute::LibOpt_StatisticSuboptimizerMPInfeasible::UpperThreshold.Name' value: 'UpperThreshold'
  id: 'Attribute::LibOpt_StatisticSuboptimizerMPInfeasible::ValueType.Description' value: 'The type of values collected by this statistic.'
  id: 'Attribute::LibOpt_StatisticSuboptimizerMPInfeasible::ValueType.Name' value: 'ValueType'
  id: 'Attribute::LibOpt_StatisticSuboptimizerMPInfeasible::ValuesAsRealVector.Description' value: 'The `RealVector` of values collected by this statistic, stored in the form of a `BinaryValue`.'
  id: 'Attribute::LibOpt_StatisticSuboptimizerMPInfeasible::ValuesAsRealVector.Name' value: 'ValuesAsRealVector'
  id: 'Attribute::LibOpt_StatisticSuboptimizerMPKappa::Description.Description' value: 'The description for this statistic.'
  id: 'Attribute::LibOpt_StatisticSuboptimizerMPKappa::Description.Name' value: 'Description'
  id: 'Attribute::LibOpt_StatisticSuboptimizerMPKappa::ExecutionNr.Description' value: 'The index indicating which `LibOpt_SnapshotMPs` this `LibOpt_StatisticSuboptimizerMP` should collect values from. In particular, this statistic would only look at `LibOpt_SnapshotMPs` which `ExecutionNr` matches this index.'
  id: 'Attribute::LibOpt_StatisticSuboptimizerMPKappa::ExecutionNr.Name' value: 'ExecutionNr'
  id: 'Attribute::LibOpt_StatisticSuboptimizerMPKappa::Focus.Description' value: 'A string that represents the object/aspect this statistic focuses on when collecting its values. It does not have to be unique as the relevant object/aspect could have multiple statistics.\n\nFor example, a `LibOpt_StatisticSuboptimizerMPInfeasible` statistic and a `LibOpt_StatisticSuboptimizerMPKappa` statistic can have the same `Focus` value of "MIP Subopt, Execution 2".\nThis means they both collect values about:\n- the `LibOpt_Component` (`LibOpt_SuboptimizerMP` in particular) with `LibOpt_SuboptimizerMP.Name` of "MIP Subopt", and\n- the 2nd MP execution of said MP suboptimizer.\n\nThe difference is that the former statistic focuses on infeasibility, while the latter statistic focuses on Kappa values.\nSee the `LibOpt_Statistic.Type` attribute for more details about this.'
  id: 'Attribute::LibOpt_StatisticSuboptimizerMPKappa::Focus.Name' value: 'Focus'
  id: 'Attribute::LibOpt_StatisticSuboptimizerMPKappa::GoalLevel.Description' value: 'The goal level of `LibOpt_SnapshotMPs` of a particular attribute (such as `LibOpt_SnapshotMP.GoalScores`, `LibOpt_SnapshotMP.RelativeGaps`, etc.) which this `LibOpt_StatisticSuboptimizerMP` should collect values from.\n\nFor example, suppose we have a `LibOpt_StatisticSuboptimizerMP` with `GoalLevel` of 2 which collect values about relative gap.\nThis statistic will then retrieve the values corresponding with the 2nd goal level stored on the `LibOpt_SnapshotMP.RelativeGaps` attribute of its related `LibOpt_SnapshotMPs`.'
  id: 'Attribute::LibOpt_StatisticSuboptimizerMPKappa::GoalLevel.Name' value: 'GoalLevel'
  id: 'Attribute::LibOpt_StatisticSuboptimizerMPKappa::ImgIssueType.Name' value: 'ImgIssueType'
  id: 'Attribute::LibOpt_StatisticSuboptimizerMPKappa::ImgValueType.Name' value: 'ImgValueType'
  id: 'Attribute::LibOpt_StatisticSuboptimizerMPKappa::LowerThreshold.Description' value: 'The lower threshold used to determine whether to create `LibOpt_Issues` for values collected by this statistic.'
  id: 'Attribute::LibOpt_StatisticSuboptimizerMPKappa::LowerThreshold.Name' value: 'LowerThreshold'
  id: 'Attribute::LibOpt_StatisticSuboptimizerMPKappa::MaxSeverityOfIssues.Description' value: 'The maximum `Severity` among the `LibOpt_Issues` created for this statistic.'
  id: 'Attribute::LibOpt_StatisticSuboptimizerMPKappa::MaxSeverityOfIssues.Name' value: 'MaxSeverityOfIssues'
  id: 'Attribute::LibOpt_StatisticSuboptimizerMPKappa::NrElements.Description' value: 'The number of elements (values / aspects / etc.) collected by this statistic.'
  id: 'Attribute::LibOpt_StatisticSuboptimizerMPKappa::NrElements.Name' value: 'NrElements'
  id: 'Attribute::LibOpt_StatisticSuboptimizerMPKappa::NrElementsWithIssue.Description' value: 'The number of elements (values / aspects / etc.) collected by this statistic which has a `LibOpt_Issue` created for it.'
  id: 'Attribute::LibOpt_StatisticSuboptimizerMPKappa::NrElementsWithIssue.Name' value: 'NrElementsWithIssue'
  id: 'Attribute::LibOpt_StatisticSuboptimizerMPKappa::NrIssuesNotSeen.Description' value: 'The number of `LibOpt_Issues` of this `LibOpt_Statistic` with `LibOpt_Issue.IsSeen` = `false`.\n\nNote:\nThe usage of `LibOpt_Issue.IsSeen` is subject to user\'s preference.\nSome may use it to mark an issue as "seen" in the literal sense, while some may choose to use it to mark an issue as "addressed".'
  id: 'Attribute::LibOpt_StatisticSuboptimizerMPKappa::NrIssuesNotSeen.Name' value: 'NrIssuesNotSeen'
  id: 'Attribute::LibOpt_StatisticSuboptimizerMPKappa::PercentageOfElementsWithIssue.Description' value: 'The percentage of elements (values / aspects / etc.) collected by this statistic which has a `LibOpt_Issue` created for it.'
  id: 'Attribute::LibOpt_StatisticSuboptimizerMPKappa::PercentageOfElementsWithIssue.Name' value: 'PercentageOfElementsWithIssue'
  id: 'Attribute::LibOpt_StatisticSuboptimizerMPKappa::Priority.Description' value: 'The maximum priority of all the `LibOpt_Issues` relevant to the statistic.'
  id: 'Attribute::LibOpt_StatisticSuboptimizerMPKappa::Priority.Name' value: 'Priority'
  id: 'Attribute::LibOpt_StatisticSuboptimizerMPKappa::PriorityName.Description' value: 'A string representing the priority.'
  id: 'Attribute::LibOpt_StatisticSuboptimizerMPKappa::PriorityName.Name' value: 'PriorityName'
  id: 'Attribute::LibOpt_StatisticSuboptimizerMPKappa::Severity.Description' value: 'The severity of the statistic.\n\nFor statistics that work on iterations:\nThis is the average of highest 5% of severities related to the elements in this statistic.\n\nFor example, if we have a statistic with 100 elements, and 10 issues with severities : 4.0, 3.8, 3.7, 3.5, 1.4, 1.3, 0.3, 0.3, 0.3, 0.1, the severity of the statistic will be\naverage( 4.0, 3.8, 3.7, 3.5, 1.4 ) = 3.3\n\nIf there are no 5 issues, we give elements without an issue a severity of 0.\nFor example if we have a statistic with 100 elements, and 2 issues with severities : 4.0, 3.8, the severity of the statistic will be\naverage( 4.0, 3.8, 0.0, 0.0, 0.0 ) = 1.6\n\nWe add the zeroes so a statistic with 1 highly severe issue will not outrank a statistic with many medium-high severe issues.\nThe latter will probably cause more damage to the performance/quality of the optimizer, as it happens more often.\n\nFor statistics that work on scope elements:\nThis is the highest severity of its related issues.\n\nThe reason for this distinction is that it is OK to have a bad iteration, but a single bad scope element may ruin your entire plan.'
  id: 'Attribute::LibOpt_StatisticSuboptimizerMPKappa::Severity.Name' value: 'Severity'
  id: 'Attribute::LibOpt_StatisticSuboptimizerMPKappa::Type.Description' value: 'A short description for the type of this `LibOpt_Statistic`.'
  id: 'Attribute::LibOpt_StatisticSuboptimizerMPKappa::Type.Name' value: 'Type'
  id: 'Attribute::LibOpt_StatisticSuboptimizerMPKappa::UOM.Description' value: 'The unit of measurement for the values collected by this statistic.'
  id: 'Attribute::LibOpt_StatisticSuboptimizerMPKappa::UOM.Name' value: 'UOM'
  id: 'Attribute::LibOpt_StatisticSuboptimizerMPKappa::UpperThreshold.Description' value: 'The upper threshold used to determine whether to create `LibOpt_Issues` for values collected by this statistic.'
  id: 'Attribute::LibOpt_StatisticSuboptimizerMPKappa::UpperThreshold.Name' value: 'UpperThreshold'
  id: 'Attribute::LibOpt_StatisticSuboptimizerMPKappa::ValueType.Description' value: 'The type of values collected by this statistic.'
  id: 'Attribute::LibOpt_StatisticSuboptimizerMPKappa::ValueType.Name' value: 'ValueType'
  id: 'Attribute::LibOpt_StatisticSuboptimizerMPKappa::ValuesAsRealVector.Description' value: 'The `RealVector` of values collected by this statistic, stored in the form of a `BinaryValue`.'
  id: 'Attribute::LibOpt_StatisticSuboptimizerMPKappa::ValuesAsRealVector.Name' value: 'ValuesAsRealVector'
  id: 'Attribute::LibOpt_StatisticSuboptimizerMPRelativeGap::Description.Description' value: 'The description for this statistic.'
  id: 'Attribute::LibOpt_StatisticSuboptimizerMPRelativeGap::Description.Name' value: 'Description'
  id: 'Attribute::LibOpt_StatisticSuboptimizerMPRelativeGap::ExecutionNr.Description' value: 'The index indicating which `LibOpt_SnapshotMPs` this `LibOpt_StatisticSuboptimizerMP` should collect values from. In particular, this statistic would only look at `LibOpt_SnapshotMPs` which `ExecutionNr` matches this index.'
  id: 'Attribute::LibOpt_StatisticSuboptimizerMPRelativeGap::ExecutionNr.Name' value: 'ExecutionNr'
  id: 'Attribute::LibOpt_StatisticSuboptimizerMPRelativeGap::Focus.Description' value: 'A string that represents the object/aspect this statistic focuses on when collecting its values. It does not have to be unique as the relevant object/aspect could have multiple statistics.\n\nFor example, a `LibOpt_StatisticSuboptimizerMPInfeasible` statistic and a `LibOpt_StatisticSuboptimizerMPKappa` statistic can have the same `Focus` value of "MIP Subopt, Execution 2".\nThis means they both collect values about:\n- the `LibOpt_Component` (`LibOpt_SuboptimizerMP` in particular) with `LibOpt_SuboptimizerMP.Name` of "MIP Subopt", and\n- the 2nd MP execution of said MP suboptimizer.\n\nThe difference is that the former statistic focuses on infeasibility, while the latter statistic focuses on Kappa values.\nSee the `LibOpt_Statistic.Type` attribute for more details about this.'
  id: 'Attribute::LibOpt_StatisticSuboptimizerMPRelativeGap::Focus.Name' value: 'Focus'
  id: 'Attribute::LibOpt_StatisticSuboptimizerMPRelativeGap::GoalLevel.Description' value: 'The goal level of `LibOpt_SnapshotMPs` of a particular attribute (such as `LibOpt_SnapshotMP.GoalScores`, `LibOpt_SnapshotMP.RelativeGaps`, etc.) which this `LibOpt_StatisticSuboptimizerMP` should collect values from.\n\nFor example, suppose we have a `LibOpt_StatisticSuboptimizerMP` with `GoalLevel` of 2 which collect values about relative gap.\nThis statistic will then retrieve the values corresponding with the 2nd goal level stored on the `LibOpt_SnapshotMP.RelativeGaps` attribute of its related `LibOpt_SnapshotMPs`.'
  id: 'Attribute::LibOpt_StatisticSuboptimizerMPRelativeGap::GoalLevel.Name' value: 'GoalLevel'
  id: 'Attribute::LibOpt_StatisticSuboptimizerMPRelativeGap::ImgIssueType.Name' value: 'ImgIssueType'
  id: 'Attribute::LibOpt_StatisticSuboptimizerMPRelativeGap::ImgValueType.Name' value: 'ImgValueType'
  id: 'Attribute::LibOpt_StatisticSuboptimizerMPRelativeGap::LowerThreshold.Description' value: 'The lower threshold used to determine whether to create `LibOpt_Issues` for values collected by this statistic.'
  id: 'Attribute::LibOpt_StatisticSuboptimizerMPRelativeGap::LowerThreshold.Name' value: 'LowerThreshold'
  id: 'Attribute::LibOpt_StatisticSuboptimizerMPRelativeGap::MaxSeverityOfIssues.Description' value: 'The maximum `Severity` among the `LibOpt_Issues` created for this statistic.'
  id: 'Attribute::LibOpt_StatisticSuboptimizerMPRelativeGap::MaxSeverityOfIssues.Name' value: 'MaxSeverityOfIssues'
  id: 'Attribute::LibOpt_StatisticSuboptimizerMPRelativeGap::NrElements.Description' value: 'The number of elements (values / aspects / etc.) collected by this statistic.'
  id: 'Attribute::LibOpt_StatisticSuboptimizerMPRelativeGap::NrElements.Name' value: 'NrElements'
  id: 'Attribute::LibOpt_StatisticSuboptimizerMPRelativeGap::NrElementsWithIssue.Description' value: 'The number of elements (values / aspects / etc.) collected by this statistic which has a `LibOpt_Issue` created for it.'
  id: 'Attribute::LibOpt_StatisticSuboptimizerMPRelativeGap::NrElementsWithIssue.Name' value: 'NrElementsWithIssue'
  id: 'Attribute::LibOpt_StatisticSuboptimizerMPRelativeGap::NrIssuesNotSeen.Description' value: 'The number of `LibOpt_Issues` of this `LibOpt_Statistic` with `LibOpt_Issue.IsSeen` = `false`.\n\nNote:\nThe usage of `LibOpt_Issue.IsSeen` is subject to user\'s preference.\nSome may use it to mark an issue as "seen" in the literal sense, while some may choose to use it to mark an issue as "addressed".'
  id: 'Attribute::LibOpt_StatisticSuboptimizerMPRelativeGap::NrIssuesNotSeen.Name' value: 'NrIssuesNotSeen'
  id: 'Attribute::LibOpt_StatisticSuboptimizerMPRelativeGap::PercentageOfElementsWithIssue.Description' value: 'The percentage of elements (values / aspects / etc.) collected by this statistic which has a `LibOpt_Issue` created for it.'
  id: 'Attribute::LibOpt_StatisticSuboptimizerMPRelativeGap::PercentageOfElementsWithIssue.Name' value: 'PercentageOfElementsWithIssue'
  id: 'Attribute::LibOpt_StatisticSuboptimizerMPRelativeGap::Priority.Description' value: 'The maximum priority of all the `LibOpt_Issues` relevant to the statistic.'
  id: 'Attribute::LibOpt_StatisticSuboptimizerMPRelativeGap::Priority.Name' value: 'Priority'
  id: 'Attribute::LibOpt_StatisticSuboptimizerMPRelativeGap::PriorityName.Description' value: 'A string representing the priority.'
  id: 'Attribute::LibOpt_StatisticSuboptimizerMPRelativeGap::PriorityName.Name' value: 'PriorityName'
  id: 'Attribute::LibOpt_StatisticSuboptimizerMPRelativeGap::Severity.Description' value: 'The severity of the statistic.\n\nFor statistics that work on iterations:\nThis is the average of highest 5% of severities related to the elements in this statistic.\n\nFor example, if we have a statistic with 100 elements, and 10 issues with severities : 4.0, 3.8, 3.7, 3.5, 1.4, 1.3, 0.3, 0.3, 0.3, 0.1, the severity of the statistic will be\naverage( 4.0, 3.8, 3.7, 3.5, 1.4 ) = 3.3\n\nIf there are no 5 issues, we give elements without an issue a severity of 0.\nFor example if we have a statistic with 100 elements, and 2 issues with severities : 4.0, 3.8, the severity of the statistic will be\naverage( 4.0, 3.8, 0.0, 0.0, 0.0 ) = 1.6\n\nWe add the zeroes so a statistic with 1 highly severe issue will not outrank a statistic with many medium-high severe issues.\nThe latter will probably cause more damage to the performance/quality of the optimizer, as it happens more often.\n\nFor statistics that work on scope elements:\nThis is the highest severity of its related issues.\n\nThe reason for this distinction is that it is OK to have a bad iteration, but a single bad scope element may ruin your entire plan.'
  id: 'Attribute::LibOpt_StatisticSuboptimizerMPRelativeGap::Severity.Name' value: 'Severity'
  id: 'Attribute::LibOpt_StatisticSuboptimizerMPRelativeGap::Type.Description' value: 'A short description for the type of this `LibOpt_Statistic`.'
  id: 'Attribute::LibOpt_StatisticSuboptimizerMPRelativeGap::Type.Name' value: 'Type'
  id: 'Attribute::LibOpt_StatisticSuboptimizerMPRelativeGap::UOM.Description' value: 'The unit of measurement for the values collected by this statistic.'
  id: 'Attribute::LibOpt_StatisticSuboptimizerMPRelativeGap::UOM.Name' value: 'UOM'
  id: 'Attribute::LibOpt_StatisticSuboptimizerMPRelativeGap::UpperThreshold.Description' value: 'The upper threshold used to determine whether to create `LibOpt_Issues` for values collected by this statistic.'
  id: 'Attribute::LibOpt_StatisticSuboptimizerMPRelativeGap::UpperThreshold.Name' value: 'UpperThreshold'
  id: 'Attribute::LibOpt_StatisticSuboptimizerMPRelativeGap::ValueType.Description' value: 'The type of values collected by this statistic.'
  id: 'Attribute::LibOpt_StatisticSuboptimizerMPRelativeGap::ValueType.Name' value: 'ValueType'
  id: 'Attribute::LibOpt_StatisticSuboptimizerMPRelativeGap::ValuesAsRealVector.Description' value: 'The `RealVector` of values collected by this statistic, stored in the form of a `BinaryValue`.'
  id: 'Attribute::LibOpt_StatisticSuboptimizerMPRelativeGap::ValuesAsRealVector.Name' value: 'ValuesAsRealVector'
  id: 'Attribute::LibOpt_StatisticSuboptimizerRollback::Description.Description' value: 'The description for this statistic.'
  id: 'Attribute::LibOpt_StatisticSuboptimizerRollback::Description.Name' value: 'Description'
  id: 'Attribute::LibOpt_StatisticSuboptimizerRollback::Focus.Description' value: 'A string that represents the object/aspect this statistic focuses on when collecting its values. It does not have to be unique as the relevant object/aspect could have multiple statistics.\n\nFor example, a `LibOpt_StatisticSuboptimizerMPInfeasible` statistic and a `LibOpt_StatisticSuboptimizerMPKappa` statistic can have the same `Focus` value of "MIP Subopt, Execution 2".\nThis means they both collect values about:\n- the `LibOpt_Component` (`LibOpt_SuboptimizerMP` in particular) with `LibOpt_SuboptimizerMP.Name` of "MIP Subopt", and\n- the 2nd MP execution of said MP suboptimizer.\n\nThe difference is that the former statistic focuses on infeasibility, while the latter statistic focuses on Kappa values.\nSee the `LibOpt_Statistic.Type` attribute for more details about this.'
  id: 'Attribute::LibOpt_StatisticSuboptimizerRollback::Focus.Name' value: 'Focus'
  id: 'Attribute::LibOpt_StatisticSuboptimizerRollback::ImgIssueType.Name' value: 'ImgIssueType'
  id: 'Attribute::LibOpt_StatisticSuboptimizerRollback::ImgValueType.Name' value: 'ImgValueType'
  id: 'Attribute::LibOpt_StatisticSuboptimizerRollback::LowerThreshold.Description' value: 'The lower threshold used to determine whether to create `LibOpt_Issues` for values collected by this statistic.'
  id: 'Attribute::LibOpt_StatisticSuboptimizerRollback::LowerThreshold.Name' value: 'LowerThreshold'
  id: 'Attribute::LibOpt_StatisticSuboptimizerRollback::MaxSeverityOfIssues.Description' value: 'The maximum `Severity` among the `LibOpt_Issues` created for this statistic.'
  id: 'Attribute::LibOpt_StatisticSuboptimizerRollback::MaxSeverityOfIssues.Name' value: 'MaxSeverityOfIssues'
  id: 'Attribute::LibOpt_StatisticSuboptimizerRollback::NrElements.Description' value: 'The number of elements (values / aspects / etc.) collected by this statistic.'
  id: 'Attribute::LibOpt_StatisticSuboptimizerRollback::NrElements.Name' value: 'NrElements'
  id: 'Attribute::LibOpt_StatisticSuboptimizerRollback::NrElementsWithIssue.Description' value: 'The number of elements (values / aspects / etc.) collected by this statistic which has a `LibOpt_Issue` created for it.'
  id: 'Attribute::LibOpt_StatisticSuboptimizerRollback::NrElementsWithIssue.Name' value: 'NrElementsWithIssue'
  id: 'Attribute::LibOpt_StatisticSuboptimizerRollback::NrIssuesNotSeen.Description' value: 'The number of `LibOpt_Issues` of this `LibOpt_Statistic` with `LibOpt_Issue.IsSeen` = `false`.\n\nNote:\nThe usage of `LibOpt_Issue.IsSeen` is subject to user\'s preference.\nSome may use it to mark an issue as "seen" in the literal sense, while some may choose to use it to mark an issue as "addressed".'
  id: 'Attribute::LibOpt_StatisticSuboptimizerRollback::NrIssuesNotSeen.Name' value: 'NrIssuesNotSeen'
  id: 'Attribute::LibOpt_StatisticSuboptimizerRollback::PercentageOfElementsWithIssue.Description' value: 'The percentage of elements (values / aspects / etc.) collected by this statistic which has a `LibOpt_Issue` created for it.'
  id: 'Attribute::LibOpt_StatisticSuboptimizerRollback::PercentageOfElementsWithIssue.Name' value: 'PercentageOfElementsWithIssue'
  id: 'Attribute::LibOpt_StatisticSuboptimizerRollback::Priority.Description' value: 'The maximum priority of all the `LibOpt_Issues` relevant to the statistic.'
  id: 'Attribute::LibOpt_StatisticSuboptimizerRollback::Priority.Name' value: 'Priority'
  id: 'Attribute::LibOpt_StatisticSuboptimizerRollback::PriorityName.Description' value: 'A string representing the priority.'
  id: 'Attribute::LibOpt_StatisticSuboptimizerRollback::PriorityName.Name' value: 'PriorityName'
  id: 'Attribute::LibOpt_StatisticSuboptimizerRollback::Severity.Description' value: 'The severity of the statistic.\n\nFor statistics that work on iterations:\nThis is the average of highest 5% of severities related to the elements in this statistic.\n\nFor example, if we have a statistic with 100 elements, and 10 issues with severities : 4.0, 3.8, 3.7, 3.5, 1.4, 1.3, 0.3, 0.3, 0.3, 0.1, the severity of the statistic will be\naverage( 4.0, 3.8, 3.7, 3.5, 1.4 ) = 3.3\n\nIf there are no 5 issues, we give elements without an issue a severity of 0.\nFor example if we have a statistic with 100 elements, and 2 issues with severities : 4.0, 3.8, the severity of the statistic will be\naverage( 4.0, 3.8, 0.0, 0.0, 0.0 ) = 1.6\n\nWe add the zeroes so a statistic with 1 highly severe issue will not outrank a statistic with many medium-high severe issues.\nThe latter will probably cause more damage to the performance/quality of the optimizer, as it happens more often.\n\nFor statistics that work on scope elements:\nThis is the highest severity of its related issues.\n\nThe reason for this distinction is that it is OK to have a bad iteration, but a single bad scope element may ruin your entire plan.'
  id: 'Attribute::LibOpt_StatisticSuboptimizerRollback::Severity.Name' value: 'Severity'
  id: 'Attribute::LibOpt_StatisticSuboptimizerRollback::Type.Description' value: 'A short description for the type of this `LibOpt_Statistic`.'
  id: 'Attribute::LibOpt_StatisticSuboptimizerRollback::Type.Name' value: 'Type'
  id: 'Attribute::LibOpt_StatisticSuboptimizerRollback::UOM.Description' value: 'The unit of measurement for the values collected by this statistic.'
  id: 'Attribute::LibOpt_StatisticSuboptimizerRollback::UOM.Name' value: 'UOM'
  id: 'Attribute::LibOpt_StatisticSuboptimizerRollback::UpperThreshold.Description' value: 'The upper threshold used to determine whether to create `LibOpt_Issues` for values collected by this statistic.'
  id: 'Attribute::LibOpt_StatisticSuboptimizerRollback::UpperThreshold.Name' value: 'UpperThreshold'
  id: 'Attribute::LibOpt_StatisticSuboptimizerRollback::ValueType.Description' value: 'The type of values collected by this statistic.'
  id: 'Attribute::LibOpt_StatisticSuboptimizerRollback::ValueType.Name' value: 'ValueType'
  id: 'Attribute::LibOpt_StatisticSuboptimizerRollback::ValuesAsRealVector.Description' value: 'The `RealVector` of values collected by this statistic, stored in the form of a `BinaryValue`.'
  id: 'Attribute::LibOpt_StatisticSuboptimizerRollback::ValuesAsRealVector.Name' value: 'ValuesAsRealVector'
  id: 'Attribute::LibOpt_StatisticSummary::Average.Description' value: 'The average value of the set of the values collected by the owning `LibOpt_Statistic` of this `LibOpt_StatisticSummary`.'
  id: 'Attribute::LibOpt_StatisticSummary::Average.Name' value: 'Average'
  id: 'Attribute::LibOpt_StatisticSummary::IQR.Description' value: 'The interquartile range among the values collected by the owning `LibOpt_Statistic` of this `LibOpt_StatisticSummary`.\n\nThe interquartile range (IQR) is a measure of variability based on dividing a set of data into quartiles.\nIt indicates how spread out the middle 50% of the set of data is.\nIn comparison with the range (max - min), the IQR is less sensitive to outliers.\nAs such, it is useful to identify whether a value (in the set) is an outlier.\nSee how we use it in the `GetOutlierLowerThreshold` and `GetOutlierUpperThreshold` methods.\n\nQuartiles divides a set of data into four equal parts.\nThe values that split each part are known as:\n- The first quartile (Q1)\n- The second quartile (Q2 or median), and\n- The third quartile (Q3)'
  id: 'Attribute::LibOpt_StatisticSummary::IQR.Name' value: 'IQR'
  id: 'Attribute::LibOpt_StatisticSummary::Max.Description' value: 'The maximum value among the values collected by the owning `LibOpt_Statistic` of this `LibOpt_StatisticSummary`.'
  id: 'Attribute::LibOpt_StatisticSummary::Max.Name' value: 'Max'
  id: 'Attribute::LibOpt_StatisticSummary::Median.Description' value: 'The median (i.e. second quartile) among the values collected by the owning `LibOpt_Statistic` of this `LibOpt_StatisticSummary`.\n\nQuartiles divides a set of data into four equal parts.\nThe values that split each part are known as:\n- The first quartile (Q1)\n- The second quartile (Q2 or median), and\n- The third quartile (Q3)'
  id: 'Attribute::LibOpt_StatisticSummary::Median.Name' value: 'Median'
  id: 'Attribute::LibOpt_StatisticSummary::Min.Description' value: 'The minimum value among the values collected by the owning `LibOpt_Statistic` of this `LibOpt_StatisticSummary`.'
  id: 'Attribute::LibOpt_StatisticSummary::Min.Name' value: 'Min'
  id: 'Attribute::LibOpt_StatisticSummary::Q1.Description' value: 'The first quartile among the values collected by the owning `LibOpt_Statistic` of this `LibOpt_StatisticSummary`.\n\nQuartiles divides a set of data into four equal parts.\nThe values that split each part are known as:\n- The first quartile (Q1)\n- The second quartile (Q2 or median), and\n- The third quartile (Q3)'
  id: 'Attribute::LibOpt_StatisticSummary::Q1.Name' value: 'Q1'
  id: 'Attribute::LibOpt_StatisticSummary::Q3.Description' value: 'The third quartile among the values collected by the owning `LibOpt_Statistic` of this `LibOpt_StatisticSummary`.\n\nQuartiles divides a set of data into four equal parts.\nThe values that split each part are known as:\n- The first quartile (Q1)\n- The second quartile (Q2 or median), and\n- The third quartile (Q3)'
  id: 'Attribute::LibOpt_StatisticSummary::Q3.Name' value: 'Q3'
  id: 'Attribute::LibOpt_StatisticSummary::Range.Description' value: 'The difference between the maximum and minimum values among the set of values collected by the owning `LibOpt_Statistic` of this `LibOpt_StatisticSummary`.'
  id: 'Attribute::LibOpt_StatisticSummary::Range.Name' value: 'Range'
  id: 'Attribute::LibOpt_StatisticSummary::StandardDeviation.Description' value: 'The square root of the variance among the values collected by the owning `LibOpt_Statistic` of this `LibOpt_StatisticSummary`, where the variance is the average of the squared differences from the mean.'
  id: 'Attribute::LibOpt_StatisticSummary::StandardDeviation.Name' value: 'StandardDeviation'
  id: 'Attribute::LibOpt_StatisticTime::Description.Description' value: 'The description for this statistic.'
  id: 'Attribute::LibOpt_StatisticTime::Description.Name' value: 'Description'
  id: 'Attribute::LibOpt_StatisticTime::Focus.Description' value: 'A string that represents the object/aspect this statistic focuses on when collecting its values. It does not have to be unique as the relevant object/aspect could have multiple statistics.\n\nFor example, a `LibOpt_StatisticSuboptimizerMPInfeasible` statistic and a `LibOpt_StatisticSuboptimizerMPKappa` statistic can have the same `Focus` value of "MIP Subopt, Execution 2".\nThis means they both collect values about:\n- the `LibOpt_Component` (`LibOpt_SuboptimizerMP` in particular) with `LibOpt_SuboptimizerMP.Name` of "MIP Subopt", and\n- the 2nd MP execution of said MP suboptimizer.\n\nThe difference is that the former statistic focuses on infeasibility, while the latter statistic focuses on Kappa values.\nSee the `LibOpt_Statistic.Type` attribute for more details about this.'
  id: 'Attribute::LibOpt_StatisticTime::Focus.Name' value: 'Focus'
  id: 'Attribute::LibOpt_StatisticTime::HasChildrenComponent.Description' value: "This checks if the component type has an active component in the run.\n'True' indicates that the object is displayed on the application's 'Time details' form."
  id: 'Attribute::LibOpt_StatisticTime::HasChildrenComponent.Name' value: 'HasChildrenComponent'
  id: 'Attribute::LibOpt_StatisticTime::ImgIssueType.Name' value: 'ImgIssueType'
  id: 'Attribute::LibOpt_StatisticTime::ImgValueType.Name' value: 'ImgValueType'
  id: 'Attribute::LibOpt_StatisticTime::IsAbsolute.Description' value: 'Checks if the values collected by the statistic is of an absolute nature.'
  id: 'Attribute::LibOpt_StatisticTime::IsAbsolute.Name' value: 'IsAbsolute'
  id: 'Attribute::LibOpt_StatisticTime::IsComponent.Description' value: 'Checks if the statistic is pertaining to an instance of a `LibOpt_Component` type.'
  id: 'Attribute::LibOpt_StatisticTime::IsComponent.Name' value: 'IsComponent'
  id: 'Attribute::LibOpt_StatisticTime::IsRoot.Description' value: 'Checks if the statistic is pertaining to an instance of a `LibOpt_Run` type.'
  id: 'Attribute::LibOpt_StatisticTime::IsRoot.Name' value: 'IsRoot'
  id: 'Attribute::LibOpt_StatisticTime::IsType.Description' value: "Checks if the statistic is pertaining to a set of instances of `LibOpt_Statistic` of a particular `LibOpt_Component` subtype.\nThe relevant subtypes are either one of `LibOpt_Iterator`, `LibOpt_Selector`, `LibOpt_Suboptimizer`, `LibOpt_Switch`, `LibOpt_Transformer`.\nIf it is not one of those subtypes, the statistic is classified as 'Unknown' component type."
  id: 'Attribute::LibOpt_StatisticTime::IsType.Name' value: 'IsType'
  id: 'Attribute::LibOpt_StatisticTime::LowerThreshold.Description' value: 'The lower threshold used to determine whether to create `LibOpt_Issues` for values collected by this statistic.'
  id: 'Attribute::LibOpt_StatisticTime::LowerThreshold.Name' value: 'LowerThreshold'
  id: 'Attribute::LibOpt_StatisticTime::MaxSeverityOfIssues.Description' value: 'The maximum `Severity` among the `LibOpt_Issues` created for this statistic.'
  id: 'Attribute::LibOpt_StatisticTime::MaxSeverityOfIssues.Name' value: 'MaxSeverityOfIssues'
  id: 'Attribute::LibOpt_StatisticTime::NrElements.Description' value: 'The number of elements (values / aspects / etc.) collected by this statistic.'
  id: 'Attribute::LibOpt_StatisticTime::NrElements.Name' value: 'NrElements'
  id: 'Attribute::LibOpt_StatisticTime::NrElementsWithIssue.Description' value: 'The number of elements (values / aspects / etc.) collected by this statistic which has a `LibOpt_Issue` created for it.'
  id: 'Attribute::LibOpt_StatisticTime::NrElementsWithIssue.Name' value: 'NrElementsWithIssue'
  id: 'Attribute::LibOpt_StatisticTime::NrIssuesNotSeen.Description' value: 'The number of `LibOpt_Issues` of this `LibOpt_Statistic` with `LibOpt_Issue.IsSeen` = `false`.\n\nNote:\nThe usage of `LibOpt_Issue.IsSeen` is subject to user\'s preference.\nSome may use it to mark an issue as "seen" in the literal sense, while some may choose to use it to mark an issue as "addressed".'
  id: 'Attribute::LibOpt_StatisticTime::NrIssuesNotSeen.Name' value: 'NrIssuesNotSeen'
  id: 'Attribute::LibOpt_StatisticTime::PercentageOfElementsWithIssue.Description' value: 'The percentage of elements (values / aspects / etc.) collected by this statistic which has a `LibOpt_Issue` created for it.'
  id: 'Attribute::LibOpt_StatisticTime::PercentageOfElementsWithIssue.Name' value: 'PercentageOfElementsWithIssue'
  id: 'Attribute::LibOpt_StatisticTime::Priority.Description' value: 'The maximum priority of all the `LibOpt_Issues` relevant to the statistic.'
  id: 'Attribute::LibOpt_StatisticTime::Priority.Name' value: 'Priority'
  id: 'Attribute::LibOpt_StatisticTime::PriorityName.Description' value: 'A string representing the priority.'
  id: 'Attribute::LibOpt_StatisticTime::PriorityName.Name' value: 'PriorityName'
  id: 'Attribute::LibOpt_StatisticTime::Severity.Description' value: 'The severity of the statistic.\n\nFor statistics that work on iterations:\nThis is the average of highest 5% of severities related to the elements in this statistic.\n\nFor example, if we have a statistic with 100 elements, and 10 issues with severities : 4.0, 3.8, 3.7, 3.5, 1.4, 1.3, 0.3, 0.3, 0.3, 0.1, the severity of the statistic will be\naverage( 4.0, 3.8, 3.7, 3.5, 1.4 ) = 3.3\n\nIf there are no 5 issues, we give elements without an issue a severity of 0.\nFor example if we have a statistic with 100 elements, and 2 issues with severities : 4.0, 3.8, the severity of the statistic will be\naverage( 4.0, 3.8, 0.0, 0.0, 0.0 ) = 1.6\n\nWe add the zeroes so a statistic with 1 highly severe issue will not outrank a statistic with many medium-high severe issues.\nThe latter will probably cause more damage to the performance/quality of the optimizer, as it happens more often.\n\nFor statistics that work on scope elements:\nThis is the highest severity of its related issues.\n\nThe reason for this distinction is that it is OK to have a bad iteration, but a single bad scope element may ruin your entire plan.'
  id: 'Attribute::LibOpt_StatisticTime::Severity.Name' value: 'Severity'
  id: 'Attribute::LibOpt_StatisticTime::TimeFocus.Description' value: 'A string that represents the object/aspect this `LibOpt_StatisticTime` focuses on when collecting its duration-related values.\n\nExamples of possible values set for this attribute:\n- Run 1: Iteration time\n- Suboptimizers\n- POA Suboptimizer'
  id: 'Attribute::LibOpt_StatisticTime::TimeFocus.Name' value: 'TimeFocus'
  id: 'Attribute::LibOpt_StatisticTime::TotalDuration.Description' value: 'The total duration spent on component execution.'
  id: 'Attribute::LibOpt_StatisticTime::TotalDuration.Name' value: 'TotalDuration'
  id: 'Attribute::LibOpt_StatisticTime::Type.Description' value: 'A short description for the type of this `LibOpt_Statistic`.'
  id: 'Attribute::LibOpt_StatisticTime::Type.Name' value: 'Type'
  id: 'Attribute::LibOpt_StatisticTime::UOM.Description' value: 'The unit of measurement for the values collected by this statistic.'
  id: 'Attribute::LibOpt_StatisticTime::UOM.Name' value: 'UOM'
  id: 'Attribute::LibOpt_StatisticTime::UpperThreshold.Description' value: 'The upper threshold used to determine whether to create `LibOpt_Issues` for values collected by this statistic.'
  id: 'Attribute::LibOpt_StatisticTime::UpperThreshold.Name' value: 'UpperThreshold'
  id: 'Attribute::LibOpt_StatisticTime::ValueType.Description' value: 'The type of values collected by this statistic.'
  id: 'Attribute::LibOpt_StatisticTime::ValueType.Name' value: 'ValueType'
  id: 'Attribute::LibOpt_StatisticTime::ValuesAsRealVector.Description' value: 'The `RealVector` of values collected by this statistic, stored in the form of a `BinaryValue`.'
  id: 'Attribute::LibOpt_StatisticTime::ValuesAsRealVector.Name' value: 'ValuesAsRealVector'
  id: 'Attribute::LibOpt_StatisticTimeSuboptimizer::Description.Description' value: 'The description for this statistic.'
  id: 'Attribute::LibOpt_StatisticTimeSuboptimizer::Description.Name' value: 'Description'
  id: 'Attribute::LibOpt_StatisticTimeSuboptimizer::Focus.Description' value: 'A string that represents the object/aspect this statistic focuses on when collecting its values. It does not have to be unique as the relevant object/aspect could have multiple statistics.\n\nFor example, a `LibOpt_StatisticSuboptimizerMPInfeasible` statistic and a `LibOpt_StatisticSuboptimizerMPKappa` statistic can have the same `Focus` value of "MIP Subopt, Execution 2".\nThis means they both collect values about:\n- the `LibOpt_Component` (`LibOpt_SuboptimizerMP` in particular) with `LibOpt_SuboptimizerMP.Name` of "MIP Subopt", and\n- the 2nd MP execution of said MP suboptimizer.\n\nThe difference is that the former statistic focuses on infeasibility, while the latter statistic focuses on Kappa values.\nSee the `LibOpt_Statistic.Type` attribute for more details about this.'
  id: 'Attribute::LibOpt_StatisticTimeSuboptimizer::Focus.Name' value: 'Focus'
  id: 'Attribute::LibOpt_StatisticTimeSuboptimizer::HasChildrenComponent.Description' value: "This checks if the component type has an active component in the run.\n'True' indicates that the object is displayed on the application's 'Time details' form."
  id: 'Attribute::LibOpt_StatisticTimeSuboptimizer::HasChildrenComponent.Name' value: 'HasChildrenComponent'
  id: 'Attribute::LibOpt_StatisticTimeSuboptimizer::ImgIssueType.Name' value: 'ImgIssueType'
  id: 'Attribute::LibOpt_StatisticTimeSuboptimizer::ImgValueType.Name' value: 'ImgValueType'
  id: 'Attribute::LibOpt_StatisticTimeSuboptimizer::IsAbsolute.Description' value: 'Checks if the values collected by the statistic is of an absolute nature.'
  id: 'Attribute::LibOpt_StatisticTimeSuboptimizer::IsAbsolute.Name' value: 'IsAbsolute'
  id: 'Attribute::LibOpt_StatisticTimeSuboptimizer::IsComponent.Description' value: 'Checks if the statistic is pertaining to an instance of a `LibOpt_Component` type.'
  id: 'Attribute::LibOpt_StatisticTimeSuboptimizer::IsComponent.Name' value: 'IsComponent'
  id: 'Attribute::LibOpt_StatisticTimeSuboptimizer::IsRoot.Description' value: 'Checks if the statistic is pertaining to an instance of a `LibOpt_Run` type.'
  id: 'Attribute::LibOpt_StatisticTimeSuboptimizer::IsRoot.Name' value: 'IsRoot'
  id: 'Attribute::LibOpt_StatisticTimeSuboptimizer::IsType.Description' value: "Checks if the statistic is pertaining to a set of instances of `LibOpt_Statistic` of a particular `LibOpt_Component` subtype.\nThe relevant subtypes are either one of `LibOpt_Iterator`, `LibOpt_Selector`, `LibOpt_Suboptimizer`, `LibOpt_Switch`, `LibOpt_Transformer`.\nIf it is not one of those subtypes, the statistic is classified as 'Unknown' component type."
  id: 'Attribute::LibOpt_StatisticTimeSuboptimizer::IsType.Name' value: 'IsType'
  id: 'Attribute::LibOpt_StatisticTimeSuboptimizer::LowerThreshold.Description' value: 'The lower threshold used to determine whether to create `LibOpt_Issues` for values collected by this statistic.'
  id: 'Attribute::LibOpt_StatisticTimeSuboptimizer::LowerThreshold.Name' value: 'LowerThreshold'
  id: 'Attribute::LibOpt_StatisticTimeSuboptimizer::MaxSeverityOfIssues.Description' value: 'The maximum `Severity` among the `LibOpt_Issues` created for this statistic.'
  id: 'Attribute::LibOpt_StatisticTimeSuboptimizer::MaxSeverityOfIssues.Name' value: 'MaxSeverityOfIssues'
  id: 'Attribute::LibOpt_StatisticTimeSuboptimizer::NrElements.Description' value: 'The number of elements (values / aspects / etc.) collected by this statistic.'
  id: 'Attribute::LibOpt_StatisticTimeSuboptimizer::NrElements.Name' value: 'NrElements'
  id: 'Attribute::LibOpt_StatisticTimeSuboptimizer::NrElementsWithIssue.Description' value: 'The number of elements (values / aspects / etc.) collected by this statistic which has a `LibOpt_Issue` created for it.'
  id: 'Attribute::LibOpt_StatisticTimeSuboptimizer::NrElementsWithIssue.Name' value: 'NrElementsWithIssue'
  id: 'Attribute::LibOpt_StatisticTimeSuboptimizer::NrIssuesNotSeen.Description' value: 'The number of `LibOpt_Issues` of this `LibOpt_Statistic` with `LibOpt_Issue.IsSeen` = `false`.\n\nNote:\nThe usage of `LibOpt_Issue.IsSeen` is subject to user\'s preference.\nSome may use it to mark an issue as "seen" in the literal sense, while some may choose to use it to mark an issue as "addressed".'
  id: 'Attribute::LibOpt_StatisticTimeSuboptimizer::NrIssuesNotSeen.Name' value: 'NrIssuesNotSeen'
  id: 'Attribute::LibOpt_StatisticTimeSuboptimizer::PercentageOfElementsWithIssue.Description' value: 'The percentage of elements (values / aspects / etc.) collected by this statistic which has a `LibOpt_Issue` created for it.'
  id: 'Attribute::LibOpt_StatisticTimeSuboptimizer::PercentageOfElementsWithIssue.Name' value: 'PercentageOfElementsWithIssue'
  id: 'Attribute::LibOpt_StatisticTimeSuboptimizer::Priority.Description' value: 'The maximum priority of all the `LibOpt_Issues` relevant to the statistic.'
  id: 'Attribute::LibOpt_StatisticTimeSuboptimizer::Priority.Name' value: 'Priority'
  id: 'Attribute::LibOpt_StatisticTimeSuboptimizer::PriorityName.Description' value: 'A string representing the priority.'
  id: 'Attribute::LibOpt_StatisticTimeSuboptimizer::PriorityName.Name' value: 'PriorityName'
  id: 'Attribute::LibOpt_StatisticTimeSuboptimizer::Severity.Description' value: 'The severity of the statistic.\n\nFor statistics that work on iterations:\nThis is the average of highest 5% of severities related to the elements in this statistic.\n\nFor example, if we have a statistic with 100 elements, and 10 issues with severities : 4.0, 3.8, 3.7, 3.5, 1.4, 1.3, 0.3, 0.3, 0.3, 0.1, the severity of the statistic will be\naverage( 4.0, 3.8, 3.7, 3.5, 1.4 ) = 3.3\n\nIf there are no 5 issues, we give elements without an issue a severity of 0.\nFor example if we have a statistic with 100 elements, and 2 issues with severities : 4.0, 3.8, the severity of the statistic will be\naverage( 4.0, 3.8, 0.0, 0.0, 0.0 ) = 1.6\n\nWe add the zeroes so a statistic with 1 highly severe issue will not outrank a statistic with many medium-high severe issues.\nThe latter will probably cause more damage to the performance/quality of the optimizer, as it happens more often.\n\nFor statistics that work on scope elements:\nThis is the highest severity of its related issues.\n\nThe reason for this distinction is that it is OK to have a bad iteration, but a single bad scope element may ruin your entire plan.'
  id: 'Attribute::LibOpt_StatisticTimeSuboptimizer::Severity.Name' value: 'Severity'
  id: 'Attribute::LibOpt_StatisticTimeSuboptimizer::TimeFocus.Description' value: 'A string that represents the object/aspect this `LibOpt_StatisticTime` focuses on when collecting its duration-related values.\n\nExamples of possible values set for this attribute:\n- Run 1: Iteration time\n- Suboptimizers\n- POA Suboptimizer'
  id: 'Attribute::LibOpt_StatisticTimeSuboptimizer::TimeFocus.Name' value: 'TimeFocus'
  id: 'Attribute::LibOpt_StatisticTimeSuboptimizer::TotalDuration.Description' value: 'The total duration spent on component execution.'
  id: 'Attribute::LibOpt_StatisticTimeSuboptimizer::TotalDuration.Name' value: 'TotalDuration'
  id: 'Attribute::LibOpt_StatisticTimeSuboptimizer::Type.Description' value: 'A short description for the type of this `LibOpt_Statistic`.'
  id: 'Attribute::LibOpt_StatisticTimeSuboptimizer::Type.Name' value: 'Type'
  id: 'Attribute::LibOpt_StatisticTimeSuboptimizer::UOM.Description' value: 'The unit of measurement for the values collected by this statistic.'
  id: 'Attribute::LibOpt_StatisticTimeSuboptimizer::UOM.Name' value: 'UOM'
  id: 'Attribute::LibOpt_StatisticTimeSuboptimizer::UpperThreshold.Description' value: 'The upper threshold used to determine whether to create `LibOpt_Issues` for values collected by this statistic.'
  id: 'Attribute::LibOpt_StatisticTimeSuboptimizer::UpperThreshold.Name' value: 'UpperThreshold'
  id: 'Attribute::LibOpt_StatisticTimeSuboptimizer::ValueType.Description' value: 'The type of values collected by this statistic.'
  id: 'Attribute::LibOpt_StatisticTimeSuboptimizer::ValueType.Name' value: 'ValueType'
  id: 'Attribute::LibOpt_StatisticTimeSuboptimizer::ValuesAsRealVector.Description' value: 'The `RealVector` of values collected by this statistic, stored in the form of a `BinaryValue`.'
  id: 'Attribute::LibOpt_StatisticTimeSuboptimizer::ValuesAsRealVector.Name' value: 'ValuesAsRealVector'
  id: 'Attribute::LibOpt_StatisticTimeSuboptimizerHandleResult::Description.Description' value: 'The description for this statistic.'
  id: 'Attribute::LibOpt_StatisticTimeSuboptimizerHandleResult::Description.Name' value: 'Description'
  id: 'Attribute::LibOpt_StatisticTimeSuboptimizerHandleResult::Focus.Description' value: 'A string that represents the object/aspect this statistic focuses on when collecting its values. It does not have to be unique as the relevant object/aspect could have multiple statistics.\n\nFor example, a `LibOpt_StatisticSuboptimizerMPInfeasible` statistic and a `LibOpt_StatisticSuboptimizerMPKappa` statistic can have the same `Focus` value of "MIP Subopt, Execution 2".\nThis means they both collect values about:\n- the `LibOpt_Component` (`LibOpt_SuboptimizerMP` in particular) with `LibOpt_SuboptimizerMP.Name` of "MIP Subopt", and\n- the 2nd MP execution of said MP suboptimizer.\n\nThe difference is that the former statistic focuses on infeasibility, while the latter statistic focuses on Kappa values.\nSee the `LibOpt_Statistic.Type` attribute for more details about this.'
  id: 'Attribute::LibOpt_StatisticTimeSuboptimizerHandleResult::Focus.Name' value: 'Focus'
  id: 'Attribute::LibOpt_StatisticTimeSuboptimizerHandleResult::HasChildrenComponent.Description' value: "This checks if the component type has an active component in the run.\n'True' indicates that the object is displayed on the application's 'Time details' form."
  id: 'Attribute::LibOpt_StatisticTimeSuboptimizerHandleResult::HasChildrenComponent.Name' value: 'HasChildrenComponent'
  id: 'Attribute::LibOpt_StatisticTimeSuboptimizerHandleResult::ImgIssueType.Name' value: 'ImgIssueType'
  id: 'Attribute::LibOpt_StatisticTimeSuboptimizerHandleResult::ImgValueType.Name' value: 'ImgValueType'
  id: 'Attribute::LibOpt_StatisticTimeSuboptimizerHandleResult::IsAbsolute.Description' value: 'Checks if the values collected by the statistic is of an absolute nature.'
  id: 'Attribute::LibOpt_StatisticTimeSuboptimizerHandleResult::IsAbsolute.Name' value: 'IsAbsolute'
  id: 'Attribute::LibOpt_StatisticTimeSuboptimizerHandleResult::IsComponent.Description' value: 'Checks if the statistic is pertaining to an instance of a `LibOpt_Component` type.'
  id: 'Attribute::LibOpt_StatisticTimeSuboptimizerHandleResult::IsComponent.Name' value: 'IsComponent'
  id: 'Attribute::LibOpt_StatisticTimeSuboptimizerHandleResult::IsRoot.Description' value: 'Checks if the statistic is pertaining to an instance of a `LibOpt_Run` type.'
  id: 'Attribute::LibOpt_StatisticTimeSuboptimizerHandleResult::IsRoot.Name' value: 'IsRoot'
  id: 'Attribute::LibOpt_StatisticTimeSuboptimizerHandleResult::IsType.Description' value: "Checks if the statistic is pertaining to a set of instances of `LibOpt_Statistic` of a particular `LibOpt_Component` subtype.\nThe relevant subtypes are either one of `LibOpt_Iterator`, `LibOpt_Selector`, `LibOpt_Suboptimizer`, `LibOpt_Switch`, `LibOpt_Transformer`.\nIf it is not one of those subtypes, the statistic is classified as 'Unknown' component type."
  id: 'Attribute::LibOpt_StatisticTimeSuboptimizerHandleResult::IsType.Name' value: 'IsType'
  id: 'Attribute::LibOpt_StatisticTimeSuboptimizerHandleResult::LowerThreshold.Description' value: 'The lower threshold used to determine whether to create `LibOpt_Issues` for values collected by this statistic.'
  id: 'Attribute::LibOpt_StatisticTimeSuboptimizerHandleResult::LowerThreshold.Name' value: 'LowerThreshold'
  id: 'Attribute::LibOpt_StatisticTimeSuboptimizerHandleResult::MaxSeverityOfIssues.Description' value: 'The maximum `Severity` among the `LibOpt_Issues` created for this statistic.'
  id: 'Attribute::LibOpt_StatisticTimeSuboptimizerHandleResult::MaxSeverityOfIssues.Name' value: 'MaxSeverityOfIssues'
  id: 'Attribute::LibOpt_StatisticTimeSuboptimizerHandleResult::NrElements.Description' value: 'The number of elements (values / aspects / etc.) collected by this statistic.'
  id: 'Attribute::LibOpt_StatisticTimeSuboptimizerHandleResult::NrElements.Name' value: 'NrElements'
  id: 'Attribute::LibOpt_StatisticTimeSuboptimizerHandleResult::NrElementsWithIssue.Description' value: 'The number of elements (values / aspects / etc.) collected by this statistic which has a `LibOpt_Issue` created for it.'
  id: 'Attribute::LibOpt_StatisticTimeSuboptimizerHandleResult::NrElementsWithIssue.Name' value: 'NrElementsWithIssue'
  id: 'Attribute::LibOpt_StatisticTimeSuboptimizerHandleResult::NrIssuesNotSeen.Description' value: 'The number of `LibOpt_Issues` of this `LibOpt_Statistic` with `LibOpt_Issue.IsSeen` = `false`.\n\nNote:\nThe usage of `LibOpt_Issue.IsSeen` is subject to user\'s preference.\nSome may use it to mark an issue as "seen" in the literal sense, while some may choose to use it to mark an issue as "addressed".'
  id: 'Attribute::LibOpt_StatisticTimeSuboptimizerHandleResult::NrIssuesNotSeen.Name' value: 'NrIssuesNotSeen'
  id: 'Attribute::LibOpt_StatisticTimeSuboptimizerHandleResult::PercentageOfElementsWithIssue.Description' value: 'The percentage of elements (values / aspects / etc.) collected by this statistic which has a `LibOpt_Issue` created for it.'
  id: 'Attribute::LibOpt_StatisticTimeSuboptimizerHandleResult::PercentageOfElementsWithIssue.Name' value: 'PercentageOfElementsWithIssue'
  id: 'Attribute::LibOpt_StatisticTimeSuboptimizerHandleResult::Priority.Description' value: 'The maximum priority of all the `LibOpt_Issues` relevant to the statistic.'
  id: 'Attribute::LibOpt_StatisticTimeSuboptimizerHandleResult::Priority.Name' value: 'Priority'
  id: 'Attribute::LibOpt_StatisticTimeSuboptimizerHandleResult::PriorityName.Description' value: 'A string representing the priority.'
  id: 'Attribute::LibOpt_StatisticTimeSuboptimizerHandleResult::PriorityName.Name' value: 'PriorityName'
  id: 'Attribute::LibOpt_StatisticTimeSuboptimizerHandleResult::Severity.Description' value: 'The severity of the statistic.\n\nFor statistics that work on iterations:\nThis is the average of highest 5% of severities related to the elements in this statistic.\n\nFor example, if we have a statistic with 100 elements, and 10 issues with severities : 4.0, 3.8, 3.7, 3.5, 1.4, 1.3, 0.3, 0.3, 0.3, 0.1, the severity of the statistic will be\naverage( 4.0, 3.8, 3.7, 3.5, 1.4 ) = 3.3\n\nIf there are no 5 issues, we give elements without an issue a severity of 0.\nFor example if we have a statistic with 100 elements, and 2 issues with severities : 4.0, 3.8, the severity of the statistic will be\naverage( 4.0, 3.8, 0.0, 0.0, 0.0 ) = 1.6\n\nWe add the zeroes so a statistic with 1 highly severe issue will not outrank a statistic with many medium-high severe issues.\nThe latter will probably cause more damage to the performance/quality of the optimizer, as it happens more often.\n\nFor statistics that work on scope elements:\nThis is the highest severity of its related issues.\n\nThe reason for this distinction is that it is OK to have a bad iteration, but a single bad scope element may ruin your entire plan.'
  id: 'Attribute::LibOpt_StatisticTimeSuboptimizerHandleResult::Severity.Name' value: 'Severity'
  id: 'Attribute::LibOpt_StatisticTimeSuboptimizerHandleResult::TimeFocus.Description' value: 'A string that represents the object/aspect this `LibOpt_StatisticTime` focuses on when collecting its duration-related values.\n\nExamples of possible values set for this attribute:\n- Run 1: Iteration time\n- Suboptimizers\n- POA Suboptimizer'
  id: 'Attribute::LibOpt_StatisticTimeSuboptimizerHandleResult::TimeFocus.Name' value: 'TimeFocus'
  id: 'Attribute::LibOpt_StatisticTimeSuboptimizerHandleResult::TotalDuration.Description' value: 'The total duration spent on component execution.'
  id: 'Attribute::LibOpt_StatisticTimeSuboptimizerHandleResult::TotalDuration.Name' value: 'TotalDuration'
  id: 'Attribute::LibOpt_StatisticTimeSuboptimizerHandleResult::Type.Description' value: 'A short description for the type of this `LibOpt_Statistic`.'
  id: 'Attribute::LibOpt_StatisticTimeSuboptimizerHandleResult::Type.Name' value: 'Type'
  id: 'Attribute::LibOpt_StatisticTimeSuboptimizerHandleResult::UOM.Description' value: 'The unit of measurement for the values collected by this statistic.'
  id: 'Attribute::LibOpt_StatisticTimeSuboptimizerHandleResult::UOM.Name' value: 'UOM'
  id: 'Attribute::LibOpt_StatisticTimeSuboptimizerHandleResult::UpperThreshold.Description' value: 'The upper threshold used to determine whether to create `LibOpt_Issues` for values collected by this statistic.'
  id: 'Attribute::LibOpt_StatisticTimeSuboptimizerHandleResult::UpperThreshold.Name' value: 'UpperThreshold'
  id: 'Attribute::LibOpt_StatisticTimeSuboptimizerHandleResult::ValueType.Description' value: 'The type of values collected by this statistic.'
  id: 'Attribute::LibOpt_StatisticTimeSuboptimizerHandleResult::ValueType.Name' value: 'ValueType'
  id: 'Attribute::LibOpt_StatisticTimeSuboptimizerHandleResult::ValuesAsRealVector.Description' value: 'The `RealVector` of values collected by this statistic, stored in the form of a `BinaryValue`.'
  id: 'Attribute::LibOpt_StatisticTimeSuboptimizerHandleResult::ValuesAsRealVector.Name' value: 'ValuesAsRealVector'
  id: 'Attribute::LibOpt_StatisticTimeSuboptimizerInitialize::Description.Description' value: 'The description for this statistic.'
  id: 'Attribute::LibOpt_StatisticTimeSuboptimizerInitialize::Description.Name' value: 'Description'
  id: 'Attribute::LibOpt_StatisticTimeSuboptimizerInitialize::Focus.Description' value: 'A string that represents the object/aspect this statistic focuses on when collecting its values. It does not have to be unique as the relevant object/aspect could have multiple statistics.\n\nFor example, a `LibOpt_StatisticSuboptimizerMPInfeasible` statistic and a `LibOpt_StatisticSuboptimizerMPKappa` statistic can have the same `Focus` value of "MIP Subopt, Execution 2".\nThis means they both collect values about:\n- the `LibOpt_Component` (`LibOpt_SuboptimizerMP` in particular) with `LibOpt_SuboptimizerMP.Name` of "MIP Subopt", and\n- the 2nd MP execution of said MP suboptimizer.\n\nThe difference is that the former statistic focuses on infeasibility, while the latter statistic focuses on Kappa values.\nSee the `LibOpt_Statistic.Type` attribute for more details about this.'
  id: 'Attribute::LibOpt_StatisticTimeSuboptimizerInitialize::Focus.Name' value: 'Focus'
  id: 'Attribute::LibOpt_StatisticTimeSuboptimizerInitialize::HasChildrenComponent.Description' value: "This checks if the component type has an active component in the run.\n'True' indicates that the object is displayed on the application's 'Time details' form."
  id: 'Attribute::LibOpt_StatisticTimeSuboptimizerInitialize::HasChildrenComponent.Name' value: 'HasChildrenComponent'
  id: 'Attribute::LibOpt_StatisticTimeSuboptimizerInitialize::ImgIssueType.Name' value: 'ImgIssueType'
  id: 'Attribute::LibOpt_StatisticTimeSuboptimizerInitialize::ImgValueType.Name' value: 'ImgValueType'
  id: 'Attribute::LibOpt_StatisticTimeSuboptimizerInitialize::IsAbsolute.Description' value: 'Checks if the values collected by the statistic is of an absolute nature.'
  id: 'Attribute::LibOpt_StatisticTimeSuboptimizerInitialize::IsAbsolute.Name' value: 'IsAbsolute'
  id: 'Attribute::LibOpt_StatisticTimeSuboptimizerInitialize::IsComponent.Description' value: 'Checks if the statistic is pertaining to an instance of a `LibOpt_Component` type.'
  id: 'Attribute::LibOpt_StatisticTimeSuboptimizerInitialize::IsComponent.Name' value: 'IsComponent'
  id: 'Attribute::LibOpt_StatisticTimeSuboptimizerInitialize::IsRoot.Description' value: 'Checks if the statistic is pertaining to an instance of a `LibOpt_Run` type.'
  id: 'Attribute::LibOpt_StatisticTimeSuboptimizerInitialize::IsRoot.Name' value: 'IsRoot'
  id: 'Attribute::LibOpt_StatisticTimeSuboptimizerInitialize::IsType.Description' value: "Checks if the statistic is pertaining to a set of instances of `LibOpt_Statistic` of a particular `LibOpt_Component` subtype.\nThe relevant subtypes are either one of `LibOpt_Iterator`, `LibOpt_Selector`, `LibOpt_Suboptimizer`, `LibOpt_Switch`, `LibOpt_Transformer`.\nIf it is not one of those subtypes, the statistic is classified as 'Unknown' component type."
  id: 'Attribute::LibOpt_StatisticTimeSuboptimizerInitialize::IsType.Name' value: 'IsType'
  id: 'Attribute::LibOpt_StatisticTimeSuboptimizerInitialize::LowerThreshold.Description' value: 'The lower threshold used to determine whether to create `LibOpt_Issues` for values collected by this statistic.'
  id: 'Attribute::LibOpt_StatisticTimeSuboptimizerInitialize::LowerThreshold.Name' value: 'LowerThreshold'
  id: 'Attribute::LibOpt_StatisticTimeSuboptimizerInitialize::MaxSeverityOfIssues.Description' value: 'The maximum `Severity` among the `LibOpt_Issues` created for this statistic.'
  id: 'Attribute::LibOpt_StatisticTimeSuboptimizerInitialize::MaxSeverityOfIssues.Name' value: 'MaxSeverityOfIssues'
  id: 'Attribute::LibOpt_StatisticTimeSuboptimizerInitialize::NrElements.Description' value: 'The number of elements (values / aspects / etc.) collected by this statistic.'
  id: 'Attribute::LibOpt_StatisticTimeSuboptimizerInitialize::NrElements.Name' value: 'NrElements'
  id: 'Attribute::LibOpt_StatisticTimeSuboptimizerInitialize::NrElementsWithIssue.Description' value: 'The number of elements (values / aspects / etc.) collected by this statistic which has a `LibOpt_Issue` created for it.'
  id: 'Attribute::LibOpt_StatisticTimeSuboptimizerInitialize::NrElementsWithIssue.Name' value: 'NrElementsWithIssue'
  id: 'Attribute::LibOpt_StatisticTimeSuboptimizerInitialize::NrIssuesNotSeen.Description' value: 'The number of `LibOpt_Issues` of this `LibOpt_Statistic` with `LibOpt_Issue.IsSeen` = `false`.\n\nNote:\nThe usage of `LibOpt_Issue.IsSeen` is subject to user\'s preference.\nSome may use it to mark an issue as "seen" in the literal sense, while some may choose to use it to mark an issue as "addressed".'
  id: 'Attribute::LibOpt_StatisticTimeSuboptimizerInitialize::NrIssuesNotSeen.Name' value: 'NrIssuesNotSeen'
  id: 'Attribute::LibOpt_StatisticTimeSuboptimizerInitialize::PercentageOfElementsWithIssue.Description' value: 'The percentage of elements (values / aspects / etc.) collected by this statistic which has a `LibOpt_Issue` created for it.'
  id: 'Attribute::LibOpt_StatisticTimeSuboptimizerInitialize::PercentageOfElementsWithIssue.Name' value: 'PercentageOfElementsWithIssue'
  id: 'Attribute::LibOpt_StatisticTimeSuboptimizerInitialize::Priority.Description' value: 'The maximum priority of all the `LibOpt_Issues` relevant to the statistic.'
  id: 'Attribute::LibOpt_StatisticTimeSuboptimizerInitialize::Priority.Name' value: 'Priority'
  id: 'Attribute::LibOpt_StatisticTimeSuboptimizerInitialize::PriorityName.Description' value: 'A string representing the priority.'
  id: 'Attribute::LibOpt_StatisticTimeSuboptimizerInitialize::PriorityName.Name' value: 'PriorityName'
  id: 'Attribute::LibOpt_StatisticTimeSuboptimizerInitialize::Severity.Description' value: 'The severity of the statistic.\n\nFor statistics that work on iterations:\nThis is the average of highest 5% of severities related to the elements in this statistic.\n\nFor example, if we have a statistic with 100 elements, and 10 issues with severities : 4.0, 3.8, 3.7, 3.5, 1.4, 1.3, 0.3, 0.3, 0.3, 0.1, the severity of the statistic will be\naverage( 4.0, 3.8, 3.7, 3.5, 1.4 ) = 3.3\n\nIf there are no 5 issues, we give elements without an issue a severity of 0.\nFor example if we have a statistic with 100 elements, and 2 issues with severities : 4.0, 3.8, the severity of the statistic will be\naverage( 4.0, 3.8, 0.0, 0.0, 0.0 ) = 1.6\n\nWe add the zeroes so a statistic with 1 highly severe issue will not outrank a statistic with many medium-high severe issues.\nThe latter will probably cause more damage to the performance/quality of the optimizer, as it happens more often.\n\nFor statistics that work on scope elements:\nThis is the highest severity of its related issues.\n\nThe reason for this distinction is that it is OK to have a bad iteration, but a single bad scope element may ruin your entire plan.'
  id: 'Attribute::LibOpt_StatisticTimeSuboptimizerInitialize::Severity.Name' value: 'Severity'
  id: 'Attribute::LibOpt_StatisticTimeSuboptimizerInitialize::TimeFocus.Description' value: 'A string that represents the object/aspect this `LibOpt_StatisticTime` focuses on when collecting its duration-related values.\n\nExamples of possible values set for this attribute:\n- Run 1: Iteration time\n- Suboptimizers\n- POA Suboptimizer'
  id: 'Attribute::LibOpt_StatisticTimeSuboptimizerInitialize::TimeFocus.Name' value: 'TimeFocus'
  id: 'Attribute::LibOpt_StatisticTimeSuboptimizerInitialize::TotalDuration.Description' value: 'The total duration spent on component execution.'
  id: 'Attribute::LibOpt_StatisticTimeSuboptimizerInitialize::TotalDuration.Name' value: 'TotalDuration'
  id: 'Attribute::LibOpt_StatisticTimeSuboptimizerInitialize::Type.Description' value: 'A short description for the type of this `LibOpt_Statistic`.'
  id: 'Attribute::LibOpt_StatisticTimeSuboptimizerInitialize::Type.Name' value: 'Type'
  id: 'Attribute::LibOpt_StatisticTimeSuboptimizerInitialize::UOM.Description' value: 'The unit of measurement for the values collected by this statistic.'
  id: 'Attribute::LibOpt_StatisticTimeSuboptimizerInitialize::UOM.Name' value: 'UOM'
  id: 'Attribute::LibOpt_StatisticTimeSuboptimizerInitialize::UpperThreshold.Description' value: 'The upper threshold used to determine whether to create `LibOpt_Issues` for values collected by this statistic.'
  id: 'Attribute::LibOpt_StatisticTimeSuboptimizerInitialize::UpperThreshold.Name' value: 'UpperThreshold'
  id: 'Attribute::LibOpt_StatisticTimeSuboptimizerInitialize::ValueType.Description' value: 'The type of values collected by this statistic.'
  id: 'Attribute::LibOpt_StatisticTimeSuboptimizerInitialize::ValueType.Name' value: 'ValueType'
  id: 'Attribute::LibOpt_StatisticTimeSuboptimizerInitialize::ValuesAsRealVector.Description' value: 'The `RealVector` of values collected by this statistic, stored in the form of a `BinaryValue`.'
  id: 'Attribute::LibOpt_StatisticTimeSuboptimizerInitialize::ValuesAsRealVector.Name' value: 'ValuesAsRealVector'
  id: 'Attribute::LibOpt_StatisticTimeSuboptimizerSolve::Description.Description' value: 'The description for this statistic.'
  id: 'Attribute::LibOpt_StatisticTimeSuboptimizerSolve::Description.Name' value: 'Description'
  id: 'Attribute::LibOpt_StatisticTimeSuboptimizerSolve::Focus.Description' value: 'A string that represents the object/aspect this statistic focuses on when collecting its values. It does not have to be unique as the relevant object/aspect could have multiple statistics.\n\nFor example, a `LibOpt_StatisticSuboptimizerMPInfeasible` statistic and a `LibOpt_StatisticSuboptimizerMPKappa` statistic can have the same `Focus` value of "MIP Subopt, Execution 2".\nThis means they both collect values about:\n- the `LibOpt_Component` (`LibOpt_SuboptimizerMP` in particular) with `LibOpt_SuboptimizerMP.Name` of "MIP Subopt", and\n- the 2nd MP execution of said MP suboptimizer.\n\nThe difference is that the former statistic focuses on infeasibility, while the latter statistic focuses on Kappa values.\nSee the `LibOpt_Statistic.Type` attribute for more details about this.'
  id: 'Attribute::LibOpt_StatisticTimeSuboptimizerSolve::Focus.Name' value: 'Focus'
  id: 'Attribute::LibOpt_StatisticTimeSuboptimizerSolve::HasChildrenComponent.Description' value: "This checks if the component type has an active component in the run.\n'True' indicates that the object is displayed on the application's 'Time details' form."
  id: 'Attribute::LibOpt_StatisticTimeSuboptimizerSolve::HasChildrenComponent.Name' value: 'HasChildrenComponent'
  id: 'Attribute::LibOpt_StatisticTimeSuboptimizerSolve::ImgIssueType.Name' value: 'ImgIssueType'
  id: 'Attribute::LibOpt_StatisticTimeSuboptimizerSolve::ImgValueType.Name' value: 'ImgValueType'
  id: 'Attribute::LibOpt_StatisticTimeSuboptimizerSolve::IsAbsolute.Description' value: 'Checks if the values collected by the statistic is of an absolute nature.'
  id: 'Attribute::LibOpt_StatisticTimeSuboptimizerSolve::IsAbsolute.Name' value: 'IsAbsolute'
  id: 'Attribute::LibOpt_StatisticTimeSuboptimizerSolve::IsComponent.Description' value: 'Checks if the statistic is pertaining to an instance of a `LibOpt_Component` type.'
  id: 'Attribute::LibOpt_StatisticTimeSuboptimizerSolve::IsComponent.Name' value: 'IsComponent'
  id: 'Attribute::LibOpt_StatisticTimeSuboptimizerSolve::IsRoot.Description' value: 'Checks if the statistic is pertaining to an instance of a `LibOpt_Run` type.'
  id: 'Attribute::LibOpt_StatisticTimeSuboptimizerSolve::IsRoot.Name' value: 'IsRoot'
  id: 'Attribute::LibOpt_StatisticTimeSuboptimizerSolve::IsType.Description' value: "Checks if the statistic is pertaining to a set of instances of `LibOpt_Statistic` of a particular `LibOpt_Component` subtype.\nThe relevant subtypes are either one of `LibOpt_Iterator`, `LibOpt_Selector`, `LibOpt_Suboptimizer`, `LibOpt_Switch`, `LibOpt_Transformer`.\nIf it is not one of those subtypes, the statistic is classified as 'Unknown' component type."
  id: 'Attribute::LibOpt_StatisticTimeSuboptimizerSolve::IsType.Name' value: 'IsType'
  id: 'Attribute::LibOpt_StatisticTimeSuboptimizerSolve::LowerThreshold.Description' value: 'The lower threshold used to determine whether to create `LibOpt_Issues` for values collected by this statistic.'
  id: 'Attribute::LibOpt_StatisticTimeSuboptimizerSolve::LowerThreshold.Name' value: 'LowerThreshold'
  id: 'Attribute::LibOpt_StatisticTimeSuboptimizerSolve::MaxSeverityOfIssues.Description' value: 'The maximum `Severity` among the `LibOpt_Issues` created for this statistic.'
  id: 'Attribute::LibOpt_StatisticTimeSuboptimizerSolve::MaxSeverityOfIssues.Name' value: 'MaxSeverityOfIssues'
  id: 'Attribute::LibOpt_StatisticTimeSuboptimizerSolve::NrElements.Description' value: 'The number of elements (values / aspects / etc.) collected by this statistic.'
  id: 'Attribute::LibOpt_StatisticTimeSuboptimizerSolve::NrElements.Name' value: 'NrElements'
  id: 'Attribute::LibOpt_StatisticTimeSuboptimizerSolve::NrElementsWithIssue.Description' value: 'The number of elements (values / aspects / etc.) collected by this statistic which has a `LibOpt_Issue` created for it.'
  id: 'Attribute::LibOpt_StatisticTimeSuboptimizerSolve::NrElementsWithIssue.Name' value: 'NrElementsWithIssue'
  id: 'Attribute::LibOpt_StatisticTimeSuboptimizerSolve::NrIssuesNotSeen.Description' value: 'The number of `LibOpt_Issues` of this `LibOpt_Statistic` with `LibOpt_Issue.IsSeen` = `false`.\n\nNote:\nThe usage of `LibOpt_Issue.IsSeen` is subject to user\'s preference.\nSome may use it to mark an issue as "seen" in the literal sense, while some may choose to use it to mark an issue as "addressed".'
  id: 'Attribute::LibOpt_StatisticTimeSuboptimizerSolve::NrIssuesNotSeen.Name' value: 'NrIssuesNotSeen'
  id: 'Attribute::LibOpt_StatisticTimeSuboptimizerSolve::PercentageOfElementsWithIssue.Description' value: 'The percentage of elements (values / aspects / etc.) collected by this statistic which has a `LibOpt_Issue` created for it.'
  id: 'Attribute::LibOpt_StatisticTimeSuboptimizerSolve::PercentageOfElementsWithIssue.Name' value: 'PercentageOfElementsWithIssue'
  id: 'Attribute::LibOpt_StatisticTimeSuboptimizerSolve::Priority.Description' value: 'The maximum priority of all the `LibOpt_Issues` relevant to the statistic.'
  id: 'Attribute::LibOpt_StatisticTimeSuboptimizerSolve::Priority.Name' value: 'Priority'
  id: 'Attribute::LibOpt_StatisticTimeSuboptimizerSolve::PriorityName.Description' value: 'A string representing the priority.'
  id: 'Attribute::LibOpt_StatisticTimeSuboptimizerSolve::PriorityName.Name' value: 'PriorityName'
  id: 'Attribute::LibOpt_StatisticTimeSuboptimizerSolve::Severity.Description' value: 'The severity of the statistic.\n\nFor statistics that work on iterations:\nThis is the average of highest 5% of severities related to the elements in this statistic.\n\nFor example, if we have a statistic with 100 elements, and 10 issues with severities : 4.0, 3.8, 3.7, 3.5, 1.4, 1.3, 0.3, 0.3, 0.3, 0.1, the severity of the statistic will be\naverage( 4.0, 3.8, 3.7, 3.5, 1.4 ) = 3.3\n\nIf there are no 5 issues, we give elements without an issue a severity of 0.\nFor example if we have a statistic with 100 elements, and 2 issues with severities : 4.0, 3.8, the severity of the statistic will be\naverage( 4.0, 3.8, 0.0, 0.0, 0.0 ) = 1.6\n\nWe add the zeroes so a statistic with 1 highly severe issue will not outrank a statistic with many medium-high severe issues.\nThe latter will probably cause more damage to the performance/quality of the optimizer, as it happens more often.\n\nFor statistics that work on scope elements:\nThis is the highest severity of its related issues.\n\nThe reason for this distinction is that it is OK to have a bad iteration, but a single bad scope element may ruin your entire plan.'
  id: 'Attribute::LibOpt_StatisticTimeSuboptimizerSolve::Severity.Name' value: 'Severity'
  id: 'Attribute::LibOpt_StatisticTimeSuboptimizerSolve::TimeFocus.Description' value: 'A string that represents the object/aspect this `LibOpt_StatisticTime` focuses on when collecting its duration-related values.\n\nExamples of possible values set for this attribute:\n- Run 1: Iteration time\n- Suboptimizers\n- POA Suboptimizer'
  id: 'Attribute::LibOpt_StatisticTimeSuboptimizerSolve::TimeFocus.Name' value: 'TimeFocus'
  id: 'Attribute::LibOpt_StatisticTimeSuboptimizerSolve::TotalDuration.Description' value: 'The total duration spent on component execution.'
  id: 'Attribute::LibOpt_StatisticTimeSuboptimizerSolve::TotalDuration.Name' value: 'TotalDuration'
  id: 'Attribute::LibOpt_StatisticTimeSuboptimizerSolve::Type.Description' value: 'A short description for the type of this `LibOpt_Statistic`.'
  id: 'Attribute::LibOpt_StatisticTimeSuboptimizerSolve::Type.Name' value: 'Type'
  id: 'Attribute::LibOpt_StatisticTimeSuboptimizerSolve::UOM.Description' value: 'The unit of measurement for the values collected by this statistic.'
  id: 'Attribute::LibOpt_StatisticTimeSuboptimizerSolve::UOM.Name' value: 'UOM'
  id: 'Attribute::LibOpt_StatisticTimeSuboptimizerSolve::UpperThreshold.Description' value: 'The upper threshold used to determine whether to create `LibOpt_Issues` for values collected by this statistic.'
  id: 'Attribute::LibOpt_StatisticTimeSuboptimizerSolve::UpperThreshold.Name' value: 'UpperThreshold'
  id: 'Attribute::LibOpt_StatisticTimeSuboptimizerSolve::ValueType.Description' value: 'The type of values collected by this statistic.'
  id: 'Attribute::LibOpt_StatisticTimeSuboptimizerSolve::ValueType.Name' value: 'ValueType'
  id: 'Attribute::LibOpt_StatisticTimeSuboptimizerSolve::ValuesAsRealVector.Description' value: 'The `RealVector` of values collected by this statistic, stored in the form of a `BinaryValue`.'
  id: 'Attribute::LibOpt_StatisticTimeSuboptimizerSolve::ValuesAsRealVector.Name' value: 'ValuesAsRealVector'
  id: 'Attribute::LibOpt_StatisticTimeTotal::ComponentType.Description' value: 'This method gets the type of `LibOpt_Component` subtype relevant to the component and returns it as a `String` name.'
  id: 'Attribute::LibOpt_StatisticTimeTotal::ComponentType.Name' value: 'ComponentType'
  id: 'Attribute::LibOpt_StatisticTimeTotal::Description.Description' value: 'The description for this statistic.'
  id: 'Attribute::LibOpt_StatisticTimeTotal::Description.Name' value: 'Description'
  id: 'Attribute::LibOpt_StatisticTimeTotal::Focus.Description' value: 'A string that represents the object/aspect this statistic focuses on when collecting its values. It does not have to be unique as the relevant object/aspect could have multiple statistics.\n\nFor example, a `LibOpt_StatisticSuboptimizerMPInfeasible` statistic and a `LibOpt_StatisticSuboptimizerMPKappa` statistic can have the same `Focus` value of "MIP Subopt, Execution 2".\nThis means they both collect values about:\n- the `LibOpt_Component` (`LibOpt_SuboptimizerMP` in particular) with `LibOpt_SuboptimizerMP.Name` of "MIP Subopt", and\n- the 2nd MP execution of said MP suboptimizer.\n\nThe difference is that the former statistic focuses on infeasibility, while the latter statistic focuses on Kappa values.\nSee the `LibOpt_Statistic.Type` attribute for more details about this.'
  id: 'Attribute::LibOpt_StatisticTimeTotal::Focus.Name' value: 'Focus'
  id: 'Attribute::LibOpt_StatisticTimeTotal::HasChildrenComponent.Description' value: "This checks if the component type has an active component in the run.\n'True' indicates that the object is displayed on the application's 'Time details' form."
  id: 'Attribute::LibOpt_StatisticTimeTotal::HasChildrenComponent.Name' value: 'HasChildrenComponent'
  id: 'Attribute::LibOpt_StatisticTimeTotal::ImgIssueType.Name' value: 'ImgIssueType'
  id: 'Attribute::LibOpt_StatisticTimeTotal::ImgValueType.Name' value: 'ImgValueType'
  id: 'Attribute::LibOpt_StatisticTimeTotal::IsAbsolute.Description' value: 'Checks if the values collected by the statistic is of an absolute nature.'
  id: 'Attribute::LibOpt_StatisticTimeTotal::IsAbsolute.Name' value: 'IsAbsolute'
  id: 'Attribute::LibOpt_StatisticTimeTotal::IsComponent.Description' value: 'Checks if the statistic is pertaining to an instance of a `LibOpt_Component` type.'
  id: 'Attribute::LibOpt_StatisticTimeTotal::IsComponent.Name' value: 'IsComponent'
  id: 'Attribute::LibOpt_StatisticTimeTotal::IsRoot.Description' value: 'Checks if the statistic is pertaining to an instance of a `LibOpt_Run` type.'
  id: 'Attribute::LibOpt_StatisticTimeTotal::IsRoot.Name' value: 'IsRoot'
  id: 'Attribute::LibOpt_StatisticTimeTotal::IsType.Description' value: "Checks if the statistic is pertaining to a set of instances of `LibOpt_Statistic` of a particular `LibOpt_Component` subtype.\nThe relevant subtypes are either one of `LibOpt_Iterator`, `LibOpt_Selector`, `LibOpt_Suboptimizer`, `LibOpt_Switch`, `LibOpt_Transformer`.\nIf it is not one of those subtypes, the statistic is classified as 'Unknown' component type."
  id: 'Attribute::LibOpt_StatisticTimeTotal::IsType.Name' value: 'IsType'
  id: 'Attribute::LibOpt_StatisticTimeTotal::LowerThreshold.Description' value: 'The lower threshold used to determine whether to create `LibOpt_Issues` for values collected by this statistic.'
  id: 'Attribute::LibOpt_StatisticTimeTotal::LowerThreshold.Name' value: 'LowerThreshold'
  id: 'Attribute::LibOpt_StatisticTimeTotal::MaxSeverityOfIssues.Description' value: 'The maximum `Severity` among the `LibOpt_Issues` created for this statistic.'
  id: 'Attribute::LibOpt_StatisticTimeTotal::MaxSeverityOfIssues.Name' value: 'MaxSeverityOfIssues'
  id: 'Attribute::LibOpt_StatisticTimeTotal::NrElements.Description' value: 'The number of elements (values / aspects / etc.) collected by this statistic.'
  id: 'Attribute::LibOpt_StatisticTimeTotal::NrElements.Name' value: 'NrElements'
  id: 'Attribute::LibOpt_StatisticTimeTotal::NrElementsWithIssue.Description' value: 'The number of elements (values / aspects / etc.) collected by this statistic which has a `LibOpt_Issue` created for it.'
  id: 'Attribute::LibOpt_StatisticTimeTotal::NrElementsWithIssue.Name' value: 'NrElementsWithIssue'
  id: 'Attribute::LibOpt_StatisticTimeTotal::NrIssuesNotSeen.Description' value: 'The number of `LibOpt_Issues` of this `LibOpt_Statistic` with `LibOpt_Issue.IsSeen` = `false`.\n\nNote:\nThe usage of `LibOpt_Issue.IsSeen` is subject to user\'s preference.\nSome may use it to mark an issue as "seen" in the literal sense, while some may choose to use it to mark an issue as "addressed".'
  id: 'Attribute::LibOpt_StatisticTimeTotal::NrIssuesNotSeen.Name' value: 'NrIssuesNotSeen'
  id: 'Attribute::LibOpt_StatisticTimeTotal::PercentageOfElementsWithIssue.Description' value: 'The percentage of elements (values / aspects / etc.) collected by this statistic which has a `LibOpt_Issue` created for it.'
  id: 'Attribute::LibOpt_StatisticTimeTotal::PercentageOfElementsWithIssue.Name' value: 'PercentageOfElementsWithIssue'
  id: 'Attribute::LibOpt_StatisticTimeTotal::Priority.Description' value: 'The maximum priority of all the `LibOpt_Issues` relevant to the statistic.'
  id: 'Attribute::LibOpt_StatisticTimeTotal::Priority.Name' value: 'Priority'
  id: 'Attribute::LibOpt_StatisticTimeTotal::PriorityName.Description' value: 'A string representing the priority.'
  id: 'Attribute::LibOpt_StatisticTimeTotal::PriorityName.Name' value: 'PriorityName'
  id: 'Attribute::LibOpt_StatisticTimeTotal::Severity.Description' value: 'The severity of the statistic.\n\nFor statistics that work on iterations:\nThis is the average of highest 5% of severities related to the elements in this statistic.\n\nFor example, if we have a statistic with 100 elements, and 10 issues with severities : 4.0, 3.8, 3.7, 3.5, 1.4, 1.3, 0.3, 0.3, 0.3, 0.1, the severity of the statistic will be\naverage( 4.0, 3.8, 3.7, 3.5, 1.4 ) = 3.3\n\nIf there are no 5 issues, we give elements without an issue a severity of 0.\nFor example if we have a statistic with 100 elements, and 2 issues with severities : 4.0, 3.8, the severity of the statistic will be\naverage( 4.0, 3.8, 0.0, 0.0, 0.0 ) = 1.6\n\nWe add the zeroes so a statistic with 1 highly severe issue will not outrank a statistic with many medium-high severe issues.\nThe latter will probably cause more damage to the performance/quality of the optimizer, as it happens more often.\n\nFor statistics that work on scope elements:\nThis is the highest severity of its related issues.\n\nThe reason for this distinction is that it is OK to have a bad iteration, but a single bad scope element may ruin your entire plan.'
  id: 'Attribute::LibOpt_StatisticTimeTotal::Severity.Name' value: 'Severity'
  id: 'Attribute::LibOpt_StatisticTimeTotal::TimeFocus.Description' value: 'A string that represents the object/aspect this `LibOpt_StatisticTime` focuses on when collecting its duration-related values.\n\nExamples of possible values set for this attribute:\n- Run 1: Iteration time\n- Suboptimizers\n- POA Suboptimizer'
  id: 'Attribute::LibOpt_StatisticTimeTotal::TimeFocus.Name' value: 'TimeFocus'
  id: 'Attribute::LibOpt_StatisticTimeTotal::TotalAlgorithmDuration.Description' value: 'The total of initialize, execution, and result handling durations of the `LibOpt_Suboptimizer`.'
  id: 'Attribute::LibOpt_StatisticTimeTotal::TotalAlgorithmDuration.Name' value: 'TotalAlgorithmDuration'
  id: 'Attribute::LibOpt_StatisticTimeTotal::TotalDuration.Description' value: 'The total duration spent on component execution.'
  id: 'Attribute::LibOpt_StatisticTimeTotal::TotalDuration.Name' value: 'TotalDuration'
  id: 'Attribute::LibOpt_StatisticTimeTotal::TotalDurationAsPercentageOfRunDuration.Description' value: 'The percentage of time spent on component execution, against the total run duration.'
  id: 'Attribute::LibOpt_StatisticTimeTotal::TotalDurationAsPercentageOfRunDuration.Name' value: 'TotalDurationAsPercentageOfRunDuration'
  id: 'Attribute::LibOpt_StatisticTimeTotal::TotalDurationAsPercentageOfTotalComponentDurationInRun.Description' value: "The percentage of time spent on component execution, against the total time spent for all components' execution."
  id: 'Attribute::LibOpt_StatisticTimeTotal::TotalDurationAsPercentageOfTotalComponentDurationInRun.Name' value: 'TotalDurationAsPercentageOfTotalComponentDurationInRun'
  id: 'Attribute::LibOpt_StatisticTimeTotal::TotalDurationInefficientAsPercentageOfRunDuration.Description' value: 'The percentage of time that is not spent on component execution, against the total run duration.'
  id: 'Attribute::LibOpt_StatisticTimeTotal::TotalDurationInefficientAsPercentageOfRunDuration.Name' value: 'TotalDurationInefficientAsPercentageOfRunDuration'
  id: 'Attribute::LibOpt_StatisticTimeTotal::Type.Description' value: 'A short description for the type of this `LibOpt_Statistic`.'
  id: 'Attribute::LibOpt_StatisticTimeTotal::Type.Name' value: 'Type'
  id: 'Attribute::LibOpt_StatisticTimeTotal::UOM.Description' value: 'The unit of measurement for the values collected by this statistic.'
  id: 'Attribute::LibOpt_StatisticTimeTotal::UOM.Name' value: 'UOM'
  id: 'Attribute::LibOpt_StatisticTimeTotal::UpperThreshold.Description' value: 'The upper threshold used to determine whether to create `LibOpt_Issues` for values collected by this statistic.'
  id: 'Attribute::LibOpt_StatisticTimeTotal::UpperThreshold.Name' value: 'UpperThreshold'
  id: 'Attribute::LibOpt_StatisticTimeTotal::ValueType.Description' value: 'The type of values collected by this statistic.'
  id: 'Attribute::LibOpt_StatisticTimeTotal::ValueType.Name' value: 'ValueType'
  id: 'Attribute::LibOpt_StatisticTimeTotal::ValuesAsRealVector.Description' value: 'The `RealVector` of values collected by this statistic, stored in the form of a `BinaryValue`.'
  id: 'Attribute::LibOpt_StatisticTimeTotal::ValuesAsRealVector.Name' value: 'ValuesAsRealVector'
  id: 'Attribute::LibOpt_StatisticWarning::Description.Description' value: 'The description for this statistic.'
  id: 'Attribute::LibOpt_StatisticWarning::Description.Name' value: 'Description'
  id: 'Attribute::LibOpt_StatisticWarning::Focus.Description' value: 'A string that represents the object/aspect this statistic focuses on when collecting its values. It does not have to be unique as the relevant object/aspect could have multiple statistics.\n\nFor example, a `LibOpt_StatisticSuboptimizerMPInfeasible` statistic and a `LibOpt_StatisticSuboptimizerMPKappa` statistic can have the same `Focus` value of "MIP Subopt, Execution 2".\nThis means they both collect values about:\n- the `LibOpt_Component` (`LibOpt_SuboptimizerMP` in particular) with `LibOpt_SuboptimizerMP.Name` of "MIP Subopt", and\n- the 2nd MP execution of said MP suboptimizer.\n\nThe difference is that the former statistic focuses on infeasibility, while the latter statistic focuses on Kappa values.\nSee the `LibOpt_Statistic.Type` attribute for more details about this.'
  id: 'Attribute::LibOpt_StatisticWarning::Focus.Name' value: 'Focus'
  id: 'Attribute::LibOpt_StatisticWarning::ImgIssueType.Name' value: 'ImgIssueType'
  id: 'Attribute::LibOpt_StatisticWarning::ImgValueType.Name' value: 'ImgValueType'
  id: 'Attribute::LibOpt_StatisticWarning::LogEntryDetails.Description' value: 'A helper attribute that shows the common `LibOpt_SnapshotLogEntry.Details` message of the `LibOpt_SnapshotLogEntrys` that is grouped under this `LibOpt_StatisticLogEntry`.'
  id: 'Attribute::LibOpt_StatisticWarning::LogEntryDetails.Name' value: 'LogEntryDetails'
  id: 'Attribute::LibOpt_StatisticWarning::LowerThreshold.Description' value: 'The lower threshold used to determine whether to create `LibOpt_Issues` for values collected by this statistic.'
  id: 'Attribute::LibOpt_StatisticWarning::LowerThreshold.Name' value: 'LowerThreshold'
  id: 'Attribute::LibOpt_StatisticWarning::MaxSeverityOfIssues.Description' value: 'The maximum `Severity` among the `LibOpt_Issues` created for this statistic.'
  id: 'Attribute::LibOpt_StatisticWarning::MaxSeverityOfIssues.Name' value: 'MaxSeverityOfIssues'
  id: 'Attribute::LibOpt_StatisticWarning::NrElements.Description' value: 'The number of elements (values / aspects / etc.) collected by this statistic.'
  id: 'Attribute::LibOpt_StatisticWarning::NrElements.Name' value: 'NrElements'
  id: 'Attribute::LibOpt_StatisticWarning::NrElementsWithIssue.Description' value: 'The number of elements (values / aspects / etc.) collected by this statistic which has a `LibOpt_Issue` created for it.'
  id: 'Attribute::LibOpt_StatisticWarning::NrElementsWithIssue.Name' value: 'NrElementsWithIssue'
  id: 'Attribute::LibOpt_StatisticWarning::NrIssuesNotSeen.Description' value: 'The number of `LibOpt_Issues` of this `LibOpt_Statistic` with `LibOpt_Issue.IsSeen` = `false`.\n\nNote:\nThe usage of `LibOpt_Issue.IsSeen` is subject to user\'s preference.\nSome may use it to mark an issue as "seen" in the literal sense, while some may choose to use it to mark an issue as "addressed".'
  id: 'Attribute::LibOpt_StatisticWarning::NrIssuesNotSeen.Name' value: 'NrIssuesNotSeen'
  id: 'Attribute::LibOpt_StatisticWarning::PercentageOfElementsWithIssue.Description' value: 'The percentage of elements (values / aspects / etc.) collected by this statistic which has a `LibOpt_Issue` created for it.'
  id: 'Attribute::LibOpt_StatisticWarning::PercentageOfElementsWithIssue.Name' value: 'PercentageOfElementsWithIssue'
  id: 'Attribute::LibOpt_StatisticWarning::Priority.Description' value: 'The maximum priority of all the `LibOpt_Issues` relevant to the statistic.'
  id: 'Attribute::LibOpt_StatisticWarning::Priority.Name' value: 'Priority'
  id: 'Attribute::LibOpt_StatisticWarning::PriorityName.Description' value: 'A string representing the priority.'
  id: 'Attribute::LibOpt_StatisticWarning::PriorityName.Name' value: 'PriorityName'
  id: 'Attribute::LibOpt_StatisticWarning::Severity.Description' value: 'The severity of the statistic.\n\nFor statistics that work on iterations:\nThis is the average of highest 5% of severities related to the elements in this statistic.\n\nFor example, if we have a statistic with 100 elements, and 10 issues with severities : 4.0, 3.8, 3.7, 3.5, 1.4, 1.3, 0.3, 0.3, 0.3, 0.1, the severity of the statistic will be\naverage( 4.0, 3.8, 3.7, 3.5, 1.4 ) = 3.3\n\nIf there are no 5 issues, we give elements without an issue a severity of 0.\nFor example if we have a statistic with 100 elements, and 2 issues with severities : 4.0, 3.8, the severity of the statistic will be\naverage( 4.0, 3.8, 0.0, 0.0, 0.0 ) = 1.6\n\nWe add the zeroes so a statistic with 1 highly severe issue will not outrank a statistic with many medium-high severe issues.\nThe latter will probably cause more damage to the performance/quality of the optimizer, as it happens more often.\n\nFor statistics that work on scope elements:\nThis is the highest severity of its related issues.\n\nThe reason for this distinction is that it is OK to have a bad iteration, but a single bad scope element may ruin your entire plan.'
  id: 'Attribute::LibOpt_StatisticWarning::Severity.Name' value: 'Severity'
  id: 'Attribute::LibOpt_StatisticWarning::Type.Description' value: 'A short description for the type of this `LibOpt_Statistic`.'
  id: 'Attribute::LibOpt_StatisticWarning::Type.Name' value: 'Type'
  id: 'Attribute::LibOpt_StatisticWarning::UOM.Description' value: 'The unit of measurement for the values collected by this statistic.'
  id: 'Attribute::LibOpt_StatisticWarning::UOM.Name' value: 'UOM'
  id: 'Attribute::LibOpt_StatisticWarning::UpperThreshold.Description' value: 'The upper threshold used to determine whether to create `LibOpt_Issues` for values collected by this statistic.'
  id: 'Attribute::LibOpt_StatisticWarning::UpperThreshold.Name' value: 'UpperThreshold'
  id: 'Attribute::LibOpt_StatisticWarning::ValueType.Description' value: 'The type of values collected by this statistic.'
  id: 'Attribute::LibOpt_StatisticWarning::ValueType.Name' value: 'ValueType'
  id: 'Attribute::LibOpt_StatisticWarning::ValuesAsRealVector.Description' value: 'The `RealVector` of values collected by this statistic, stored in the form of a `BinaryValue`.'
  id: 'Attribute::LibOpt_StatisticWarning::ValuesAsRealVector.Name' value: 'ValuesAsRealVector'
  id: 'Attribute::LibOpt_StopCriterion::ConfigurationError.Description' value: 'The errors in the configuration.'
  id: 'Attribute::LibOpt_StopCriterion::ConfigurationError.Name' value: 'ConfigurationError'
  id: 'Attribute::LibOpt_StopCriterion::IsCorrectlyConfigured.Name' value: 'IsCorrectlyConfigured'
  id: 'Attribute::LibOpt_StopCriterionContinuous::ConfigurationError.Description' value: 'The errors in the configuration.'
  id: 'Attribute::LibOpt_StopCriterionContinuous::ConfigurationError.Name' value: 'ConfigurationError'
  id: 'Attribute::LibOpt_StopCriterionContinuous::IsCorrectlyConfigured.Name' value: 'IsCorrectlyConfigured'
  id: 'Attribute::LibOpt_StopCriterionDefault::ConfigurationError.Description' value: 'The errors in the configuration.'
  id: 'Attribute::LibOpt_StopCriterionDefault::ConfigurationError.Name' value: 'ConfigurationError'
  id: 'Attribute::LibOpt_StopCriterionDefault::IsCorrectlyConfigured.Name' value: 'IsCorrectlyConfigured'
  id: 'Attribute::LibOpt_StopCriterionDefault::MaxDurationGlobal.Description' value: 'The maximum duration the entire `LibOpt_Run` can take.'
  id: 'Attribute::LibOpt_StopCriterionDefault::MaxDurationGlobal.Name' value: 'MaxDurationGlobal'
  id: 'Attribute::LibOpt_StopCriterionDefault::MaxDurationLocal.Description' value: 'The duration after which the `LibOpt_Iterator` should stop. This starts counting the moment the `LibOpt_Iterator` starts.'
  id: 'Attribute::LibOpt_StopCriterionDefault::MaxDurationLocal.Name' value: 'MaxDurationLocal'
  id: 'Attribute::LibOpt_StopCriterionDefault::MaxIterations.Description' value: 'The maximum number of iterations that is allowed.'
  id: 'Attribute::LibOpt_StopCriterionDefault::MaxIterations.Name' value: 'MaxIterations'
  id: 'Attribute::LibOpt_StopCriterionDefaultBase::ConfigurationError.Description' value: 'The errors in the configuration.'
  id: 'Attribute::LibOpt_StopCriterionDefaultBase::ConfigurationError.Name' value: 'ConfigurationError'
  id: 'Attribute::LibOpt_StopCriterionDefaultBase::IsCorrectlyConfigured.Name' value: 'IsCorrectlyConfigured'
  id: 'Attribute::LibOpt_StopCriterionDefaultBase::MaxDurationGlobal.Description' value: 'The maximum duration the entire `LibOpt_Run` can take.'
  id: 'Attribute::LibOpt_StopCriterionDefaultBase::MaxDurationGlobal.Name' value: 'MaxDurationGlobal'
  id: 'Attribute::LibOpt_StopCriterionDefaultBase::MaxDurationLocal.Description' value: 'The duration after which the `LibOpt_Iterator` should stop. This starts counting the moment the `LibOpt_Iterator` starts.'
  id: 'Attribute::LibOpt_StopCriterionDefaultBase::MaxDurationLocal.Name' value: 'MaxDurationLocal'
  id: 'Attribute::LibOpt_StopCriterionDefaultBase::MaxIterations.Description' value: 'The maximum number of iterations that is allowed.'
  id: 'Attribute::LibOpt_StopCriterionDefaultBase::MaxIterations.Name' value: 'MaxIterations'
  id: 'Attribute::LibOpt_StoredAlgorithm::ComponentKey.Description' value: 'The key of the `LibOpt_Component` that created this `LibOpt_StoredAlgorithm` object.'
  id: 'Attribute::LibOpt_StoredAlgorithm::ComponentKey.Name' value: 'ComponentKey'
  id: 'Attribute::LibOpt_StoredAlgorithm::ComponentName.Description' value: 'The name of the `LibOpt_Component` that created this `LibOpt_StoredAlgorithm` object.'
  id: 'Attribute::LibOpt_StoredAlgorithm::ComponentName.Name' value: 'ComponentName'
  id: 'Attribute::LibOpt_StoredAlgorithm::ComponentNrTimesCalled.Description' value: 'The number of times the `LibOpt_Component` that created this `LibOpt_StoredAlgorithm` object has been called at the time of the creation of this object.'
  id: 'Attribute::LibOpt_StoredAlgorithm::ComponentNrTimesCalled.Name' value: 'ComponentNrTimesCalled'
  id: 'Attribute::LibOpt_StoredAlgorithm::CreatedOn.Description' value: 'The time this `LibOpt_StoredAlgorithm` object was created as a DateTime.'
  id: 'Attribute::LibOpt_StoredAlgorithm::CreatedOn.Name' value: 'CreatedOn'
  id: 'Attribute::LibOpt_StoredAlgorithm::CreatedOnPrecision.Description' value: 'The time this `LibOpt_StoredAlgorithm` object was created as a Real measurment of OS::PrecisionCounter.'
  id: 'Attribute::LibOpt_StoredAlgorithm::CreatedOnPrecision.Name' value: 'CreatedOnPrecision'
  id: 'Attribute::LibOpt_StoredAlgorithm::Identifier.Description' value: 'This attribute is used to identify the `Algorithm` linked to this `LibOpt_StoredAlgorithm` in the `AlgorithmStore`.\nThe `Algorithm` can be retrieved from the `AlgorithmStore` by using this identifier.\n\nThe identifier is also stored globally. See the `LibOpt_StoredAlgorithmGlobal.Identifier` attribute.'
  id: 'Attribute::LibOpt_StoredAlgorithm::Identifier.Name' value: 'Identifier'
  id: 'Attribute::LibOpt_StoredAlgorithm::OptimizerName.Description' value: 'The name of the `LibOpt_Optimizer` that created this `LibOpt_StoredAlgorithm`.'
  id: 'Attribute::LibOpt_StoredAlgorithm::OptimizerName.Name' value: 'OptimizerName'
  id: 'Attribute::LibOpt_StoredAlgorithm::RunNr.Description' value: 'The RunNr of the `LibOpt_Run` that created this `LibOpt_StoredAlgorithm`.'
  id: 'Attribute::LibOpt_StoredAlgorithm::RunNr.Name' value: 'RunNr'
  id: 'Attribute::LibOpt_StoredAlgorithmGlobal::ComponentName.Description' value: 'The name of the `LibOpt_Component` that created this `LibOpt_StoredAlgorithmGlobal`.'
  id: 'Attribute::LibOpt_StoredAlgorithmGlobal::ComponentName.Name' value: 'ComponentName'
  id: 'Attribute::LibOpt_StoredAlgorithmGlobal::ComponentNrTimesCalled.Description' value: 'The number of times the `LibOpt_Component` that created this `LibOpt_StoredAlgorithmGlobal` object has been called at the time of the creation of this object.'
  id: 'Attribute::LibOpt_StoredAlgorithmGlobal::ComponentNrTimesCalled.Name' value: 'ComponentNrTimesCalled'
  id: 'Attribute::LibOpt_StoredAlgorithmGlobal::CreatedOn.Description' value: 'The `DateTime` the `LibOpt_StoredAlgorithm` was created. This value has been copied to this `LibOpt_StoredAlgorithmGlobal`.'
  id: 'Attribute::LibOpt_StoredAlgorithmGlobal::CreatedOn.Name' value: 'CreatedOn'
  id: 'Attribute::LibOpt_StoredAlgorithmGlobal::DatasetName.Description' value: 'The name of the dataset that created this `LibOpt_StoredAlgorithmGlobal`.'
  id: 'Attribute::LibOpt_StoredAlgorithmGlobal::DatasetName.Name' value: 'DatasetName'
  id: 'Attribute::LibOpt_StoredAlgorithmGlobal::Identifier.Description' value: 'This attribute is used to identify the `Algorithm` linked to this `LibOpt_StoredAlgorithm` in the `AlgorithmStore`.\nThe `Algorithm` can be retrieved from the `AlgorithmStore` by using this identifier.\n\nThe identifier is identical to the `LibOpt_StoredAlgorithm.Identifier`.'
  id: 'Attribute::LibOpt_StoredAlgorithmGlobal::Identifier.Name' value: 'Identifier'
  id: 'Attribute::LibOpt_StoredAlgorithmGlobal::OptimizerName.Description' value: 'The name of the `LibOpt_Optimizer` that created this `LibOpt_StoredAlgorithmGlobals`.'
  id: 'Attribute::LibOpt_StoredAlgorithmGlobal::OptimizerName.Name' value: 'OptimizerName'
  id: 'Attribute::LibOpt_StoredAlgorithmGlobal::RunNr.Description' value: 'The RunNr of the `LibOpt_Run` that created this `LibOpt_StoredAlgorithmGlobal`.'
  id: 'Attribute::LibOpt_StoredAlgorithmGlobal::RunNr.Name' value: 'RunNr'
  id: 'Attribute::LibOpt_StoredAlgorithmManager::MaxAgeAlgorithm.Description' value: "The maximum age of the `Algorithms` that can be stored in the `AlgorithmStore`.\nAny algorithm older than this maximum age will be deleted when the next `LibOpt_StoredAlgorithmGlobal` object is created.\n\nThis value can be changed by opening the 'Settings' dialog in the 'Stored algorithms global' form."
  id: 'Attribute::LibOpt_StoredAlgorithmManager::MaxAgeAlgorithm.Name' value: 'MaxAgeAlgorithm'
  id: 'Attribute::LibOpt_StoredAlgorithmManager::MaxNumberOfAlgorithms.Description' value: "The maximum number of `Algorithms` that can be stored in the `AlgorithmStore`.\nIf the maximum is exceeded, then the oldest stored `Algorithm` is deleted first.\n\nThis value can be changed by opening the 'Settings' dialog in the 'Stored algorithms global' form."
  id: 'Attribute::LibOpt_StoredAlgorithmManager::MaxNumberOfAlgorithms.Name' value: 'MaxNumberOfAlgorithms'
  id: 'Attribute::LibOpt_StoredAlgorithmManager::NumberOfAlgorithms.Description' value: 'The total number of `Algorithms` that are currently stored in the `AlgorithmStore`.'
  id: 'Attribute::LibOpt_StoredAlgorithmManager::NumberOfAlgorithms.Name' value: 'NumberOfAlgorithms'
  id: 'Attribute::LibOpt_Suboptimizer::AcceptableRollbackThreshold.Description' value: "The rollback percentage that is deemed 'acceptable' for this `LibOpt_Suboptimizer` before an issue is created.\nMeant to be a value between 0.0 and 100.0"
  id: 'Attribute::LibOpt_Suboptimizer::AcceptableRollbackThreshold.Name' value: 'AcceptableRollbackThreshold'
  id: 'Attribute::LibOpt_Suboptimizer::Breakpoints.Description' value: 'Whether any component position of this component has one or more breakpoints'
  id: 'Attribute::LibOpt_Suboptimizer::Breakpoints.Name' value: 'Breakpoints'
  id: 'Attribute::LibOpt_Suboptimizer::CanBeCalled.Description' value: 'Whether or not this component can be called, given the selected start component.'
  id: 'Attribute::LibOpt_Suboptimizer::CanBeCalled.Name' value: 'CanBeCalled'
  id: 'Attribute::LibOpt_Suboptimizer::ComponentType.Description' value: 'A short name for this `LibOpt_Component` type.'
  id: 'Attribute::LibOpt_Suboptimizer::ComponentType.Name' value: 'ComponentType'
  id: 'Attribute::LibOpt_Suboptimizer::ConfigurationError.Description' value: 'The errors in the configuration.'
  id: 'Attribute::LibOpt_Suboptimizer::ConfigurationError.Name' value: 'ConfigurationError'
  id: 'Attribute::LibOpt_Suboptimizer::DatasetCopies.Description' value: 'Whether any component position of this component has one or more dataset copies (or whether dataset copies are disabled)'
  id: 'Attribute::LibOpt_Suboptimizer::DatasetCopies.Name' value: 'DatasetCopies'
  id: 'Attribute::LibOpt_Suboptimizer::Depth.Description' value: 'The highest number of `LibOpt_Components` above this component.'
  id: 'Attribute::LibOpt_Suboptimizer::Depth.Name' value: 'Depth'
  id: 'Attribute::LibOpt_Suboptimizer::HasBreakpointEvent.Description' value: 'Whether the `LibOpt_Component` is waiting for a `LibOpt_BreakpointEvent`.'
  id: 'Attribute::LibOpt_Suboptimizer::HasBreakpointEvent.Name' value: 'HasBreakpointEvent'
  id: 'Attribute::LibOpt_Suboptimizer::HasNoBreakpoints.Description' value: 'Whether this `LibOpt_Component` has no `LibOpt_BreakpointConditional` attached to any of its component positions.'
  id: 'Attribute::LibOpt_Suboptimizer::HasNoBreakpoints.Name' value: 'HasNoBreakpoints'
  id: 'Attribute::LibOpt_Suboptimizer::HasNoDatasetCopies.Description' value: 'Whether this component has no `LibOpt_DatasetCopyConditional` attached to any of its component positions.'
  id: 'Attribute::LibOpt_Suboptimizer::HasNoDatasetCopies.Name' value: 'HasNoDatasetCopies'
  id: 'Attribute::LibOpt_Suboptimizer::HasUniqueName.Description' value: 'Whether the name of this `LibOpt_Component` is unique.'
  id: 'Attribute::LibOpt_Suboptimizer::HasUniqueName.Name' value: 'HasUniqueName'
  id: 'Attribute::LibOpt_Suboptimizer::ImgStartComponent.Description' value: 'Highlights the start component'
  id: 'Attribute::LibOpt_Suboptimizer::ImgStartComponent.Name' value: 'ImgStartComponent'
  id: 'Attribute::LibOpt_Suboptimizer::InOneTransaction.Description' value: 'This setting determines whether the algorithm should be initialized, solved and the results handled in the same transaction, or if multiple can be used.\nDefault we prefer to have this setting as `false`, as the solving can be done in parallel.\n\nNote that we cannot prevent you from reactively starting a new transaction. If you do so, this setting is meaningless and running in one transaction is broken.'
  id: 'Attribute::LibOpt_Suboptimizer::InOneTransaction.Name' value: 'InOneTransaction'
  id: 'Attribute::LibOpt_Suboptimizer::IsCorrectlyConfigured.Name' value: 'IsCorrectlyConfigured'
  id: 'Attribute::LibOpt_Suboptimizer::IsDatasetCopyEnabled.Description' value: "Used in the UI to set the 'Dataset copies are disabled' image icon in the 'Components' form and to show a constraint to the user.\n    \nAn icon will be shown when:\n1: There is a dataset copy on any component position of this component.\nand either \n2a: The optimizer run is ongoing and `LibOpt_Run.IsCreatingDatasetCopiesEnabled` is set to `false` on the related `LibOpt_Run` object.\n2b: The optimizer run has finished and `LibOpt_Optimizer.IsCreatingDatasetCopiesEnabled` is set to `false` on the related `LibOpt_Optimizer` object."
  id: 'Attribute::LibOpt_Suboptimizer::IsDatasetCopyEnabled.Name' value: 'IsDatasetCopyEnabled'
  id: 'Attribute::LibOpt_Suboptimizer::IsPostProcessing.Description' value: 'If this attribute is true when a user aborts an optimizer run, then the optimizer will first execute any post processing `LibOpt_LinkIteratorForEach` links before aborting the run. \n\nFor the `LibOpt_IteratorForEachLink` component, this attribute is true when `LibOpt_LinkIteratorForEach.IsPostProcessing` is true for any of its links. \nFor all other components, this attribute is always false.'
  id: 'Attribute::LibOpt_Suboptimizer::IsPostProcessing.Name' value: 'IsPostProcessing'
  id: 'Attribute::LibOpt_Suboptimizer::Name.Description' value: 'The name of the `LibOpt_Component`.\n\nThe name should be unique within the `LibOpt_Run`.'
  id: 'Attribute::LibOpt_Suboptimizer::Name.Name' value: 'Name'
  id: 'Attribute::LibOpt_Suboptimizer::NotAUniqueName.Description' value: 'Whether the name of the component is not unique within the run.\nThis can lead to unexpected behavior while running the optimizer.'
  id: 'Attribute::LibOpt_Suboptimizer::NotAUniqueName.Name' value: 'NotAUniqueName'
  id: 'Attribute::LibOpt_Suboptimizer::NotCorrectlyConfigured.Description' value: 'Whether there are any configuration errors for this component.\nFor example, whether a switch has fewer than 2 branches.'
  id: 'Attribute::LibOpt_Suboptimizer::NotCorrectlyConfigured.Name' value: 'NotCorrectlyConfigured'
  id: 'Attribute::LibOpt_Suboptimizer::NrOfEnabledBreakpoints.Description' value: 'The number of enabled `LibOpt_BreakpointConditionals` that are attached to the `LibOpt_BreakpointPositions` of this component. \nThis attribute is used in the `HasNoBreakpoints` constraint.'
  id: 'Attribute::LibOpt_Suboptimizer::NrOfEnabledBreakpoints.Name' value: 'NrOfEnabledBreakpoints'
  id: 'Attribute::LibOpt_Suboptimizer::NrOfEnabledDatasetCopies.Description' value: 'The number of enabled `LibOpt_DatasetCopyConditionals` that are attached to the `LibOpt_BreakpointPositions` of this component. \nThis attribute is used in the `HasNoDatasetCopies` constraint.'
  id: 'Attribute::LibOpt_Suboptimizer::NrOfEnabledDatasetCopies.Name' value: 'NrOfEnabledDatasetCopies'
  id: 'Attribute::LibOpt_Suboptimizer::NrOfRollbacks.Description' value: 'The number of rollbacks that occured for this `LibOpt_Suboptimizer`'
  id: 'Attribute::LibOpt_Suboptimizer::NrOfRollbacks.Name' value: 'NrOfRollbacks'
  id: 'Attribute::LibOpt_Suboptimizer::NrTimesCalled.Description' value: 'The number of times this component was called (the DoTask method was called).'
  id: 'Attribute::LibOpt_Suboptimizer::NrTimesCalled.Name' value: 'NrTimesCalled'
  id: 'Attribute::LibOpt_Suboptimizer::Path.Description' value: 'A declarative attribute that contains one Path to this component.\nThis can be used to sort a list of components in a semi-logical way.'
  id: 'Attribute::LibOpt_Suboptimizer::Path.Name' value: 'Path'
  id: 'Attribute::LibOpt_Suboptimizer::RollbackPercent.Description' value: 'The rollback % for this `LibOpt_Suboptimizer`.'
  id: 'Attribute::LibOpt_Suboptimizer::RollbackPercent.Name' value: 'RollbackPercent'
  id: 'Attribute::LibOpt_Suboptimizer::RollbackStatus.Description' value: 'Indication of severity for how often this `LibOpt_Suboptimizer` rolls back'
  id: 'Attribute::LibOpt_Suboptimizer::RollbackStatus.Name' value: 'RollbackStatus'
  id: 'Attribute::LibOpt_Suboptimizer::SequenceNr.Description' value: 'The position in the sequence of the `LibOpt_Components` in the `LibOpt_Run`.\n\nThe `LibOpt_Components` are sorted according to the `Path`.\nThis is slightly different from sorting on the `Depth`.\n\nThe difference is that the `Path` keeps different branches in a `LibOpt_Switch` together, while sorting on `Depth` intertwines them.\n\nExample:\n\nIf we have a switch with 2 branches, A and C, with each a link to B and D respectively, the sorting order is different.\n\n switch -> A -> B\n switch -> C -> D\n \nNow the `Depth` (and the sorting on `Depth`) will be:\nswitch = 0\nA = 1\nC = 1\nB = 2\nD = 2\n\nThe `Path` (and sorting of the `Path`) will be:\nswitch = "switch"\nA = "switch" -> "A"\nB = "switch" -> "A" -> "B"\nC = "switch" -> "C"\nD = "switch" -> "C" -> "D"'
  id: 'Attribute::LibOpt_Suboptimizer::SequenceNr.Name' value: 'SequenceNr'
  id: 'Attribute::LibOpt_Suboptimizer::Status.Name' value: 'Status'
  id: 'Attribute::LibOpt_Suboptimizer::TotalDuration.Description' value: 'Total duration spent on the component during the run'
  id: 'Attribute::LibOpt_Suboptimizer::TotalDuration.Name' value: 'TotalDuration'
  id: 'Attribute::LibOpt_Suboptimizer::Type.Description' value: 'The type of the component'
  id: 'Attribute::LibOpt_Suboptimizer::Type.Name' value: 'Type'
  id: 'Attribute::LibOpt_SuboptimizerAlgorithm::AcceptableRollbackThreshold.Description' value: "The rollback percentage that is deemed 'acceptable' for this `LibOpt_Suboptimizer` before an issue is created.\nMeant to be a value between 0.0 and 100.0"
  id: 'Attribute::LibOpt_SuboptimizerAlgorithm::AcceptableRollbackThreshold.Name' value: 'AcceptableRollbackThreshold'
  id: 'Attribute::LibOpt_SuboptimizerAlgorithm::Breakpoints.Description' value: 'Whether any component position of this component has one or more breakpoints'
  id: 'Attribute::LibOpt_SuboptimizerAlgorithm::Breakpoints.Name' value: 'Breakpoints'
  id: 'Attribute::LibOpt_SuboptimizerAlgorithm::CanBeCalled.Description' value: 'Whether or not this component can be called, given the selected start component.'
  id: 'Attribute::LibOpt_SuboptimizerAlgorithm::CanBeCalled.Name' value: 'CanBeCalled'
  id: 'Attribute::LibOpt_SuboptimizerAlgorithm::ComponentType.Description' value: 'A short name for this `LibOpt_Component` type.'
  id: 'Attribute::LibOpt_SuboptimizerAlgorithm::ComponentType.Name' value: 'ComponentType'
  id: 'Attribute::LibOpt_SuboptimizerAlgorithm::ConfigurationError.Description' value: 'The errors in the configuration.'
  id: 'Attribute::LibOpt_SuboptimizerAlgorithm::ConfigurationError.Name' value: 'ConfigurationError'
  id: 'Attribute::LibOpt_SuboptimizerAlgorithm::DatasetCopies.Description' value: 'Whether any component position of this component has one or more dataset copies (or whether dataset copies are disabled)'
  id: 'Attribute::LibOpt_SuboptimizerAlgorithm::DatasetCopies.Name' value: 'DatasetCopies'
  id: 'Attribute::LibOpt_SuboptimizerAlgorithm::Depth.Description' value: 'The highest number of `LibOpt_Components` above this component.'
  id: 'Attribute::LibOpt_SuboptimizerAlgorithm::Depth.Name' value: 'Depth'
  id: 'Attribute::LibOpt_SuboptimizerAlgorithm::HasBreakpointEvent.Description' value: 'Whether the `LibOpt_Component` is waiting for a `LibOpt_BreakpointEvent`.'
  id: 'Attribute::LibOpt_SuboptimizerAlgorithm::HasBreakpointEvent.Name' value: 'HasBreakpointEvent'
  id: 'Attribute::LibOpt_SuboptimizerAlgorithm::HasNoBreakpoints.Description' value: 'Whether this `LibOpt_Component` has no `LibOpt_BreakpointConditional` attached to any of its component positions.'
  id: 'Attribute::LibOpt_SuboptimizerAlgorithm::HasNoBreakpoints.Name' value: 'HasNoBreakpoints'
  id: 'Attribute::LibOpt_SuboptimizerAlgorithm::HasNoDatasetCopies.Description' value: 'Whether this component has no `LibOpt_DatasetCopyConditional` attached to any of its component positions.'
  id: 'Attribute::LibOpt_SuboptimizerAlgorithm::HasNoDatasetCopies.Name' value: 'HasNoDatasetCopies'
  id: 'Attribute::LibOpt_SuboptimizerAlgorithm::HasRetrievedAlgorithmFromStore.Description' value: 'Indicates whether or not this `LibOpt_SuboptimizerAlgorithm` component retrieved an existing `Algorithm` from the `AlgorithmStore` (by using the `AlgorithmStoreReadAlgorithm` or `AlgorithmStoreReadLastAlgorithm` methods).\nThis attribute can be used later during the execution of the `LibOpt_SuboptimizerAlgorithm`. \n\nNote: If you use any of the `Retrieve*` methods on the `LibOpt_StoredAlgorithm` type, then this attribute is not set.'
  id: 'Attribute::LibOpt_SuboptimizerAlgorithm::HasRetrievedAlgorithmFromStore.Name' value: 'HasRetrievedAlgorithmFromStore'
  id: 'Attribute::LibOpt_SuboptimizerAlgorithm::HasUniqueName.Description' value: 'Whether the name of this `LibOpt_Component` is unique.'
  id: 'Attribute::LibOpt_SuboptimizerAlgorithm::HasUniqueName.Name' value: 'HasUniqueName'
  id: 'Attribute::LibOpt_SuboptimizerAlgorithm::ImgStartComponent.Description' value: 'Highlights the start component'
  id: 'Attribute::LibOpt_SuboptimizerAlgorithm::ImgStartComponent.Name' value: 'ImgStartComponent'
  id: 'Attribute::LibOpt_SuboptimizerAlgorithm::InOneTransaction.Description' value: 'This setting determines whether the algorithm should be initialized, solved and the results handled in the same transaction, or if multiple can be used.\nDefault we prefer to have this setting as `false`, as the solving can be done in parallel.\n\nNote that we cannot prevent you from reactively starting a new transaction. If you do so, this setting is meaningless and running in one transaction is broken.'
  id: 'Attribute::LibOpt_SuboptimizerAlgorithm::InOneTransaction.Name' value: 'InOneTransaction'
  id: 'Attribute::LibOpt_SuboptimizerAlgorithm::IsCorrectlyConfigured.Name' value: 'IsCorrectlyConfigured'
  id: 'Attribute::LibOpt_SuboptimizerAlgorithm::IsDatasetCopyEnabled.Description' value: "Used in the UI to set the 'Dataset copies are disabled' image icon in the 'Components' form and to show a constraint to the user.\n    \nAn icon will be shown when:\n1: There is a dataset copy on any component position of this component.\nand either \n2a: The optimizer run is ongoing and `LibOpt_Run.IsCreatingDatasetCopiesEnabled` is set to `false` on the related `LibOpt_Run` object.\n2b: The optimizer run has finished and `LibOpt_Optimizer.IsCreatingDatasetCopiesEnabled` is set to `false` on the related `LibOpt_Optimizer` object."
  id: 'Attribute::LibOpt_SuboptimizerAlgorithm::IsDatasetCopyEnabled.Name' value: 'IsDatasetCopyEnabled'
  id: 'Attribute::LibOpt_SuboptimizerAlgorithm::IsPostProcessing.Description' value: 'If this attribute is true when a user aborts an optimizer run, then the optimizer will first execute any post processing `LibOpt_LinkIteratorForEach` links before aborting the run. \n\nFor the `LibOpt_IteratorForEachLink` component, this attribute is true when `LibOpt_LinkIteratorForEach.IsPostProcessing` is true for any of its links. \nFor all other components, this attribute is always false.'
  id: 'Attribute::LibOpt_SuboptimizerAlgorithm::IsPostProcessing.Name' value: 'IsPostProcessing'
  id: 'Attribute::LibOpt_SuboptimizerAlgorithm::Name.Description' value: 'The name of the `LibOpt_Component`.\n\nThe name should be unique within the `LibOpt_Run`.'
  id: 'Attribute::LibOpt_SuboptimizerAlgorithm::Name.Name' value: 'Name'
  id: 'Attribute::LibOpt_SuboptimizerAlgorithm::NotAUniqueName.Description' value: 'Whether the name of the component is not unique within the run.\nThis can lead to unexpected behavior while running the optimizer.'
  id: 'Attribute::LibOpt_SuboptimizerAlgorithm::NotAUniqueName.Name' value: 'NotAUniqueName'
  id: 'Attribute::LibOpt_SuboptimizerAlgorithm::NotCorrectlyConfigured.Description' value: 'Whether there are any configuration errors for this component.\nFor example, whether a switch has fewer than 2 branches.'
  id: 'Attribute::LibOpt_SuboptimizerAlgorithm::NotCorrectlyConfigured.Name' value: 'NotCorrectlyConfigured'
  id: 'Attribute::LibOpt_SuboptimizerAlgorithm::NrOfEnabledBreakpoints.Description' value: 'The number of enabled `LibOpt_BreakpointConditionals` that are attached to the `LibOpt_BreakpointPositions` of this component. \nThis attribute is used in the `HasNoBreakpoints` constraint.'
  id: 'Attribute::LibOpt_SuboptimizerAlgorithm::NrOfEnabledBreakpoints.Name' value: 'NrOfEnabledBreakpoints'
  id: 'Attribute::LibOpt_SuboptimizerAlgorithm::NrOfEnabledDatasetCopies.Description' value: 'The number of enabled `LibOpt_DatasetCopyConditionals` that are attached to the `LibOpt_BreakpointPositions` of this component. \nThis attribute is used in the `HasNoDatasetCopies` constraint.'
  id: 'Attribute::LibOpt_SuboptimizerAlgorithm::NrOfEnabledDatasetCopies.Name' value: 'NrOfEnabledDatasetCopies'
  id: 'Attribute::LibOpt_SuboptimizerAlgorithm::NrOfRollbacks.Description' value: 'The number of rollbacks that occured for this `LibOpt_Suboptimizer`'
  id: 'Attribute::LibOpt_SuboptimizerAlgorithm::NrOfRollbacks.Name' value: 'NrOfRollbacks'
  id: 'Attribute::LibOpt_SuboptimizerAlgorithm::NrTimesCalled.Description' value: 'The number of times this component was called (the DoTask method was called).'
  id: 'Attribute::LibOpt_SuboptimizerAlgorithm::NrTimesCalled.Name' value: 'NrTimesCalled'
  id: 'Attribute::LibOpt_SuboptimizerAlgorithm::Path.Description' value: 'A declarative attribute that contains one Path to this component.\nThis can be used to sort a list of components in a semi-logical way.'
  id: 'Attribute::LibOpt_SuboptimizerAlgorithm::Path.Name' value: 'Path'
  id: 'Attribute::LibOpt_SuboptimizerAlgorithm::RollbackPercent.Description' value: 'The rollback % for this `LibOpt_Suboptimizer`.'
  id: 'Attribute::LibOpt_SuboptimizerAlgorithm::RollbackPercent.Name' value: 'RollbackPercent'
  id: 'Attribute::LibOpt_SuboptimizerAlgorithm::RollbackStatus.Description' value: 'Indication of severity for how often this `LibOpt_Suboptimizer` rolls back'
  id: 'Attribute::LibOpt_SuboptimizerAlgorithm::RollbackStatus.Name' value: 'RollbackStatus'
  id: 'Attribute::LibOpt_SuboptimizerAlgorithm::SequenceNr.Description' value: 'The position in the sequence of the `LibOpt_Components` in the `LibOpt_Run`.\n\nThe `LibOpt_Components` are sorted according to the `Path`.\nThis is slightly different from sorting on the `Depth`.\n\nThe difference is that the `Path` keeps different branches in a `LibOpt_Switch` together, while sorting on `Depth` intertwines them.\n\nExample:\n\nIf we have a switch with 2 branches, A and C, with each a link to B and D respectively, the sorting order is different.\n\n switch -> A -> B\n switch -> C -> D\n \nNow the `Depth` (and the sorting on `Depth`) will be:\nswitch = 0\nA = 1\nC = 1\nB = 2\nD = 2\n\nThe `Path` (and sorting of the `Path`) will be:\nswitch = "switch"\nA = "switch" -> "A"\nB = "switch" -> "A" -> "B"\nC = "switch" -> "C"\nD = "switch" -> "C" -> "D"'
  id: 'Attribute::LibOpt_SuboptimizerAlgorithm::SequenceNr.Name' value: 'SequenceNr'
  id: 'Attribute::LibOpt_SuboptimizerAlgorithm::Status.Name' value: 'Status'
  id: 'Attribute::LibOpt_SuboptimizerAlgorithm::TotalDuration.Description' value: 'Total duration spent on the component during the run'
  id: 'Attribute::LibOpt_SuboptimizerAlgorithm::TotalDuration.Name' value: 'TotalDuration'
  id: 'Attribute::LibOpt_SuboptimizerAlgorithm::Type.Description' value: 'The type of the component'
  id: 'Attribute::LibOpt_SuboptimizerAlgorithm::Type.Name' value: 'Type'
  id: 'Attribute::LibOpt_SuboptimizerGP::AcceptableRollbackThreshold.Description' value: "The rollback percentage that is deemed 'acceptable' for this `LibOpt_Suboptimizer` before an issue is created.\nMeant to be a value between 0.0 and 100.0"
  id: 'Attribute::LibOpt_SuboptimizerGP::AcceptableRollbackThreshold.Name' value: 'AcceptableRollbackThreshold'
  id: 'Attribute::LibOpt_SuboptimizerGP::Breakpoints.Description' value: 'Whether any component position of this component has one or more breakpoints'
  id: 'Attribute::LibOpt_SuboptimizerGP::Breakpoints.Name' value: 'Breakpoints'
  id: 'Attribute::LibOpt_SuboptimizerGP::CanBeCalled.Description' value: 'Whether or not this component can be called, given the selected start component.'
  id: 'Attribute::LibOpt_SuboptimizerGP::CanBeCalled.Name' value: 'CanBeCalled'
  id: 'Attribute::LibOpt_SuboptimizerGP::ComponentType.Description' value: 'A short name for this `LibOpt_Component` type.'
  id: 'Attribute::LibOpt_SuboptimizerGP::ComponentType.Name' value: 'ComponentType'
  id: 'Attribute::LibOpt_SuboptimizerGP::ConfigurationError.Description' value: 'The errors in the configuration.'
  id: 'Attribute::LibOpt_SuboptimizerGP::ConfigurationError.Name' value: 'ConfigurationError'
  id: 'Attribute::LibOpt_SuboptimizerGP::DatasetCopies.Description' value: 'Whether any component position of this component has one or more dataset copies (or whether dataset copies are disabled)'
  id: 'Attribute::LibOpt_SuboptimizerGP::DatasetCopies.Name' value: 'DatasetCopies'
  id: 'Attribute::LibOpt_SuboptimizerGP::Depth.Description' value: 'The highest number of `LibOpt_Components` above this component.'
  id: 'Attribute::LibOpt_SuboptimizerGP::Depth.Name' value: 'Depth'
  id: 'Attribute::LibOpt_SuboptimizerGP::HasBreakpointEvent.Description' value: 'Whether the `LibOpt_Component` is waiting for a `LibOpt_BreakpointEvent`.'
  id: 'Attribute::LibOpt_SuboptimizerGP::HasBreakpointEvent.Name' value: 'HasBreakpointEvent'
  id: 'Attribute::LibOpt_SuboptimizerGP::HasNoBreakpoints.Description' value: 'Whether this `LibOpt_Component` has no `LibOpt_BreakpointConditional` attached to any of its component positions.'
  id: 'Attribute::LibOpt_SuboptimizerGP::HasNoBreakpoints.Name' value: 'HasNoBreakpoints'
  id: 'Attribute::LibOpt_SuboptimizerGP::HasNoDatasetCopies.Description' value: 'Whether this component has no `LibOpt_DatasetCopyConditional` attached to any of its component positions.'
  id: 'Attribute::LibOpt_SuboptimizerGP::HasNoDatasetCopies.Name' value: 'HasNoDatasetCopies'
  id: 'Attribute::LibOpt_SuboptimizerGP::HasRetrievedAlgorithmFromStore.Description' value: 'Indicates whether or not this `LibOpt_SuboptimizerAlgorithm` component retrieved an existing `Algorithm` from the `AlgorithmStore` (by using the `AlgorithmStoreReadAlgorithm` or `AlgorithmStoreReadLastAlgorithm` methods).\nThis attribute can be used later during the execution of the `LibOpt_SuboptimizerAlgorithm`. \n\nNote: If you use any of the `Retrieve*` methods on the `LibOpt_StoredAlgorithm` type, then this attribute is not set.'
  id: 'Attribute::LibOpt_SuboptimizerGP::HasRetrievedAlgorithmFromStore.Name' value: 'HasRetrievedAlgorithmFromStore'
  id: 'Attribute::LibOpt_SuboptimizerGP::HasUniqueName.Description' value: 'Whether the name of this `LibOpt_Component` is unique.'
  id: 'Attribute::LibOpt_SuboptimizerGP::HasUniqueName.Name' value: 'HasUniqueName'
  id: 'Attribute::LibOpt_SuboptimizerGP::ImgStartComponent.Description' value: 'Highlights the start component'
  id: 'Attribute::LibOpt_SuboptimizerGP::ImgStartComponent.Name' value: 'ImgStartComponent'
  id: 'Attribute::LibOpt_SuboptimizerGP::InOneTransaction.Description' value: 'This setting determines whether the algorithm should be initialized, solved and the results handled in the same transaction, or if multiple can be used.\nDefault we prefer to have this setting as `false`, as the solving can be done in parallel.\n\nNote that we cannot prevent you from reactively starting a new transaction. If you do so, this setting is meaningless and running in one transaction is broken.'
  id: 'Attribute::LibOpt_SuboptimizerGP::InOneTransaction.Name' value: 'InOneTransaction'
  id: 'Attribute::LibOpt_SuboptimizerGP::IsCorrectlyConfigured.Name' value: 'IsCorrectlyConfigured'
  id: 'Attribute::LibOpt_SuboptimizerGP::IsDatasetCopyEnabled.Description' value: "Used in the UI to set the 'Dataset copies are disabled' image icon in the 'Components' form and to show a constraint to the user.\n    \nAn icon will be shown when:\n1: There is a dataset copy on any component position of this component.\nand either \n2a: The optimizer run is ongoing and `LibOpt_Run.IsCreatingDatasetCopiesEnabled` is set to `false` on the related `LibOpt_Run` object.\n2b: The optimizer run has finished and `LibOpt_Optimizer.IsCreatingDatasetCopiesEnabled` is set to `false` on the related `LibOpt_Optimizer` object."
  id: 'Attribute::LibOpt_SuboptimizerGP::IsDatasetCopyEnabled.Name' value: 'IsDatasetCopyEnabled'
  id: 'Attribute::LibOpt_SuboptimizerGP::IsPostProcessing.Description' value: 'If this attribute is true when a user aborts an optimizer run, then the optimizer will first execute any post processing `LibOpt_LinkIteratorForEach` links before aborting the run. \n\nFor the `LibOpt_IteratorForEachLink` component, this attribute is true when `LibOpt_LinkIteratorForEach.IsPostProcessing` is true for any of its links. \nFor all other components, this attribute is always false.'
  id: 'Attribute::LibOpt_SuboptimizerGP::IsPostProcessing.Name' value: 'IsPostProcessing'
  id: 'Attribute::LibOpt_SuboptimizerGP::Name.Description' value: 'The name of the `LibOpt_Component`.\n\nThe name should be unique within the `LibOpt_Run`.'
  id: 'Attribute::LibOpt_SuboptimizerGP::Name.Name' value: 'Name'
  id: 'Attribute::LibOpt_SuboptimizerGP::NotAUniqueName.Description' value: 'Whether the name of the component is not unique within the run.\nThis can lead to unexpected behavior while running the optimizer.'
  id: 'Attribute::LibOpt_SuboptimizerGP::NotAUniqueName.Name' value: 'NotAUniqueName'
  id: 'Attribute::LibOpt_SuboptimizerGP::NotCorrectlyConfigured.Description' value: 'Whether there are any configuration errors for this component.\nFor example, whether a switch has fewer than 2 branches.'
  id: 'Attribute::LibOpt_SuboptimizerGP::NotCorrectlyConfigured.Name' value: 'NotCorrectlyConfigured'
  id: 'Attribute::LibOpt_SuboptimizerGP::NrOfEnabledBreakpoints.Description' value: 'The number of enabled `LibOpt_BreakpointConditionals` that are attached to the `LibOpt_BreakpointPositions` of this component. \nThis attribute is used in the `HasNoBreakpoints` constraint.'
  id: 'Attribute::LibOpt_SuboptimizerGP::NrOfEnabledBreakpoints.Name' value: 'NrOfEnabledBreakpoints'
  id: 'Attribute::LibOpt_SuboptimizerGP::NrOfEnabledDatasetCopies.Description' value: 'The number of enabled `LibOpt_DatasetCopyConditionals` that are attached to the `LibOpt_BreakpointPositions` of this component. \nThis attribute is used in the `HasNoDatasetCopies` constraint.'
  id: 'Attribute::LibOpt_SuboptimizerGP::NrOfEnabledDatasetCopies.Name' value: 'NrOfEnabledDatasetCopies'
  id: 'Attribute::LibOpt_SuboptimizerGP::NrOfRollbacks.Description' value: 'The number of rollbacks that occured for this `LibOpt_Suboptimizer`'
  id: 'Attribute::LibOpt_SuboptimizerGP::NrOfRollbacks.Name' value: 'NrOfRollbacks'
  id: 'Attribute::LibOpt_SuboptimizerGP::NrTimesCalled.Description' value: 'The number of times this component was called (the DoTask method was called).'
  id: 'Attribute::LibOpt_SuboptimizerGP::NrTimesCalled.Name' value: 'NrTimesCalled'
  id: 'Attribute::LibOpt_SuboptimizerGP::Path.Description' value: 'A declarative attribute that contains one Path to this component.\nThis can be used to sort a list of components in a semi-logical way.'
  id: 'Attribute::LibOpt_SuboptimizerGP::Path.Name' value: 'Path'
  id: 'Attribute::LibOpt_SuboptimizerGP::RollbackPercent.Description' value: 'The rollback % for this `LibOpt_Suboptimizer`.'
  id: 'Attribute::LibOpt_SuboptimizerGP::RollbackPercent.Name' value: 'RollbackPercent'
  id: 'Attribute::LibOpt_SuboptimizerGP::RollbackStatus.Description' value: 'Indication of severity for how often this `LibOpt_Suboptimizer` rolls back'
  id: 'Attribute::LibOpt_SuboptimizerGP::RollbackStatus.Name' value: 'RollbackStatus'
  id: 'Attribute::LibOpt_SuboptimizerGP::SequenceNr.Description' value: 'The position in the sequence of the `LibOpt_Components` in the `LibOpt_Run`.\n\nThe `LibOpt_Components` are sorted according to the `Path`.\nThis is slightly different from sorting on the `Depth`.\n\nThe difference is that the `Path` keeps different branches in a `LibOpt_Switch` together, while sorting on `Depth` intertwines them.\n\nExample:\n\nIf we have a switch with 2 branches, A and C, with each a link to B and D respectively, the sorting order is different.\n\n switch -> A -> B\n switch -> C -> D\n \nNow the `Depth` (and the sorting on `Depth`) will be:\nswitch = 0\nA = 1\nC = 1\nB = 2\nD = 2\n\nThe `Path` (and sorting of the `Path`) will be:\nswitch = "switch"\nA = "switch" -> "A"\nB = "switch" -> "A" -> "B"\nC = "switch" -> "C"\nD = "switch" -> "C" -> "D"'
  id: 'Attribute::LibOpt_SuboptimizerGP::SequenceNr.Name' value: 'SequenceNr'
  id: 'Attribute::LibOpt_SuboptimizerGP::Status.Name' value: 'Status'
  id: 'Attribute::LibOpt_SuboptimizerGP::TotalDuration.Description' value: 'Total duration spent on the component during the run'
  id: 'Attribute::LibOpt_SuboptimizerGP::TotalDuration.Name' value: 'TotalDuration'
  id: 'Attribute::LibOpt_SuboptimizerGP::Type.Description' value: 'The type of the component'
  id: 'Attribute::LibOpt_SuboptimizerGP::Type.Name' value: 'Type'
  id: 'Attribute::LibOpt_SuboptimizerMP::AcceptableRollbackThreshold.Description' value: "The rollback percentage that is deemed 'acceptable' for this `LibOpt_Suboptimizer` before an issue is created.\nMeant to be a value between 0.0 and 100.0"
  id: 'Attribute::LibOpt_SuboptimizerMP::AcceptableRollbackThreshold.Name' value: 'AcceptableRollbackThreshold'
  id: 'Attribute::LibOpt_SuboptimizerMP::AutoRegisterTypeDescriptors.Description' value: 'Whether the suboptimizer should call the `RegisterTypeDescriptors` method automatically or not.\n\nWhen this is enabled and the suboptimizer is not running in one transaction (with `InOneTransaction` is `false`) an additional transaction with a read-write lock on the dataset will be created to register the type descriptors.\nIf the suboptimizer is executed in parallel with some other transactions, this may slow down the suboptimizer.\nIf this is the case, one should set this attribute to `false` and manually register the type descriptors in the `Initialize` and/or `InitializeReactive` methods.'
  id: 'Attribute::LibOpt_SuboptimizerMP::AutoRegisterTypeDescriptors.Name' value: 'AutoRegisterTypeDescriptors'
  id: 'Attribute::LibOpt_SuboptimizerMP::Breakpoints.Description' value: 'Whether any component position of this component has one or more breakpoints'
  id: 'Attribute::LibOpt_SuboptimizerMP::Breakpoints.Name' value: 'Breakpoints'
  id: 'Attribute::LibOpt_SuboptimizerMP::CanBeCalled.Description' value: 'Whether or not this component can be called, given the selected start component.'
  id: 'Attribute::LibOpt_SuboptimizerMP::CanBeCalled.Name' value: 'CanBeCalled'
  id: 'Attribute::LibOpt_SuboptimizerMP::ComponentType.Description' value: 'A short name for this `LibOpt_Component` type.'
  id: 'Attribute::LibOpt_SuboptimizerMP::ComponentType.Name' value: 'ComponentType'
  id: 'Attribute::LibOpt_SuboptimizerMP::ConfigurationError.Description' value: 'The errors in the configuration.'
  id: 'Attribute::LibOpt_SuboptimizerMP::ConfigurationError.Name' value: 'ConfigurationError'
  id: 'Attribute::LibOpt_SuboptimizerMP::DatasetCopies.Description' value: 'Whether any component position of this component has one or more dataset copies (or whether dataset copies are disabled)'
  id: 'Attribute::LibOpt_SuboptimizerMP::DatasetCopies.Name' value: 'DatasetCopies'
  id: 'Attribute::LibOpt_SuboptimizerMP::Depth.Description' value: 'The highest number of `LibOpt_Components` above this component.'
  id: 'Attribute::LibOpt_SuboptimizerMP::Depth.Name' value: 'Depth'
  id: 'Attribute::LibOpt_SuboptimizerMP::HasBreakpointEvent.Description' value: 'Whether the `LibOpt_Component` is waiting for a `LibOpt_BreakpointEvent`.'
  id: 'Attribute::LibOpt_SuboptimizerMP::HasBreakpointEvent.Name' value: 'HasBreakpointEvent'
  id: 'Attribute::LibOpt_SuboptimizerMP::HasNoBreakpoints.Description' value: 'Whether this `LibOpt_Component` has no `LibOpt_BreakpointConditional` attached to any of its component positions.'
  id: 'Attribute::LibOpt_SuboptimizerMP::HasNoBreakpoints.Name' value: 'HasNoBreakpoints'
  id: 'Attribute::LibOpt_SuboptimizerMP::HasNoDatasetCopies.Description' value: 'Whether this component has no `LibOpt_DatasetCopyConditional` attached to any of its component positions.'
  id: 'Attribute::LibOpt_SuboptimizerMP::HasNoDatasetCopies.Name' value: 'HasNoDatasetCopies'
  id: 'Attribute::LibOpt_SuboptimizerMP::HasRetrievedAlgorithmFromStore.Description' value: 'Indicates whether or not this `LibOpt_SuboptimizerAlgorithm` component retrieved an existing `Algorithm` from the `AlgorithmStore` (by using the `AlgorithmStoreReadAlgorithm` or `AlgorithmStoreReadLastAlgorithm` methods).\nThis attribute can be used later during the execution of the `LibOpt_SuboptimizerAlgorithm`. \n\nNote: If you use any of the `Retrieve*` methods on the `LibOpt_StoredAlgorithm` type, then this attribute is not set.'
  id: 'Attribute::LibOpt_SuboptimizerMP::HasRetrievedAlgorithmFromStore.Name' value: 'HasRetrievedAlgorithmFromStore'
  id: 'Attribute::LibOpt_SuboptimizerMP::HasUniqueName.Description' value: 'Whether the name of this `LibOpt_Component` is unique.'
  id: 'Attribute::LibOpt_SuboptimizerMP::HasUniqueName.Name' value: 'HasUniqueName'
  id: 'Attribute::LibOpt_SuboptimizerMP::ImgStartComponent.Description' value: 'Highlights the start component'
  id: 'Attribute::LibOpt_SuboptimizerMP::ImgStartComponent.Name' value: 'ImgStartComponent'
  id: 'Attribute::LibOpt_SuboptimizerMP::InOneTransaction.Description' value: 'This setting determines whether the algorithm should be initialized, solved and the results handled in the same transaction, or if multiple can be used.\nDefault we prefer to have this setting as `false`, as the solving can be done in parallel.\n\nNote that we cannot prevent you from reactively starting a new transaction. If you do so, this setting is meaningless and running in one transaction is broken.'
  id: 'Attribute::LibOpt_SuboptimizerMP::InOneTransaction.Name' value: 'InOneTransaction'
  id: 'Attribute::LibOpt_SuboptimizerMP::IsCorrectlyConfigured.Name' value: 'IsCorrectlyConfigured'
  id: 'Attribute::LibOpt_SuboptimizerMP::IsDatasetCopyEnabled.Description' value: "Used in the UI to set the 'Dataset copies are disabled' image icon in the 'Components' form and to show a constraint to the user.\n    \nAn icon will be shown when:\n1: There is a dataset copy on any component position of this component.\nand either \n2a: The optimizer run is ongoing and `LibOpt_Run.IsCreatingDatasetCopiesEnabled` is set to `false` on the related `LibOpt_Run` object.\n2b: The optimizer run has finished and `LibOpt_Optimizer.IsCreatingDatasetCopiesEnabled` is set to `false` on the related `LibOpt_Optimizer` object."
  id: 'Attribute::LibOpt_SuboptimizerMP::IsDatasetCopyEnabled.Name' value: 'IsDatasetCopyEnabled'
  id: 'Attribute::LibOpt_SuboptimizerMP::IsPostProcessing.Description' value: 'If this attribute is true when a user aborts an optimizer run, then the optimizer will first execute any post processing `LibOpt_LinkIteratorForEach` links before aborting the run. \n\nFor the `LibOpt_IteratorForEachLink` component, this attribute is true when `LibOpt_LinkIteratorForEach.IsPostProcessing` is true for any of its links. \nFor all other components, this attribute is always false.'
  id: 'Attribute::LibOpt_SuboptimizerMP::IsPostProcessing.Name' value: 'IsPostProcessing'
  id: 'Attribute::LibOpt_SuboptimizerMP::Name.Description' value: 'The name of the `LibOpt_Component`.\n\nThe name should be unique within the `LibOpt_Run`.'
  id: 'Attribute::LibOpt_SuboptimizerMP::Name.Name' value: 'Name'
  id: 'Attribute::LibOpt_SuboptimizerMP::NotAUniqueName.Description' value: 'Whether the name of the component is not unique within the run.\nThis can lead to unexpected behavior while running the optimizer.'
  id: 'Attribute::LibOpt_SuboptimizerMP::NotAUniqueName.Name' value: 'NotAUniqueName'
  id: 'Attribute::LibOpt_SuboptimizerMP::NotCorrectlyConfigured.Description' value: 'Whether there are any configuration errors for this component.\nFor example, whether a switch has fewer than 2 branches.'
  id: 'Attribute::LibOpt_SuboptimizerMP::NotCorrectlyConfigured.Name' value: 'NotCorrectlyConfigured'
  id: 'Attribute::LibOpt_SuboptimizerMP::NrOfEnabledBreakpoints.Description' value: 'The number of enabled `LibOpt_BreakpointConditionals` that are attached to the `LibOpt_BreakpointPositions` of this component. \nThis attribute is used in the `HasNoBreakpoints` constraint.'
  id: 'Attribute::LibOpt_SuboptimizerMP::NrOfEnabledBreakpoints.Name' value: 'NrOfEnabledBreakpoints'
  id: 'Attribute::LibOpt_SuboptimizerMP::NrOfEnabledDatasetCopies.Description' value: 'The number of enabled `LibOpt_DatasetCopyConditionals` that are attached to the `LibOpt_BreakpointPositions` of this component. \nThis attribute is used in the `HasNoDatasetCopies` constraint.'
  id: 'Attribute::LibOpt_SuboptimizerMP::NrOfEnabledDatasetCopies.Name' value: 'NrOfEnabledDatasetCopies'
  id: 'Attribute::LibOpt_SuboptimizerMP::NrOfRollbacks.Description' value: 'The number of rollbacks that occured for this `LibOpt_Suboptimizer`'
  id: 'Attribute::LibOpt_SuboptimizerMP::NrOfRollbacks.Name' value: 'NrOfRollbacks'
  id: 'Attribute::LibOpt_SuboptimizerMP::NrTimesCalled.Description' value: 'The number of times this component was called (the DoTask method was called).'
  id: 'Attribute::LibOpt_SuboptimizerMP::NrTimesCalled.Name' value: 'NrTimesCalled'
  id: 'Attribute::LibOpt_SuboptimizerMP::Path.Description' value: 'A declarative attribute that contains one Path to this component.\nThis can be used to sort a list of components in a semi-logical way.'
  id: 'Attribute::LibOpt_SuboptimizerMP::Path.Name' value: 'Path'
  id: 'Attribute::LibOpt_SuboptimizerMP::RollbackPercent.Description' value: 'The rollback % for this `LibOpt_Suboptimizer`.'
  id: 'Attribute::LibOpt_SuboptimizerMP::RollbackPercent.Name' value: 'RollbackPercent'
  id: 'Attribute::LibOpt_SuboptimizerMP::RollbackStatus.Description' value: 'Indication of severity for how often this `LibOpt_Suboptimizer` rolls back'
  id: 'Attribute::LibOpt_SuboptimizerMP::RollbackStatus.Name' value: 'RollbackStatus'
  id: 'Attribute::LibOpt_SuboptimizerMP::SequenceNr.Description' value: 'The position in the sequence of the `LibOpt_Components` in the `LibOpt_Run`.\n\nThe `LibOpt_Components` are sorted according to the `Path`.\nThis is slightly different from sorting on the `Depth`.\n\nThe difference is that the `Path` keeps different branches in a `LibOpt_Switch` together, while sorting on `Depth` intertwines them.\n\nExample:\n\nIf we have a switch with 2 branches, A and C, with each a link to B and D respectively, the sorting order is different.\n\n switch -> A -> B\n switch -> C -> D\n \nNow the `Depth` (and the sorting on `Depth`) will be:\nswitch = 0\nA = 1\nC = 1\nB = 2\nD = 2\n\nThe `Path` (and sorting of the `Path`) will be:\nswitch = "switch"\nA = "switch" -> "A"\nB = "switch" -> "A" -> "B"\nC = "switch" -> "C"\nD = "switch" -> "C" -> "D"'
  id: 'Attribute::LibOpt_SuboptimizerMP::SequenceNr.Name' value: 'SequenceNr'
  id: 'Attribute::LibOpt_SuboptimizerMP::Status.Name' value: 'Status'
  id: 'Attribute::LibOpt_SuboptimizerMP::TotalDuration.Description' value: 'Total duration spent on the component during the run'
  id: 'Attribute::LibOpt_SuboptimizerMP::TotalDuration.Name' value: 'TotalDuration'
  id: 'Attribute::LibOpt_SuboptimizerMP::Type.Description' value: 'The type of the component'
  id: 'Attribute::LibOpt_SuboptimizerMP::Type.Name' value: 'Type'
  id: 'Attribute::LibOpt_SuboptimizerPOA::AcceptableRollbackThreshold.Description' value: "The rollback percentage that is deemed 'acceptable' for this `LibOpt_Suboptimizer` before an issue is created.\nMeant to be a value between 0.0 and 100.0"
  id: 'Attribute::LibOpt_SuboptimizerPOA::AcceptableRollbackThreshold.Name' value: 'AcceptableRollbackThreshold'
  id: 'Attribute::LibOpt_SuboptimizerPOA::Breakpoints.Description' value: 'Whether any component position of this component has one or more breakpoints'
  id: 'Attribute::LibOpt_SuboptimizerPOA::Breakpoints.Name' value: 'Breakpoints'
  id: 'Attribute::LibOpt_SuboptimizerPOA::CanBeCalled.Description' value: 'Whether or not this component can be called, given the selected start component.'
  id: 'Attribute::LibOpt_SuboptimizerPOA::CanBeCalled.Name' value: 'CanBeCalled'
  id: 'Attribute::LibOpt_SuboptimizerPOA::ComponentType.Description' value: 'A short name for this `LibOpt_Component` type.'
  id: 'Attribute::LibOpt_SuboptimizerPOA::ComponentType.Name' value: 'ComponentType'
  id: 'Attribute::LibOpt_SuboptimizerPOA::ConfigurationError.Description' value: 'The errors in the configuration.'
  id: 'Attribute::LibOpt_SuboptimizerPOA::ConfigurationError.Name' value: 'ConfigurationError'
  id: 'Attribute::LibOpt_SuboptimizerPOA::DatasetCopies.Description' value: 'Whether any component position of this component has one or more dataset copies (or whether dataset copies are disabled)'
  id: 'Attribute::LibOpt_SuboptimizerPOA::DatasetCopies.Name' value: 'DatasetCopies'
  id: 'Attribute::LibOpt_SuboptimizerPOA::Depth.Description' value: 'The highest number of `LibOpt_Components` above this component.'
  id: 'Attribute::LibOpt_SuboptimizerPOA::Depth.Name' value: 'Depth'
  id: 'Attribute::LibOpt_SuboptimizerPOA::ExecuteStrategyRemote.Description' value: 'Determines if the POA strategy execution is done remotely. Set this value to `true` if you want your strategy to be executed on a QRS. If set to `true` and a QRS is not connected an error will occur. \nThis transfers your `POAAlgorithm` to another server so the strategy can be executed without consuming resources on your main system.'
  id: 'Attribute::LibOpt_SuboptimizerPOA::ExecuteStrategyRemote.Name' value: 'ExecuteStrategyRemote'
  id: 'Attribute::LibOpt_SuboptimizerPOA::HasBreakpointEvent.Description' value: 'Whether the `LibOpt_Component` is waiting for a `LibOpt_BreakpointEvent`.'
  id: 'Attribute::LibOpt_SuboptimizerPOA::HasBreakpointEvent.Name' value: 'HasBreakpointEvent'
  id: 'Attribute::LibOpt_SuboptimizerPOA::HasNoBreakpoints.Description' value: 'Whether this `LibOpt_Component` has no `LibOpt_BreakpointConditional` attached to any of its component positions.'
  id: 'Attribute::LibOpt_SuboptimizerPOA::HasNoBreakpoints.Name' value: 'HasNoBreakpoints'
  id: 'Attribute::LibOpt_SuboptimizerPOA::HasNoDatasetCopies.Description' value: 'Whether this component has no `LibOpt_DatasetCopyConditional` attached to any of its component positions.'
  id: 'Attribute::LibOpt_SuboptimizerPOA::HasNoDatasetCopies.Name' value: 'HasNoDatasetCopies'
  id: 'Attribute::LibOpt_SuboptimizerPOA::HasRetrievedAlgorithmFromStore.Description' value: 'Indicates whether or not this `LibOpt_SuboptimizerAlgorithm` component retrieved an existing `Algorithm` from the `AlgorithmStore` (by using the `AlgorithmStoreReadAlgorithm` or `AlgorithmStoreReadLastAlgorithm` methods).\nThis attribute can be used later during the execution of the `LibOpt_SuboptimizerAlgorithm`. \n\nNote: If you use any of the `Retrieve*` methods on the `LibOpt_StoredAlgorithm` type, then this attribute is not set.'
  id: 'Attribute::LibOpt_SuboptimizerPOA::HasRetrievedAlgorithmFromStore.Name' value: 'HasRetrievedAlgorithmFromStore'
  id: 'Attribute::LibOpt_SuboptimizerPOA::HasUniqueName.Description' value: 'Whether the name of this `LibOpt_Component` is unique.'
  id: 'Attribute::LibOpt_SuboptimizerPOA::HasUniqueName.Name' value: 'HasUniqueName'
  id: 'Attribute::LibOpt_SuboptimizerPOA::ImgStartComponent.Description' value: 'Highlights the start component'
  id: 'Attribute::LibOpt_SuboptimizerPOA::ImgStartComponent.Name' value: 'ImgStartComponent'
  id: 'Attribute::LibOpt_SuboptimizerPOA::InOneTransaction.Description' value: 'This setting determines whether the algorithm should be initialized, solved and the results handled in the same transaction, or if multiple can be used.\nDefault we prefer to have this setting as `false`, as the solving can be done in parallel.\n\nNote that we cannot prevent you from reactively starting a new transaction. If you do so, this setting is meaningless and running in one transaction is broken.'
  id: 'Attribute::LibOpt_SuboptimizerPOA::InOneTransaction.Name' value: 'InOneTransaction'
  id: 'Attribute::LibOpt_SuboptimizerPOA::IsCorrectlyConfigured.Name' value: 'IsCorrectlyConfigured'
  id: 'Attribute::LibOpt_SuboptimizerPOA::IsDatasetCopyEnabled.Description' value: "Used in the UI to set the 'Dataset copies are disabled' image icon in the 'Components' form and to show a constraint to the user.\n    \nAn icon will be shown when:\n1: There is a dataset copy on any component position of this component.\nand either \n2a: The optimizer run is ongoing and `LibOpt_Run.IsCreatingDatasetCopiesEnabled` is set to `false` on the related `LibOpt_Run` object.\n2b: The optimizer run has finished and `LibOpt_Optimizer.IsCreatingDatasetCopiesEnabled` is set to `false` on the related `LibOpt_Optimizer` object."
  id: 'Attribute::LibOpt_SuboptimizerPOA::IsDatasetCopyEnabled.Name' value: 'IsDatasetCopyEnabled'
  id: 'Attribute::LibOpt_SuboptimizerPOA::IsPostProcessing.Description' value: 'If this attribute is true when a user aborts an optimizer run, then the optimizer will first execute any post processing `LibOpt_LinkIteratorForEach` links before aborting the run. \n\nFor the `LibOpt_IteratorForEachLink` component, this attribute is true when `LibOpt_LinkIteratorForEach.IsPostProcessing` is true for any of its links. \nFor all other components, this attribute is always false.'
  id: 'Attribute::LibOpt_SuboptimizerPOA::IsPostProcessing.Name' value: 'IsPostProcessing'
  id: 'Attribute::LibOpt_SuboptimizerPOA::Name.Description' value: 'The name of the `LibOpt_Component`.\n\nThe name should be unique within the `LibOpt_Run`.'
  id: 'Attribute::LibOpt_SuboptimizerPOA::Name.Name' value: 'Name'
  id: 'Attribute::LibOpt_SuboptimizerPOA::NotAUniqueName.Description' value: 'Whether the name of the component is not unique within the run.\nThis can lead to unexpected behavior while running the optimizer.'
  id: 'Attribute::LibOpt_SuboptimizerPOA::NotAUniqueName.Name' value: 'NotAUniqueName'
  id: 'Attribute::LibOpt_SuboptimizerPOA::NotCorrectlyConfigured.Description' value: 'Whether there are any configuration errors for this component.\nFor example, whether a switch has fewer than 2 branches.'
  id: 'Attribute::LibOpt_SuboptimizerPOA::NotCorrectlyConfigured.Name' value: 'NotCorrectlyConfigured'
  id: 'Attribute::LibOpt_SuboptimizerPOA::NrOfEnabledBreakpoints.Description' value: 'The number of enabled `LibOpt_BreakpointConditionals` that are attached to the `LibOpt_BreakpointPositions` of this component. \nThis attribute is used in the `HasNoBreakpoints` constraint.'
  id: 'Attribute::LibOpt_SuboptimizerPOA::NrOfEnabledBreakpoints.Name' value: 'NrOfEnabledBreakpoints'
  id: 'Attribute::LibOpt_SuboptimizerPOA::NrOfEnabledDatasetCopies.Description' value: 'The number of enabled `LibOpt_DatasetCopyConditionals` that are attached to the `LibOpt_BreakpointPositions` of this component. \nThis attribute is used in the `HasNoDatasetCopies` constraint.'
  id: 'Attribute::LibOpt_SuboptimizerPOA::NrOfEnabledDatasetCopies.Name' value: 'NrOfEnabledDatasetCopies'
  id: 'Attribute::LibOpt_SuboptimizerPOA::NrOfRollbacks.Description' value: 'The number of rollbacks that occured for this `LibOpt_Suboptimizer`'
  id: 'Attribute::LibOpt_SuboptimizerPOA::NrOfRollbacks.Name' value: 'NrOfRollbacks'
  id: 'Attribute::LibOpt_SuboptimizerPOA::NrTimesCalled.Description' value: 'The number of times this component was called (the DoTask method was called).'
  id: 'Attribute::LibOpt_SuboptimizerPOA::NrTimesCalled.Name' value: 'NrTimesCalled'
  id: 'Attribute::LibOpt_SuboptimizerPOA::Path.Description' value: 'A declarative attribute that contains one Path to this component.\nThis can be used to sort a list of components in a semi-logical way.'
  id: 'Attribute::LibOpt_SuboptimizerPOA::Path.Name' value: 'Path'
  id: 'Attribute::LibOpt_SuboptimizerPOA::RollbackPercent.Description' value: 'The rollback % for this `LibOpt_Suboptimizer`.'
  id: 'Attribute::LibOpt_SuboptimizerPOA::RollbackPercent.Name' value: 'RollbackPercent'
  id: 'Attribute::LibOpt_SuboptimizerPOA::RollbackStatus.Description' value: 'Indication of severity for how often this `LibOpt_Suboptimizer` rolls back'
  id: 'Attribute::LibOpt_SuboptimizerPOA::RollbackStatus.Name' value: 'RollbackStatus'
  id: 'Attribute::LibOpt_SuboptimizerPOA::SequenceNr.Description' value: 'The position in the sequence of the `LibOpt_Components` in the `LibOpt_Run`.\n\nThe `LibOpt_Components` are sorted according to the `Path`.\nThis is slightly different from sorting on the `Depth`.\n\nThe difference is that the `Path` keeps different branches in a `LibOpt_Switch` together, while sorting on `Depth` intertwines them.\n\nExample:\n\nIf we have a switch with 2 branches, A and C, with each a link to B and D respectively, the sorting order is different.\n\n switch -> A -> B\n switch -> C -> D\n \nNow the `Depth` (and the sorting on `Depth`) will be:\nswitch = 0\nA = 1\nC = 1\nB = 2\nD = 2\n\nThe `Path` (and sorting of the `Path`) will be:\nswitch = "switch"\nA = "switch" -> "A"\nB = "switch" -> "A" -> "B"\nC = "switch" -> "C"\nD = "switch" -> "C" -> "D"'
  id: 'Attribute::LibOpt_SuboptimizerPOA::SequenceNr.Name' value: 'SequenceNr'
  id: 'Attribute::LibOpt_SuboptimizerPOA::Status.Name' value: 'Status'
  id: 'Attribute::LibOpt_SuboptimizerPOA::TotalDuration.Description' value: 'Total duration spent on the component during the run'
  id: 'Attribute::LibOpt_SuboptimizerPOA::TotalDuration.Name' value: 'TotalDuration'
  id: 'Attribute::LibOpt_SuboptimizerPOA::Type.Description' value: 'The type of the component'
  id: 'Attribute::LibOpt_SuboptimizerPOA::Type.Name' value: 'Type'
  id: 'Attribute::LibOpt_SuboptimizerScopeElement::InputCount.Description' value: 'The number of times the `LibOpt_ScopeElement` of this N-M object is used as part of input `LibOpt_Scopes` in its related `LibOpt_Suboptimizer`.'
  id: 'Attribute::LibOpt_SuboptimizerScopeElement::InputCount.Name' value: 'InputCount'
  id: 'Attribute::LibOpt_SuboptimizerScopeElement::InputPercentage.Description' value: "The percentage of the number of times the `LibOpt_ScopeElement` of this N-M object is used as part of input `LibOpt_Scopes` in its related `LibOpt_Suboptimizer`, out of the suboptimizer's number of iterations."
  id: 'Attribute::LibOpt_SuboptimizerScopeElement::InputPercentage.Name' value: 'InputPercentage'
  id: 'Attribute::LibOpt_SuboptimizerScopeElement::NoImprovementCount.Description' value: 'The number of times the `LibOpt_ScopeElement` of this N-M object is used as part of input `LibOpt_Scopes` which resulted in no improvement in its related `LibOpt_Suboptimizer`.'
  id: 'Attribute::LibOpt_SuboptimizerScopeElement::NoImprovementCount.Name' value: 'NoImprovementCount'
  id: 'Attribute::LibOpt_SuboptimizerScopeElement::NoImprovementPercentage.Description' value: "The percentage of the number of times the `LibOpt_ScopeElement` of this N-M object is used as part of input `LibOpt_Scopes` which resulted in no improvement in its related `LibOpt_Suboptimizer`, out of the number of times it's used as part of input scope of said suboptimizer."
  id: 'Attribute::LibOpt_SuboptimizerScopeElement::NoImprovementPercentage.Name' value: 'NoImprovementPercentage'
  id: 'Attribute::LibOpt_SuboptimizerScopeElement::NrIssues.Description' value: 'The number of `LibOpt_Issues` related to this `LibOpt_SuboptimizerScopeElement`.'
  id: 'Attribute::LibOpt_SuboptimizerScopeElement::NrIssues.Name' value: 'NrIssues'
  id: 'Attribute::LibOpt_SuboptimizerScopeElement::RollbackCount.Description' value: 'The number of times the `LibOpt_ScopeElement` of this N-M object is used as part of input `LibOpt_Scopes` which resulted in rollback in its related `LibOpt_Suboptimizer`.'
  id: 'Attribute::LibOpt_SuboptimizerScopeElement::RollbackCount.Name' value: 'RollbackCount'
  id: 'Attribute::LibOpt_SuboptimizerScopeElement::RollbackPercentage.Description' value: "The percentage of the number of times the `LibOpt_ScopeElement` of this N-M object is used as part of input `LibOpt_Scopes` which resulted in rollback in its related `LibOpt_Suboptimizer`, out of the number of times it's used as part of input scope of said suboptimizer."
  id: 'Attribute::LibOpt_SuboptimizerScopeElement::RollbackPercentage.Name' value: 'RollbackPercentage'
  id: 'Attribute::LibOpt_Switch::Breakpoints.Description' value: 'Whether any component position of this component has one or more breakpoints'
  id: 'Attribute::LibOpt_Switch::Breakpoints.Name' value: 'Breakpoints'
  id: 'Attribute::LibOpt_Switch::CanBeCalled.Description' value: 'Whether or not this component can be called, given the selected start component.'
  id: 'Attribute::LibOpt_Switch::CanBeCalled.Name' value: 'CanBeCalled'
  id: 'Attribute::LibOpt_Switch::ComponentType.Description' value: 'A short name for this `LibOpt_Component` type.'
  id: 'Attribute::LibOpt_Switch::ComponentType.Name' value: 'ComponentType'
  id: 'Attribute::LibOpt_Switch::ConfigurationError.Description' value: 'The errors in the configuration.'
  id: 'Attribute::LibOpt_Switch::ConfigurationError.Name' value: 'ConfigurationError'
  id: 'Attribute::LibOpt_Switch::DatasetCopies.Description' value: 'Whether any component position of this component has one or more dataset copies (or whether dataset copies are disabled)'
  id: 'Attribute::LibOpt_Switch::DatasetCopies.Name' value: 'DatasetCopies'
  id: 'Attribute::LibOpt_Switch::Depth.Description' value: 'The highest number of `LibOpt_Components` above this component.'
  id: 'Attribute::LibOpt_Switch::Depth.Name' value: 'Depth'
  id: 'Attribute::LibOpt_Switch::HasBreakpointEvent.Description' value: 'Whether the `LibOpt_Component` is waiting for a `LibOpt_BreakpointEvent`.'
  id: 'Attribute::LibOpt_Switch::HasBreakpointEvent.Name' value: 'HasBreakpointEvent'
  id: 'Attribute::LibOpt_Switch::HasNoBreakpoints.Description' value: 'Whether this `LibOpt_Component` has no `LibOpt_BreakpointConditional` attached to any of its component positions.'
  id: 'Attribute::LibOpt_Switch::HasNoBreakpoints.Name' value: 'HasNoBreakpoints'
  id: 'Attribute::LibOpt_Switch::HasNoDatasetCopies.Description' value: 'Whether this component has no `LibOpt_DatasetCopyConditional` attached to any of its component positions.'
  id: 'Attribute::LibOpt_Switch::HasNoDatasetCopies.Name' value: 'HasNoDatasetCopies'
  id: 'Attribute::LibOpt_Switch::HasUniqueName.Description' value: 'Whether the name of this `LibOpt_Component` is unique.'
  id: 'Attribute::LibOpt_Switch::HasUniqueName.Name' value: 'HasUniqueName'
  id: 'Attribute::LibOpt_Switch::ImgStartComponent.Description' value: 'Highlights the start component'
  id: 'Attribute::LibOpt_Switch::ImgStartComponent.Name' value: 'ImgStartComponent'
  id: 'Attribute::LibOpt_Switch::IsCorrectlyConfigured.Name' value: 'IsCorrectlyConfigured'
  id: 'Attribute::LibOpt_Switch::IsDatasetCopyEnabled.Description' value: "Used in the UI to set the 'Dataset copies are disabled' image icon in the 'Components' form and to show a constraint to the user.\n    \nAn icon will be shown when:\n1: There is a dataset copy on any component position of this component.\nand either \n2a: The optimizer run is ongoing and `LibOpt_Run.IsCreatingDatasetCopiesEnabled` is set to `false` on the related `LibOpt_Run` object.\n2b: The optimizer run has finished and `LibOpt_Optimizer.IsCreatingDatasetCopiesEnabled` is set to `false` on the related `LibOpt_Optimizer` object."
  id: 'Attribute::LibOpt_Switch::IsDatasetCopyEnabled.Name' value: 'IsDatasetCopyEnabled'
  id: 'Attribute::LibOpt_Switch::IsPostProcessing.Description' value: 'If this attribute is true when a user aborts an optimizer run, then the optimizer will first execute any post processing `LibOpt_LinkIteratorForEach` links before aborting the run. \n\nFor the `LibOpt_IteratorForEachLink` component, this attribute is true when `LibOpt_LinkIteratorForEach.IsPostProcessing` is true for any of its links. \nFor all other components, this attribute is always false.'
  id: 'Attribute::LibOpt_Switch::IsPostProcessing.Name' value: 'IsPostProcessing'
  id: 'Attribute::LibOpt_Switch::Name.Description' value: 'The name of the `LibOpt_Component`.\n\nThe name should be unique within the `LibOpt_Run`.'
  id: 'Attribute::LibOpt_Switch::Name.Name' value: 'Name'
  id: 'Attribute::LibOpt_Switch::NotAUniqueName.Description' value: 'Whether the name of the component is not unique within the run.\nThis can lead to unexpected behavior while running the optimizer.'
  id: 'Attribute::LibOpt_Switch::NotAUniqueName.Name' value: 'NotAUniqueName'
  id: 'Attribute::LibOpt_Switch::NotCorrectlyConfigured.Description' value: 'Whether there are any configuration errors for this component.\nFor example, whether a switch has fewer than 2 branches.'
  id: 'Attribute::LibOpt_Switch::NotCorrectlyConfigured.Name' value: 'NotCorrectlyConfigured'
  id: 'Attribute::LibOpt_Switch::NrOfEnabledBreakpoints.Description' value: 'The number of enabled `LibOpt_BreakpointConditionals` that are attached to the `LibOpt_BreakpointPositions` of this component. \nThis attribute is used in the `HasNoBreakpoints` constraint.'
  id: 'Attribute::LibOpt_Switch::NrOfEnabledBreakpoints.Name' value: 'NrOfEnabledBreakpoints'
  id: 'Attribute::LibOpt_Switch::NrOfEnabledDatasetCopies.Description' value: 'The number of enabled `LibOpt_DatasetCopyConditionals` that are attached to the `LibOpt_BreakpointPositions` of this component. \nThis attribute is used in the `HasNoDatasetCopies` constraint.'
  id: 'Attribute::LibOpt_Switch::NrOfEnabledDatasetCopies.Name' value: 'NrOfEnabledDatasetCopies'
  id: 'Attribute::LibOpt_Switch::NrTimesCalled.Description' value: 'The number of times this component was called (the DoTask method was called).'
  id: 'Attribute::LibOpt_Switch::NrTimesCalled.Name' value: 'NrTimesCalled'
  id: 'Attribute::LibOpt_Switch::Path.Description' value: 'A declarative attribute that contains one Path to this component.\nThis can be used to sort a list of components in a semi-logical way.'
  id: 'Attribute::LibOpt_Switch::Path.Name' value: 'Path'
  id: 'Attribute::LibOpt_Switch::SequenceNr.Description' value: 'The position in the sequence of the `LibOpt_Components` in the `LibOpt_Run`.\n\nThe `LibOpt_Components` are sorted according to the `Path`.\nThis is slightly different from sorting on the `Depth`.\n\nThe difference is that the `Path` keeps different branches in a `LibOpt_Switch` together, while sorting on `Depth` intertwines them.\n\nExample:\n\nIf we have a switch with 2 branches, A and C, with each a link to B and D respectively, the sorting order is different.\n\n switch -> A -> B\n switch -> C -> D\n \nNow the `Depth` (and the sorting on `Depth`) will be:\nswitch = 0\nA = 1\nC = 1\nB = 2\nD = 2\n\nThe `Path` (and sorting of the `Path`) will be:\nswitch = "switch"\nA = "switch" -> "A"\nB = "switch" -> "A" -> "B"\nC = "switch" -> "C"\nD = "switch" -> "C" -> "D"'
  id: 'Attribute::LibOpt_Switch::SequenceNr.Name' value: 'SequenceNr'
  id: 'Attribute::LibOpt_Switch::Status.Name' value: 'Status'
  id: 'Attribute::LibOpt_Switch::TotalDuration.Description' value: 'Total duration spent on the component during the run'
  id: 'Attribute::LibOpt_Switch::TotalDuration.Name' value: 'TotalDuration'
  id: 'Attribute::LibOpt_Switch::Type.Description' value: 'The type of the component'
  id: 'Attribute::LibOpt_Switch::Type.Name' value: 'Type'
  id: 'Attribute::LibOpt_SwitchPriority::Breakpoints.Description' value: 'Whether any component position of this component has one or more breakpoints'
  id: 'Attribute::LibOpt_SwitchPriority::Breakpoints.Name' value: 'Breakpoints'
  id: 'Attribute::LibOpt_SwitchPriority::CanBeCalled.Description' value: 'Whether or not this component can be called, given the selected start component.'
  id: 'Attribute::LibOpt_SwitchPriority::CanBeCalled.Name' value: 'CanBeCalled'
  id: 'Attribute::LibOpt_SwitchPriority::ComponentType.Description' value: 'A short name for this `LibOpt_Component` type.'
  id: 'Attribute::LibOpt_SwitchPriority::ComponentType.Name' value: 'ComponentType'
  id: 'Attribute::LibOpt_SwitchPriority::ConfigurationError.Description' value: 'The errors in the configuration.'
  id: 'Attribute::LibOpt_SwitchPriority::ConfigurationError.Name' value: 'ConfigurationError'
  id: 'Attribute::LibOpt_SwitchPriority::DatasetCopies.Description' value: 'Whether any component position of this component has one or more dataset copies (or whether dataset copies are disabled)'
  id: 'Attribute::LibOpt_SwitchPriority::DatasetCopies.Name' value: 'DatasetCopies'
  id: 'Attribute::LibOpt_SwitchPriority::Depth.Description' value: 'The highest number of `LibOpt_Components` above this component.'
  id: 'Attribute::LibOpt_SwitchPriority::Depth.Name' value: 'Depth'
  id: 'Attribute::LibOpt_SwitchPriority::HasBreakpointEvent.Description' value: 'Whether the `LibOpt_Component` is waiting for a `LibOpt_BreakpointEvent`.'
  id: 'Attribute::LibOpt_SwitchPriority::HasBreakpointEvent.Name' value: 'HasBreakpointEvent'
  id: 'Attribute::LibOpt_SwitchPriority::HasNoBreakpoints.Description' value: 'Whether this `LibOpt_Component` has no `LibOpt_BreakpointConditional` attached to any of its component positions.'
  id: 'Attribute::LibOpt_SwitchPriority::HasNoBreakpoints.Name' value: 'HasNoBreakpoints'
  id: 'Attribute::LibOpt_SwitchPriority::HasNoDatasetCopies.Description' value: 'Whether this component has no `LibOpt_DatasetCopyConditional` attached to any of its component positions.'
  id: 'Attribute::LibOpt_SwitchPriority::HasNoDatasetCopies.Name' value: 'HasNoDatasetCopies'
  id: 'Attribute::LibOpt_SwitchPriority::HasUniqueName.Description' value: 'Whether the name of this `LibOpt_Component` is unique.'
  id: 'Attribute::LibOpt_SwitchPriority::HasUniqueName.Name' value: 'HasUniqueName'
  id: 'Attribute::LibOpt_SwitchPriority::ImgStartComponent.Description' value: 'Highlights the start component'
  id: 'Attribute::LibOpt_SwitchPriority::ImgStartComponent.Name' value: 'ImgStartComponent'
  id: 'Attribute::LibOpt_SwitchPriority::IsCorrectlyConfigured.Name' value: 'IsCorrectlyConfigured'
  id: 'Attribute::LibOpt_SwitchPriority::IsDatasetCopyEnabled.Description' value: "Used in the UI to set the 'Dataset copies are disabled' image icon in the 'Components' form and to show a constraint to the user.\n    \nAn icon will be shown when:\n1: There is a dataset copy on any component position of this component.\nand either \n2a: The optimizer run is ongoing and `LibOpt_Run.IsCreatingDatasetCopiesEnabled` is set to `false` on the related `LibOpt_Run` object.\n2b: The optimizer run has finished and `LibOpt_Optimizer.IsCreatingDatasetCopiesEnabled` is set to `false` on the related `LibOpt_Optimizer` object."
  id: 'Attribute::LibOpt_SwitchPriority::IsDatasetCopyEnabled.Name' value: 'IsDatasetCopyEnabled'
  id: 'Attribute::LibOpt_SwitchPriority::IsPostProcessing.Description' value: 'If this attribute is true when a user aborts an optimizer run, then the optimizer will first execute any post processing `LibOpt_LinkIteratorForEach` links before aborting the run. \n\nFor the `LibOpt_IteratorForEachLink` component, this attribute is true when `LibOpt_LinkIteratorForEach.IsPostProcessing` is true for any of its links. \nFor all other components, this attribute is always false.'
  id: 'Attribute::LibOpt_SwitchPriority::IsPostProcessing.Name' value: 'IsPostProcessing'
  id: 'Attribute::LibOpt_SwitchPriority::Name.Description' value: 'The name of the `LibOpt_Component`.\n\nThe name should be unique within the `LibOpt_Run`.'
  id: 'Attribute::LibOpt_SwitchPriority::Name.Name' value: 'Name'
  id: 'Attribute::LibOpt_SwitchPriority::NotAUniqueName.Description' value: 'Whether the name of the component is not unique within the run.\nThis can lead to unexpected behavior while running the optimizer.'
  id: 'Attribute::LibOpt_SwitchPriority::NotAUniqueName.Name' value: 'NotAUniqueName'
  id: 'Attribute::LibOpt_SwitchPriority::NotCorrectlyConfigured.Description' value: 'Whether there are any configuration errors for this component.\nFor example, whether a switch has fewer than 2 branches.'
  id: 'Attribute::LibOpt_SwitchPriority::NotCorrectlyConfigured.Name' value: 'NotCorrectlyConfigured'
  id: 'Attribute::LibOpt_SwitchPriority::NrOfEnabledBreakpoints.Description' value: 'The number of enabled `LibOpt_BreakpointConditionals` that are attached to the `LibOpt_BreakpointPositions` of this component. \nThis attribute is used in the `HasNoBreakpoints` constraint.'
  id: 'Attribute::LibOpt_SwitchPriority::NrOfEnabledBreakpoints.Name' value: 'NrOfEnabledBreakpoints'
  id: 'Attribute::LibOpt_SwitchPriority::NrOfEnabledDatasetCopies.Description' value: 'The number of enabled `LibOpt_DatasetCopyConditionals` that are attached to the `LibOpt_BreakpointPositions` of this component. \nThis attribute is used in the `HasNoDatasetCopies` constraint.'
  id: 'Attribute::LibOpt_SwitchPriority::NrOfEnabledDatasetCopies.Name' value: 'NrOfEnabledDatasetCopies'
  id: 'Attribute::LibOpt_SwitchPriority::NrTimesCalled.Description' value: 'The number of times this component was called (the DoTask method was called).'
  id: 'Attribute::LibOpt_SwitchPriority::NrTimesCalled.Name' value: 'NrTimesCalled'
  id: 'Attribute::LibOpt_SwitchPriority::Path.Description' value: 'A declarative attribute that contains one Path to this component.\nThis can be used to sort a list of components in a semi-logical way.'
  id: 'Attribute::LibOpt_SwitchPriority::Path.Name' value: 'Path'
  id: 'Attribute::LibOpt_SwitchPriority::SequenceNr.Description' value: 'The position in the sequence of the `LibOpt_Components` in the `LibOpt_Run`.\n\nThe `LibOpt_Components` are sorted according to the `Path`.\nThis is slightly different from sorting on the `Depth`.\n\nThe difference is that the `Path` keeps different branches in a `LibOpt_Switch` together, while sorting on `Depth` intertwines them.\n\nExample:\n\nIf we have a switch with 2 branches, A and C, with each a link to B and D respectively, the sorting order is different.\n\n switch -> A -> B\n switch -> C -> D\n \nNow the `Depth` (and the sorting on `Depth`) will be:\nswitch = 0\nA = 1\nC = 1\nB = 2\nD = 2\n\nThe `Path` (and sorting of the `Path`) will be:\nswitch = "switch"\nA = "switch" -> "A"\nB = "switch" -> "A" -> "B"\nC = "switch" -> "C"\nD = "switch" -> "C" -> "D"'
  id: 'Attribute::LibOpt_SwitchPriority::SequenceNr.Name' value: 'SequenceNr'
  id: 'Attribute::LibOpt_SwitchPriority::Status.Name' value: 'Status'
  id: 'Attribute::LibOpt_SwitchPriority::TotalDuration.Description' value: 'Total duration spent on the component during the run'
  id: 'Attribute::LibOpt_SwitchPriority::TotalDuration.Name' value: 'TotalDuration'
  id: 'Attribute::LibOpt_SwitchPriority::Type.Description' value: 'The type of the component'
  id: 'Attribute::LibOpt_SwitchPriority::Type.Name' value: 'Type'
  id: 'Attribute::LibOpt_SwitchProbability::Breakpoints.Description' value: 'Whether any component position of this component has one or more breakpoints'
  id: 'Attribute::LibOpt_SwitchProbability::Breakpoints.Name' value: 'Breakpoints'
  id: 'Attribute::LibOpt_SwitchProbability::CanBeCalled.Description' value: 'Whether or not this component can be called, given the selected start component.'
  id: 'Attribute::LibOpt_SwitchProbability::CanBeCalled.Name' value: 'CanBeCalled'
  id: 'Attribute::LibOpt_SwitchProbability::ComponentType.Description' value: 'A short name for this `LibOpt_Component` type.'
  id: 'Attribute::LibOpt_SwitchProbability::ComponentType.Name' value: 'ComponentType'
  id: 'Attribute::LibOpt_SwitchProbability::ConfigurationError.Description' value: 'The errors in the configuration.'
  id: 'Attribute::LibOpt_SwitchProbability::ConfigurationError.Name' value: 'ConfigurationError'
  id: 'Attribute::LibOpt_SwitchProbability::DatasetCopies.Description' value: 'Whether any component position of this component has one or more dataset copies (or whether dataset copies are disabled)'
  id: 'Attribute::LibOpt_SwitchProbability::DatasetCopies.Name' value: 'DatasetCopies'
  id: 'Attribute::LibOpt_SwitchProbability::Depth.Description' value: 'The highest number of `LibOpt_Components` above this component.'
  id: 'Attribute::LibOpt_SwitchProbability::Depth.Name' value: 'Depth'
  id: 'Attribute::LibOpt_SwitchProbability::HasBreakpointEvent.Description' value: 'Whether the `LibOpt_Component` is waiting for a `LibOpt_BreakpointEvent`.'
  id: 'Attribute::LibOpt_SwitchProbability::HasBreakpointEvent.Name' value: 'HasBreakpointEvent'
  id: 'Attribute::LibOpt_SwitchProbability::HasNoBreakpoints.Description' value: 'Whether this `LibOpt_Component` has no `LibOpt_BreakpointConditional` attached to any of its component positions.'
  id: 'Attribute::LibOpt_SwitchProbability::HasNoBreakpoints.Name' value: 'HasNoBreakpoints'
  id: 'Attribute::LibOpt_SwitchProbability::HasNoDatasetCopies.Description' value: 'Whether this component has no `LibOpt_DatasetCopyConditional` attached to any of its component positions.'
  id: 'Attribute::LibOpt_SwitchProbability::HasNoDatasetCopies.Name' value: 'HasNoDatasetCopies'
  id: 'Attribute::LibOpt_SwitchProbability::HasUniqueName.Description' value: 'Whether the name of this `LibOpt_Component` is unique.'
  id: 'Attribute::LibOpt_SwitchProbability::HasUniqueName.Name' value: 'HasUniqueName'
  id: 'Attribute::LibOpt_SwitchProbability::ImgStartComponent.Description' value: 'Highlights the start component'
  id: 'Attribute::LibOpt_SwitchProbability::ImgStartComponent.Name' value: 'ImgStartComponent'
  id: 'Attribute::LibOpt_SwitchProbability::IsCorrectlyConfigured.Name' value: 'IsCorrectlyConfigured'
  id: 'Attribute::LibOpt_SwitchProbability::IsDatasetCopyEnabled.Description' value: "Used in the UI to set the 'Dataset copies are disabled' image icon in the 'Components' form and to show a constraint to the user.\n    \nAn icon will be shown when:\n1: There is a dataset copy on any component position of this component.\nand either \n2a: The optimizer run is ongoing and `LibOpt_Run.IsCreatingDatasetCopiesEnabled` is set to `false` on the related `LibOpt_Run` object.\n2b: The optimizer run has finished and `LibOpt_Optimizer.IsCreatingDatasetCopiesEnabled` is set to `false` on the related `LibOpt_Optimizer` object."
  id: 'Attribute::LibOpt_SwitchProbability::IsDatasetCopyEnabled.Name' value: 'IsDatasetCopyEnabled'
  id: 'Attribute::LibOpt_SwitchProbability::IsPostProcessing.Description' value: 'If this attribute is true when a user aborts an optimizer run, then the optimizer will first execute any post processing `LibOpt_LinkIteratorForEach` links before aborting the run. \n\nFor the `LibOpt_IteratorForEachLink` component, this attribute is true when `LibOpt_LinkIteratorForEach.IsPostProcessing` is true for any of its links. \nFor all other components, this attribute is always false.'
  id: 'Attribute::LibOpt_SwitchProbability::IsPostProcessing.Name' value: 'IsPostProcessing'
  id: 'Attribute::LibOpt_SwitchProbability::Name.Description' value: 'The name of the `LibOpt_Component`.\n\nThe name should be unique within the `LibOpt_Run`.'
  id: 'Attribute::LibOpt_SwitchProbability::Name.Name' value: 'Name'
  id: 'Attribute::LibOpt_SwitchProbability::NotAUniqueName.Description' value: 'Whether the name of the component is not unique within the run.\nThis can lead to unexpected behavior while running the optimizer.'
  id: 'Attribute::LibOpt_SwitchProbability::NotAUniqueName.Name' value: 'NotAUniqueName'
  id: 'Attribute::LibOpt_SwitchProbability::NotCorrectlyConfigured.Description' value: 'Whether there are any configuration errors for this component.\nFor example, whether a switch has fewer than 2 branches.'
  id: 'Attribute::LibOpt_SwitchProbability::NotCorrectlyConfigured.Name' value: 'NotCorrectlyConfigured'
  id: 'Attribute::LibOpt_SwitchProbability::NrOfEnabledBreakpoints.Description' value: 'The number of enabled `LibOpt_BreakpointConditionals` that are attached to the `LibOpt_BreakpointPositions` of this component. \nThis attribute is used in the `HasNoBreakpoints` constraint.'
  id: 'Attribute::LibOpt_SwitchProbability::NrOfEnabledBreakpoints.Name' value: 'NrOfEnabledBreakpoints'
  id: 'Attribute::LibOpt_SwitchProbability::NrOfEnabledDatasetCopies.Description' value: 'The number of enabled `LibOpt_DatasetCopyConditionals` that are attached to the `LibOpt_BreakpointPositions` of this component. \nThis attribute is used in the `HasNoDatasetCopies` constraint.'
  id: 'Attribute::LibOpt_SwitchProbability::NrOfEnabledDatasetCopies.Name' value: 'NrOfEnabledDatasetCopies'
  id: 'Attribute::LibOpt_SwitchProbability::NrTimesCalled.Description' value: 'The number of times this component was called (the DoTask method was called).'
  id: 'Attribute::LibOpt_SwitchProbability::NrTimesCalled.Name' value: 'NrTimesCalled'
  id: 'Attribute::LibOpt_SwitchProbability::Path.Description' value: 'A declarative attribute that contains one Path to this component.\nThis can be used to sort a list of components in a semi-logical way.'
  id: 'Attribute::LibOpt_SwitchProbability::Path.Name' value: 'Path'
  id: 'Attribute::LibOpt_SwitchProbability::SequenceNr.Description' value: 'The position in the sequence of the `LibOpt_Components` in the `LibOpt_Run`.\n\nThe `LibOpt_Components` are sorted according to the `Path`.\nThis is slightly different from sorting on the `Depth`.\n\nThe difference is that the `Path` keeps different branches in a `LibOpt_Switch` together, while sorting on `Depth` intertwines them.\n\nExample:\n\nIf we have a switch with 2 branches, A and C, with each a link to B and D respectively, the sorting order is different.\n\n switch -> A -> B\n switch -> C -> D\n \nNow the `Depth` (and the sorting on `Depth`) will be:\nswitch = 0\nA = 1\nC = 1\nB = 2\nD = 2\n\nThe `Path` (and sorting of the `Path`) will be:\nswitch = "switch"\nA = "switch" -> "A"\nB = "switch" -> "A" -> "B"\nC = "switch" -> "C"\nD = "switch" -> "C" -> "D"'
  id: 'Attribute::LibOpt_SwitchProbability::SequenceNr.Name' value: 'SequenceNr'
  id: 'Attribute::LibOpt_SwitchProbability::Status.Name' value: 'Status'
  id: 'Attribute::LibOpt_SwitchProbability::SumWeights.Description' value: 'The sum of the `LibOpt_LinkProbability.Weight` attribute of all the `LibOpt_LinkProbabilities` related to this `LibOpt_SwitchProbability`.'
  id: 'Attribute::LibOpt_SwitchProbability::SumWeights.Name' value: 'SumWeights'
  id: 'Attribute::LibOpt_SwitchProbability::TotalDuration.Description' value: 'Total duration spent on the component during the run'
  id: 'Attribute::LibOpt_SwitchProbability::TotalDuration.Name' value: 'TotalDuration'
  id: 'Attribute::LibOpt_SwitchProbability::Type.Description' value: 'The type of the component'
  id: 'Attribute::LibOpt_SwitchProbability::Type.Name' value: 'Type'
  id: 'Attribute::LibOpt_SwitchRoundRobin::Breakpoints.Description' value: 'Whether any component position of this component has one or more breakpoints'
  id: 'Attribute::LibOpt_SwitchRoundRobin::Breakpoints.Name' value: 'Breakpoints'
  id: 'Attribute::LibOpt_SwitchRoundRobin::CanBeCalled.Description' value: 'Whether or not this component can be called, given the selected start component.'
  id: 'Attribute::LibOpt_SwitchRoundRobin::CanBeCalled.Name' value: 'CanBeCalled'
  id: 'Attribute::LibOpt_SwitchRoundRobin::ComponentType.Description' value: 'A short name for this `LibOpt_Component` type.'
  id: 'Attribute::LibOpt_SwitchRoundRobin::ComponentType.Name' value: 'ComponentType'
  id: 'Attribute::LibOpt_SwitchRoundRobin::ConfigurationError.Description' value: 'The errors in the configuration.'
  id: 'Attribute::LibOpt_SwitchRoundRobin::ConfigurationError.Name' value: 'ConfigurationError'
  id: 'Attribute::LibOpt_SwitchRoundRobin::DatasetCopies.Description' value: 'Whether any component position of this component has one or more dataset copies (or whether dataset copies are disabled)'
  id: 'Attribute::LibOpt_SwitchRoundRobin::DatasetCopies.Name' value: 'DatasetCopies'
  id: 'Attribute::LibOpt_SwitchRoundRobin::Depth.Description' value: 'The highest number of `LibOpt_Components` above this component.'
  id: 'Attribute::LibOpt_SwitchRoundRobin::Depth.Name' value: 'Depth'
  id: 'Attribute::LibOpt_SwitchRoundRobin::HasBreakpointEvent.Description' value: 'Whether the `LibOpt_Component` is waiting for a `LibOpt_BreakpointEvent`.'
  id: 'Attribute::LibOpt_SwitchRoundRobin::HasBreakpointEvent.Name' value: 'HasBreakpointEvent'
  id: 'Attribute::LibOpt_SwitchRoundRobin::HasNoBreakpoints.Description' value: 'Whether this `LibOpt_Component` has no `LibOpt_BreakpointConditional` attached to any of its component positions.'
  id: 'Attribute::LibOpt_SwitchRoundRobin::HasNoBreakpoints.Name' value: 'HasNoBreakpoints'
  id: 'Attribute::LibOpt_SwitchRoundRobin::HasNoDatasetCopies.Description' value: 'Whether this component has no `LibOpt_DatasetCopyConditional` attached to any of its component positions.'
  id: 'Attribute::LibOpt_SwitchRoundRobin::HasNoDatasetCopies.Name' value: 'HasNoDatasetCopies'
  id: 'Attribute::LibOpt_SwitchRoundRobin::HasUniqueName.Description' value: 'Whether the name of this `LibOpt_Component` is unique.'
  id: 'Attribute::LibOpt_SwitchRoundRobin::HasUniqueName.Name' value: 'HasUniqueName'
  id: 'Attribute::LibOpt_SwitchRoundRobin::ImgStartComponent.Description' value: 'Highlights the start component'
  id: 'Attribute::LibOpt_SwitchRoundRobin::ImgStartComponent.Name' value: 'ImgStartComponent'
  id: 'Attribute::LibOpt_SwitchRoundRobin::IsCorrectlyConfigured.Name' value: 'IsCorrectlyConfigured'
  id: 'Attribute::LibOpt_SwitchRoundRobin::IsDatasetCopyEnabled.Description' value: "Used in the UI to set the 'Dataset copies are disabled' image icon in the 'Components' form and to show a constraint to the user.\n    \nAn icon will be shown when:\n1: There is a dataset copy on any component position of this component.\nand either \n2a: The optimizer run is ongoing and `LibOpt_Run.IsCreatingDatasetCopiesEnabled` is set to `false` on the related `LibOpt_Run` object.\n2b: The optimizer run has finished and `LibOpt_Optimizer.IsCreatingDatasetCopiesEnabled` is set to `false` on the related `LibOpt_Optimizer` object."
  id: 'Attribute::LibOpt_SwitchRoundRobin::IsDatasetCopyEnabled.Name' value: 'IsDatasetCopyEnabled'
  id: 'Attribute::LibOpt_SwitchRoundRobin::IsPostProcessing.Description' value: 'If this attribute is true when a user aborts an optimizer run, then the optimizer will first execute any post processing `LibOpt_LinkIteratorForEach` links before aborting the run. \n\nFor the `LibOpt_IteratorForEachLink` component, this attribute is true when `LibOpt_LinkIteratorForEach.IsPostProcessing` is true for any of its links. \nFor all other components, this attribute is always false.'
  id: 'Attribute::LibOpt_SwitchRoundRobin::IsPostProcessing.Name' value: 'IsPostProcessing'
  id: 'Attribute::LibOpt_SwitchRoundRobin::Name.Description' value: 'The name of the `LibOpt_Component`.\n\nThe name should be unique within the `LibOpt_Run`.'
  id: 'Attribute::LibOpt_SwitchRoundRobin::Name.Name' value: 'Name'
  id: 'Attribute::LibOpt_SwitchRoundRobin::NotAUniqueName.Description' value: 'Whether the name of the component is not unique within the run.\nThis can lead to unexpected behavior while running the optimizer.'
  id: 'Attribute::LibOpt_SwitchRoundRobin::NotAUniqueName.Name' value: 'NotAUniqueName'
  id: 'Attribute::LibOpt_SwitchRoundRobin::NotCorrectlyConfigured.Description' value: 'Whether there are any configuration errors for this component.\nFor example, whether a switch has fewer than 2 branches.'
  id: 'Attribute::LibOpt_SwitchRoundRobin::NotCorrectlyConfigured.Name' value: 'NotCorrectlyConfigured'
  id: 'Attribute::LibOpt_SwitchRoundRobin::NrOfEnabledBreakpoints.Description' value: 'The number of enabled `LibOpt_BreakpointConditionals` that are attached to the `LibOpt_BreakpointPositions` of this component. \nThis attribute is used in the `HasNoBreakpoints` constraint.'
  id: 'Attribute::LibOpt_SwitchRoundRobin::NrOfEnabledBreakpoints.Name' value: 'NrOfEnabledBreakpoints'
  id: 'Attribute::LibOpt_SwitchRoundRobin::NrOfEnabledDatasetCopies.Description' value: 'The number of enabled `LibOpt_DatasetCopyConditionals` that are attached to the `LibOpt_BreakpointPositions` of this component. \nThis attribute is used in the `HasNoDatasetCopies` constraint.'
  id: 'Attribute::LibOpt_SwitchRoundRobin::NrOfEnabledDatasetCopies.Name' value: 'NrOfEnabledDatasetCopies'
  id: 'Attribute::LibOpt_SwitchRoundRobin::NrTimesCalled.Description' value: 'The number of times this component was called (the DoTask method was called).'
  id: 'Attribute::LibOpt_SwitchRoundRobin::NrTimesCalled.Name' value: 'NrTimesCalled'
  id: 'Attribute::LibOpt_SwitchRoundRobin::Path.Description' value: 'A declarative attribute that contains one Path to this component.\nThis can be used to sort a list of components in a semi-logical way.'
  id: 'Attribute::LibOpt_SwitchRoundRobin::Path.Name' value: 'Path'
  id: 'Attribute::LibOpt_SwitchRoundRobin::Position.Description' value: 'The position of the `LibOpt_Link` that should be returned next.'
  id: 'Attribute::LibOpt_SwitchRoundRobin::Position.Name' value: 'Position'
  id: 'Attribute::LibOpt_SwitchRoundRobin::SequenceNr.Description' value: 'The position in the sequence of the `LibOpt_Components` in the `LibOpt_Run`.\n\nThe `LibOpt_Components` are sorted according to the `Path`.\nThis is slightly different from sorting on the `Depth`.\n\nThe difference is that the `Path` keeps different branches in a `LibOpt_Switch` together, while sorting on `Depth` intertwines them.\n\nExample:\n\nIf we have a switch with 2 branches, A and C, with each a link to B and D respectively, the sorting order is different.\n\n switch -> A -> B\n switch -> C -> D\n \nNow the `Depth` (and the sorting on `Depth`) will be:\nswitch = 0\nA = 1\nC = 1\nB = 2\nD = 2\n\nThe `Path` (and sorting of the `Path`) will be:\nswitch = "switch"\nA = "switch" -> "A"\nB = "switch" -> "A" -> "B"\nC = "switch" -> "C"\nD = "switch" -> "C" -> "D"'
  id: 'Attribute::LibOpt_SwitchRoundRobin::SequenceNr.Name' value: 'SequenceNr'
  id: 'Attribute::LibOpt_SwitchRoundRobin::Status.Name' value: 'Status'
  id: 'Attribute::LibOpt_SwitchRoundRobin::TotalDuration.Description' value: 'Total duration spent on the component during the run'
  id: 'Attribute::LibOpt_SwitchRoundRobin::TotalDuration.Name' value: 'TotalDuration'
  id: 'Attribute::LibOpt_SwitchRoundRobin::Type.Description' value: 'The type of the component'
  id: 'Attribute::LibOpt_SwitchRoundRobin::Type.Name' value: 'Type'
  id: 'Attribute::LibOpt_Task::IsAborted.Description' value: 'Whether this `LibOpt_Task` is aborted or not.'
  id: 'Attribute::LibOpt_Task::IsAborted.Name' value: 'IsAborted'
  id: 'Attribute::LibOpt_Task::IsFinalized.Description' value: "Whether the task has been finalized. This means that the `Finalize` method is called.\nIf it is finalized, then we don't need to do that again when the task is removed."
  id: 'Attribute::LibOpt_Task::IsFinalized.Name' value: 'IsFinalized'
  id: 'Attribute::LibOpt_Task::IsPostProcessing.Description' value: 'If this attribute is true, then the optimizer will execute the `LibOpt_Component` (and all downstream components) of the `LibOpt_Task`, even when a user manually aborted a run.\nThis is to ensure that any post-processing components are always executed. \n\nThis attribute is true if there is an upstream `LibOpt_Link` for which `LibOpt_Link.IsPostProcessing` is true.'
  id: 'Attribute::LibOpt_Task::IsPostProcessing.Name' value: 'IsPostProcessing'
  id: 'Attribute::LibOpt_Task::IsWaiting.Description' value: 'Whether the `LibOpt_Task` is waiting on a `LibOpt_BreakpointEvent` to continue.'
  id: 'Attribute::LibOpt_Task::IsWaiting.Name' value: 'IsWaiting'
  id: 'Attribute::LibOpt_Task::IterationPartID.Description' value: 'An identifier of the iteration part this `LibOpt_Task` is in. This is in no way linked to the `LibOpt_IterationPart` objects, as these objects may not exist yet.\n\nAll tasks with the same `LibOpt_Task.IterationPartID` create snapshots that will belong to the same `LibOpt_IterationPart`.\n\nThis attribute is used in the `LibOpt_Channel` feature.'
  id: 'Attribute::LibOpt_Task::IterationPartID.Name' value: 'IterationPartID'
  id: 'Attribute::LibOpt_TaskContextIterator::NrOfIterations.Description' value: 'The number of finished iterations.'
  id: 'Attribute::LibOpt_TaskContextIterator::NrOfIterations.Name' value: 'NrOfIterations'
  id: 'Attribute::LibOpt_TaskContextIterator::NrOfSubtasks.Description' value: 'The number of subtasks that are currently running.'
  id: 'Attribute::LibOpt_TaskContextIterator::NrOfSubtasks.Name' value: 'NrOfSubtasks'
  id: 'Attribute::LibOpt_TaskContextIterator::TimeStamp.Description' value: 'The time stamp that this `LibOpt_TaskContext` was created.'
  id: 'Attribute::LibOpt_TaskContextIterator::TimeStamp.Name' value: 'TimeStamp'
  id: 'Attribute::LibOpt_TaskTransporter::InOneTransaction.Description' value: "This attribute tracks if the next task will run in one transaction. This attribute is mainly used to decide what kind of dataset copies can be created.\nBy default, only robust dataset copies are created. These copies are robust against rollbacks and errors that occur in the same transaction.\n\nA quick dataset copy will be created when:\n 1: The task is not running in one transaction (so when `InOneTransaction` is `false`).\n 2a: A `LibOpt_DatasetCopyConditional` is attached to the 'Continue' component position of the current component.\n 2b: Or a `LibOpt_DatasetCopyConditional` is attached to the 'Initialize' component position of the next component.\n\nThese quick dataset copies are not robust against errors that occur in the same transaction.\nHowever, in these cases, we know that it is not possible for errors or rollbacks to occur in the same transaction, so these datasets are safely created."
  id: 'Attribute::LibOpt_TaskTransporter::InOneTransaction.Name' value: 'InOneTransaction'
  id: 'Attribute::LibOpt_TaskTransporterDistributed::InOneTransaction.Description' value: "This attribute tracks if the next task will run in one transaction. This attribute is mainly used to decide what kind of dataset copies can be created.\nBy default, only robust dataset copies are created. These copies are robust against rollbacks and errors that occur in the same transaction.\n\nA quick dataset copy will be created when:\n 1: The task is not running in one transaction (so when `InOneTransaction` is `false`).\n 2a: A `LibOpt_DatasetCopyConditional` is attached to the 'Continue' component position of the current component.\n 2b: Or a `LibOpt_DatasetCopyConditional` is attached to the 'Initialize' component position of the next component.\n\nThese quick dataset copies are not robust against errors that occur in the same transaction.\nHowever, in these cases, we know that it is not possible for errors or rollbacks to occur in the same transaction, so these datasets are safely created."
  id: 'Attribute::LibOpt_TaskTransporterDistributed::InOneTransaction.Name' value: 'InOneTransaction'
  id: 'Attribute::LibOpt_TaskTransporterDistributed::InternalIdentifier.Description' value: 'The internal identifier of this `LibOpt_TaskTransporter` used to encode messages with.'
  id: 'Attribute::LibOpt_TaskTransporterDistributed::InternalIdentifier.Name' value: 'InternalIdentifier'
  id: 'Attribute::LibOpt_TaskTransporterOneTransaction::InOneTransaction.Description' value: "This attribute tracks if the next task will run in one transaction. This attribute is mainly used to decide what kind of dataset copies can be created.\nBy default, only robust dataset copies are created. These copies are robust against rollbacks and errors that occur in the same transaction.\n\nA quick dataset copy will be created when:\n 1: The task is not running in one transaction (so when `InOneTransaction` is `false`).\n 2a: A `LibOpt_DatasetCopyConditional` is attached to the 'Continue' component position of the current component.\n 2b: Or a `LibOpt_DatasetCopyConditional` is attached to the 'Initialize' component position of the next component.\n\nThese quick dataset copies are not robust against errors that occur in the same transaction.\nHowever, in these cases, we know that it is not possible for errors or rollbacks to occur in the same transaction, so these datasets are safely created."
  id: 'Attribute::LibOpt_TaskTransporterOneTransaction::InOneTransaction.Name' value: 'InOneTransaction'
  id: 'Attribute::LibOpt_TaskTransporterOneTransaction::NeedsPropagation.Description' value: 'Do propagate before starting the next component.'
  id: 'Attribute::LibOpt_TaskTransporterOneTransaction::NeedsPropagation.Name' value: 'NeedsPropagation'
  id: 'Attribute::LibOpt_TaskTransporterReactive::InOneTransaction.Description' value: "This attribute tracks if the next task will run in one transaction. This attribute is mainly used to decide what kind of dataset copies can be created.\nBy default, only robust dataset copies are created. These copies are robust against rollbacks and errors that occur in the same transaction.\n\nA quick dataset copy will be created when:\n 1: The task is not running in one transaction (so when `InOneTransaction` is `false`).\n 2a: A `LibOpt_DatasetCopyConditional` is attached to the 'Continue' component position of the current component.\n 2b: Or a `LibOpt_DatasetCopyConditional` is attached to the 'Initialize' component position of the next component.\n\nThese quick dataset copies are not robust against errors that occur in the same transaction.\nHowever, in these cases, we know that it is not possible for errors or rollbacks to occur in the same transaction, so these datasets are safely created."
  id: 'Attribute::LibOpt_TaskTransporterReactive::InOneTransaction.Name' value: 'InOneTransaction'
  id: 'Attribute::LibOpt_Transformer::Breakpoints.Description' value: 'Whether any component position of this component has one or more breakpoints'
  id: 'Attribute::LibOpt_Transformer::Breakpoints.Name' value: 'Breakpoints'
  id: 'Attribute::LibOpt_Transformer::CanBeCalled.Description' value: 'Whether or not this component can be called, given the selected start component.'
  id: 'Attribute::LibOpt_Transformer::CanBeCalled.Name' value: 'CanBeCalled'
  id: 'Attribute::LibOpt_Transformer::ComponentType.Description' value: 'A short name for this `LibOpt_Component` type.'
  id: 'Attribute::LibOpt_Transformer::ComponentType.Name' value: 'ComponentType'
  id: 'Attribute::LibOpt_Transformer::ConfigurationError.Description' value: 'The errors in the configuration.'
  id: 'Attribute::LibOpt_Transformer::ConfigurationError.Name' value: 'ConfigurationError'
  id: 'Attribute::LibOpt_Transformer::DatasetCopies.Description' value: 'Whether any component position of this component has one or more dataset copies (or whether dataset copies are disabled)'
  id: 'Attribute::LibOpt_Transformer::DatasetCopies.Name' value: 'DatasetCopies'
  id: 'Attribute::LibOpt_Transformer::Depth.Description' value: 'The highest number of `LibOpt_Components` above this component.'
  id: 'Attribute::LibOpt_Transformer::Depth.Name' value: 'Depth'
  id: 'Attribute::LibOpt_Transformer::HasBreakpointEvent.Description' value: 'Whether the `LibOpt_Component` is waiting for a `LibOpt_BreakpointEvent`.'
  id: 'Attribute::LibOpt_Transformer::HasBreakpointEvent.Name' value: 'HasBreakpointEvent'
  id: 'Attribute::LibOpt_Transformer::HasNoBreakpoints.Description' value: 'Whether this `LibOpt_Component` has no `LibOpt_BreakpointConditional` attached to any of its component positions.'
  id: 'Attribute::LibOpt_Transformer::HasNoBreakpoints.Name' value: 'HasNoBreakpoints'
  id: 'Attribute::LibOpt_Transformer::HasNoDatasetCopies.Description' value: 'Whether this component has no `LibOpt_DatasetCopyConditional` attached to any of its component positions.'
  id: 'Attribute::LibOpt_Transformer::HasNoDatasetCopies.Name' value: 'HasNoDatasetCopies'
  id: 'Attribute::LibOpt_Transformer::HasUniqueName.Description' value: 'Whether the name of this `LibOpt_Component` is unique.'
  id: 'Attribute::LibOpt_Transformer::HasUniqueName.Name' value: 'HasUniqueName'
  id: 'Attribute::LibOpt_Transformer::ImgStartComponent.Description' value: 'Highlights the start component'
  id: 'Attribute::LibOpt_Transformer::ImgStartComponent.Name' value: 'ImgStartComponent'
  id: 'Attribute::LibOpt_Transformer::IsCorrectlyConfigured.Name' value: 'IsCorrectlyConfigured'
  id: 'Attribute::LibOpt_Transformer::IsDatasetCopyEnabled.Description' value: "Used in the UI to set the 'Dataset copies are disabled' image icon in the 'Components' form and to show a constraint to the user.\n    \nAn icon will be shown when:\n1: There is a dataset copy on any component position of this component.\nand either \n2a: The optimizer run is ongoing and `LibOpt_Run.IsCreatingDatasetCopiesEnabled` is set to `false` on the related `LibOpt_Run` object.\n2b: The optimizer run has finished and `LibOpt_Optimizer.IsCreatingDatasetCopiesEnabled` is set to `false` on the related `LibOpt_Optimizer` object."
  id: 'Attribute::LibOpt_Transformer::IsDatasetCopyEnabled.Name' value: 'IsDatasetCopyEnabled'
  id: 'Attribute::LibOpt_Transformer::IsPostProcessing.Description' value: 'If this attribute is true when a user aborts an optimizer run, then the optimizer will first execute any post processing `LibOpt_LinkIteratorForEach` links before aborting the run. \n\nFor the `LibOpt_IteratorForEachLink` component, this attribute is true when `LibOpt_LinkIteratorForEach.IsPostProcessing` is true for any of its links. \nFor all other components, this attribute is always false.'
  id: 'Attribute::LibOpt_Transformer::IsPostProcessing.Name' value: 'IsPostProcessing'
  id: 'Attribute::LibOpt_Transformer::Name.Description' value: 'The name of the `LibOpt_Component`.\n\nThe name should be unique within the `LibOpt_Run`.'
  id: 'Attribute::LibOpt_Transformer::Name.Name' value: 'Name'
  id: 'Attribute::LibOpt_Transformer::NotAUniqueName.Description' value: 'Whether the name of the component is not unique within the run.\nThis can lead to unexpected behavior while running the optimizer.'
  id: 'Attribute::LibOpt_Transformer::NotAUniqueName.Name' value: 'NotAUniqueName'
  id: 'Attribute::LibOpt_Transformer::NotCorrectlyConfigured.Description' value: 'Whether there are any configuration errors for this component.\nFor example, whether a switch has fewer than 2 branches.'
  id: 'Attribute::LibOpt_Transformer::NotCorrectlyConfigured.Name' value: 'NotCorrectlyConfigured'
  id: 'Attribute::LibOpt_Transformer::NrOfEnabledBreakpoints.Description' value: 'The number of enabled `LibOpt_BreakpointConditionals` that are attached to the `LibOpt_BreakpointPositions` of this component. \nThis attribute is used in the `HasNoBreakpoints` constraint.'
  id: 'Attribute::LibOpt_Transformer::NrOfEnabledBreakpoints.Name' value: 'NrOfEnabledBreakpoints'
  id: 'Attribute::LibOpt_Transformer::NrOfEnabledDatasetCopies.Description' value: 'The number of enabled `LibOpt_DatasetCopyConditionals` that are attached to the `LibOpt_BreakpointPositions` of this component. \nThis attribute is used in the `HasNoDatasetCopies` constraint.'
  id: 'Attribute::LibOpt_Transformer::NrOfEnabledDatasetCopies.Name' value: 'NrOfEnabledDatasetCopies'
  id: 'Attribute::LibOpt_Transformer::NrTimesCalled.Description' value: 'The number of times this component was called (the DoTask method was called).'
  id: 'Attribute::LibOpt_Transformer::NrTimesCalled.Name' value: 'NrTimesCalled'
  id: 'Attribute::LibOpt_Transformer::Path.Description' value: 'A declarative attribute that contains one Path to this component.\nThis can be used to sort a list of components in a semi-logical way.'
  id: 'Attribute::LibOpt_Transformer::Path.Name' value: 'Path'
  id: 'Attribute::LibOpt_Transformer::SequenceNr.Description' value: 'The position in the sequence of the `LibOpt_Components` in the `LibOpt_Run`.\n\nThe `LibOpt_Components` are sorted according to the `Path`.\nThis is slightly different from sorting on the `Depth`.\n\nThe difference is that the `Path` keeps different branches in a `LibOpt_Switch` together, while sorting on `Depth` intertwines them.\n\nExample:\n\nIf we have a switch with 2 branches, A and C, with each a link to B and D respectively, the sorting order is different.\n\n switch -> A -> B\n switch -> C -> D\n \nNow the `Depth` (and the sorting on `Depth`) will be:\nswitch = 0\nA = 1\nC = 1\nB = 2\nD = 2\n\nThe `Path` (and sorting of the `Path`) will be:\nswitch = "switch"\nA = "switch" -> "A"\nB = "switch" -> "A" -> "B"\nC = "switch" -> "C"\nD = "switch" -> "C" -> "D"'
  id: 'Attribute::LibOpt_Transformer::SequenceNr.Name' value: 'SequenceNr'
  id: 'Attribute::LibOpt_Transformer::Status.Name' value: 'Status'
  id: 'Attribute::LibOpt_Transformer::TotalDuration.Description' value: 'Total duration spent on the component during the run'
  id: 'Attribute::LibOpt_Transformer::TotalDuration.Name' value: 'TotalDuration'
  id: 'Attribute::LibOpt_Transformer::Type.Description' value: 'The type of the component'
  id: 'Attribute::LibOpt_Transformer::Type.Name' value: 'Type'
  id: 'Attribute::LibOpt_UIAnalysisScopeElement::NrTimes.Description' value: 'The total number of times this scope element appears. This is equal to `NrTimesInInputScope` + `NrTimesInOutputScope`.\nSet in the designer.'
  id: 'Attribute::LibOpt_UIAnalysisScopeElement::NrTimes.Name' value: 'NrTimes'
  id: 'Attribute::LibOpt_UIAnalysisScopeElement::NrTimesFiltered.Description' value: 'The total number of times this scope element appears with the selected tags. This is equal to `NrTimesInInputScopeFiltered` + `NrTimesInOutputScopeFiltered`.\nSet in the designer.'
  id: 'Attribute::LibOpt_UIAnalysisScopeElement::NrTimesFiltered.Name' value: 'NrTimesFiltered'
  id: 'Attribute::LibOpt_UIAnalysisScopeElement::NrTimesInInputScope.Description' value: 'The number of times this scope element appears in the input scope.\nSet in the designer.'
  id: 'Attribute::LibOpt_UIAnalysisScopeElement::NrTimesInInputScope.Name' value: 'NrTimesInInputScope'
  id: 'Attribute::LibOpt_UIAnalysisScopeElement::NrTimesInInputScopeFiltered.Description' value: 'The number of times this scope element appears in the input scope with the selected tags.\nSet in the designer.'
  id: 'Attribute::LibOpt_UIAnalysisScopeElement::NrTimesInInputScopeFiltered.Name' value: 'NrTimesInInputScopeFiltered'
  id: 'Attribute::LibOpt_UIAnalysisScopeElement::NrTimesInOutputScope.Description' value: 'The number of times this scope element appears in the output scope.\nSet in the designer.'
  id: 'Attribute::LibOpt_UIAnalysisScopeElement::NrTimesInOutputScope.Name' value: 'NrTimesInOutputScope'
  id: 'Attribute::LibOpt_UIAnalysisScopeElement::NrTimesInOutputScopeFiltered.Description' value: 'The number of times this scope element appears in the output scope with the selected tags.\nSet in the designer.'
  id: 'Attribute::LibOpt_UIAnalysisScopeElement::NrTimesInOutputScopeFiltered.Name' value: 'NrTimesInOutputScopeFiltered'
  id: 'Attribute::LibOpt_UIConditionalType::Description.Description' value: 'The description of the breakpoint type.'
  id: 'Attribute::LibOpt_UIConditionalType::Description.Name' value: 'Description'
  id: 'Attribute::LibOpt_UIConditionalType::Name.Description' value: 'The DefinitionName of the breakpoint type.'
  id: 'Attribute::LibOpt_UIConditionalType::Name.Name' value: 'Name'
  id: 'Attribute::LibOpt_UIDataPoint::LowerThreshold.Description' value: 'The value of the lower threshold of the selected statistic, on the graph.'
  id: 'Attribute::LibOpt_UIDataPoint::LowerThreshold.Name' value: 'LowerThreshold'
  id: 'Attribute::LibOpt_UIDataPoint::UpperThreshold.Description' value: 'The value of the upper threshold of the selected statistic, on the graph.'
  id: 'Attribute::LibOpt_UIDataPoint::UpperThreshold.Name' value: 'UpperThreshold'
  id: 'Attribute::LibOpt_UIDataPoint::X.Description' value: 'The value on the X-axis.'
  id: 'Attribute::LibOpt_UIDataPoint::X.Name' value: 'X'
  id: 'Attribute::LibOpt_UIDataPoint::Y.Description' value: 'The value on the Y-axis.'
  id: 'Attribute::LibOpt_UIDataPoint::Y.Name' value: 'Y'
  id: 'Attribute::LibOpt_UIGraph::Offset.Description' value: 'The size of the space between 2 nodes.'
  id: 'Attribute::LibOpt_UIGraph::Offset.Name' value: 'Offset'
  id: 'Attribute::LibOpt_UIGraphArc::SequenceNr.Description' value: 'The sequence number of the arc.'
  id: 'Attribute::LibOpt_UIGraphArc::SequenceNr.Name' value: 'SequenceNr'
  id: 'Attribute::LibOpt_UIGraphArcPoint::SequenceNr.Description' value: 'The sequence number of the arc point, showing the position in the arc.'
  id: 'Attribute::LibOpt_UIGraphArcPoint::SequenceNr.Name' value: 'SequenceNr'
  id: 'Attribute::LibOpt_UIGraphArcPoint::X.Description' value: 'The X coordinate of this arc point.'
  id: 'Attribute::LibOpt_UIGraphArcPoint::X.Name' value: 'X'
  id: 'Attribute::LibOpt_UIGraphArcPoint::Y.Description' value: 'The Y coordinate of the arc point.'
  id: 'Attribute::LibOpt_UIGraphArcPoint::Y.Name' value: 'Y'
  id: 'Attribute::LibOpt_UIGraphNode::Column.Description' value: 'The sequence number on the row.'
  id: 'Attribute::LibOpt_UIGraphNode::Column.Name' value: 'Column'
  id: 'Attribute::LibOpt_UIGraphNode::Height.Description' value: 'The height of the node that will be drawn.'
  id: 'Attribute::LibOpt_UIGraphNode::Height.Name' value: 'Height'
  id: 'Attribute::LibOpt_UIGraphNode::ID.Description' value: 'A numeric identifier, used to make boolean vectors of the nodes that exist, allowing fast set lookup.'
  id: 'Attribute::LibOpt_UIGraphNode::ID.Name' value: 'ID'
  id: 'Attribute::LibOpt_UIGraphNode::Name.Description' value: 'The name of the node. This is used to break ties in sorting, so we get a deterministic outcome.'
  id: 'Attribute::LibOpt_UIGraphNode::Name.Name' value: 'Name'
  id: 'Attribute::LibOpt_UIGraphNode::Row.Description' value: 'The row number this node is on.'
  id: 'Attribute::LibOpt_UIGraphNode::Row.Name' value: 'Row'
  id: 'Attribute::LibOpt_UIGraphNode::Width.Description' value: 'The width of the node that will be drawn.'
  id: 'Attribute::LibOpt_UIGraphNode::Width.Name' value: 'Width'
  id: 'Attribute::LibOpt_UIGraphNode::X.Description' value: 'The X coordinate this node will be drawn. This X is the X at the center of the node.'
  id: 'Attribute::LibOpt_UIGraphNode::X.Name' value: 'X'
  id: 'Attribute::LibOpt_UIGraphNode::Y.Description' value: 'The Y coordinate this node will be drawn. This Y is the Y at the center of the node.'
  id: 'Attribute::LibOpt_UIGraphNode::Y.Name' value: 'Y'
  id: 'Attribute::LibOpt_UIGraphRow::RowNr.Description' value: 'The id of the row.'
  id: 'Attribute::LibOpt_UIGraphRow::RowNr.Name' value: 'RowNr'
  id: 'Attribute::LibOpt_UIScopeTag::Name.Description' value: 'The name of the tag.'
  id: 'Attribute::LibOpt_UIScopeTag::Name.Name' value: 'Name'
  id: 'Attribute::LibOpt_UISnapshotAttribute::AttributeName.Description' value: 'The name of the attribute of the snapshot.'
  id: 'Attribute::LibOpt_UISnapshotAttribute::AttributeName.Name' value: 'AttributeName'
  id: 'Attribute::LibOpt_UISnapshotAttribute::Description.Description' value: 'The description of the attribute of the snapshot.'
  id: 'Attribute::LibOpt_UISnapshotAttribute::Description.Name' value: 'Description'
  id: 'Attribute::LibOpt_UISnapshotAttribute::Path.Description' value: 'The path of the snapshot: this helps the user understand how we get to the snapshot.\nExample: "POA.Error"\nWe first select the snapshot with type "POA" and then a subsnapshot with type "Error".'
  id: 'Attribute::LibOpt_UISnapshotAttribute::Path.Name' value: 'Path'
  id: 'Attribute::LibOpt_UISnapshotAttribute::Type.Description' value: 'The type of the value of the attribute. Duration, Number, Real etc.'
  id: 'Attribute::LibOpt_UISnapshotAttribute::Type.Name' value: 'Type'
  id: 'Attribute::LibOpt_UISnapshotAttribute::Value.Description' value: 'The value (stringified) of the attribute in the snapshot.'
  id: 'Attribute::LibOpt_UISnapshotAttribute::Value.Name' value: 'Value'
  id: 'Attribute::LinkProbabilityFallBackRandom::WeightBase.Description' value: 'Base value for the weight of the link. This attribute will be then multiplied by the method GetWeightFactor to obtain the link weight.'
  id: 'Attribute::LinkProbabilityFallBackRandom::WeightBase.Name' value: 'WeightBase'
  id: 'Attribute::LinkProbabilityPISPIP::WeightBase.Description' value: 'Base value for the weight of the link. This attribute will be then multiplied by the method GetWeightFactor to obtain the link weight.'
  id: 'Attribute::LinkProbabilityPISPIP::WeightBase.Name' value: 'WeightBase'
  id: 'Attribute::LinkProbabilityPISPIPPreProduction::WeightBase.Description' value: 'Base value for the weight of the link. This attribute will be then multiplied by the method GetWeightFactor to obtain the link weight.'
  id: 'Attribute::LinkProbabilityPISPIPPreProduction::WeightBase.Name' value: 'WeightBase'
  id: 'Attribute::LinkProbabilityPeriodTaskOperation::WeightBase.Description' value: 'Base value for the weight of the link. This attribute will be then multiplied by the method GetWeightFactor to obtain the link weight.'
  id: 'Attribute::LinkProbabilityPeriodTaskOperation::WeightBase.Name' value: 'WeightBase'
  id: 'Attribute::LinkProbabilityStockingPointInPeriod::WeightBase.Description' value: 'Base value for the weight of the link. This attribute will be then multiplied by the method GetWeightFactor to obtain the link weight.'
  id: 'Attribute::LinkProbabilityStockingPointInPeriod::WeightBase.Name' value: 'WeightBase'
  id: 'Attribute::LinkProbabilityTrip::WeightBase.Description' value: 'Base value for the weight of the link. This attribute will be then multiplied by the method GetWeightFactor to obtain the link weight.'
  id: 'Attribute::LinkProbabilityTrip::WeightBase.Name' value: 'WeightBase'
  id: 'Attribute::LinkProbabilityUnitPeriod::WeightBase.Description' value: 'Base value for the weight of the link. This attribute will be then multiplied by the method GetWeightFactor to obtain the link weight.'
  id: 'Attribute::LinkProbabilityUnitPeriod::WeightBase.Name' value: 'WeightBase'
  id: 'Attribute::OperationInOptimizerRun::Details.Description' value: 'This attribute contains information on the details of this `LibOpt_ScopeElement`.'
  id: 'Attribute::OperationInOptimizerRun::Details.Name' value: 'Details'
  id: 'Attribute::OperationInOptimizerRun::Identifier.Description' value: 'An identifier for the `LibOpt_ScopeElement`.'
  id: 'Attribute::OperationInOptimizerRun::Identifier.Name' value: 'Identifier'
  id: 'Attribute::OperationInOptimizerRun::InternalIdentifier.Description' value: 'An identifier to uniquely identify this `LibOpt_ScopeElement`.'
  id: 'Attribute::OperationInOptimizerRun::InternalIdentifier.Name' value: 'InternalIdentifier'
  id: 'Attribute::OperationInputGroupInOptimizerRun::Details.Description' value: 'This attribute contains information on the details of this `LibOpt_ScopeElement`.'
  id: 'Attribute::OperationInputGroupInOptimizerRun::Details.Name' value: 'Details'
  id: 'Attribute::OperationInputGroupInOptimizerRun::Identifier.Description' value: 'An identifier for the `LibOpt_ScopeElement`.'
  id: 'Attribute::OperationInputGroupInOptimizerRun::Identifier.Name' value: 'Identifier'
  id: 'Attribute::OperationInputGroupInOptimizerRun::InternalIdentifier.Description' value: 'An identifier to uniquely identify this `LibOpt_ScopeElement`.'
  id: 'Attribute::OperationInputGroupInOptimizerRun::InternalIdentifier.Name' value: 'InternalIdentifier'
  id: 'Attribute::OperationInputSetInOptimizerRun::Details.Description' value: 'This attribute contains information on the details of this `LibOpt_ScopeElement`.'
  id: 'Attribute::OperationInputSetInOptimizerRun::Details.Name' value: 'Details'
  id: 'Attribute::OperationInputSetInOptimizerRun::Identifier.Description' value: 'An identifier for the `LibOpt_ScopeElement`.'
  id: 'Attribute::OperationInputSetInOptimizerRun::Identifier.Name' value: 'Identifier'
  id: 'Attribute::OperationInputSetInOptimizerRun::InternalIdentifier.Description' value: 'An identifier to uniquely identify this `LibOpt_ScopeElement`.'
  id: 'Attribute::OperationInputSetInOptimizerRun::InternalIdentifier.Name' value: 'InternalIdentifier'
  id: 'Attribute::Optimization::AutoDeleteScopeElements.Description' value: 'Whether to automatically delete scope elements.'
  id: 'Attribute::Optimization::AutoDeleteScopeElements.Name' value: 'AutoDeleteScopeElements'
  id: 'Attribute::Optimization::DatasetName.Description' value: 'Name of the current dataset. \nThis value is used to set `LibOpt_ControllerRun.DatasetName`.'
  id: 'Attribute::Optimization::DatasetName.Name' value: 'DatasetName'
  id: 'Attribute::Optimization::IsOptimizerDatasetCopy.Description' value: "This attribute is used to enable/disable the 'Reload parent dataset' button in the 'Replannable snapshots' form.     \nIf the attribute is `true` then the button is enabled.\n\nIf the current dataset is a copy of a dataset that had any ongoing run, then this attribute is set to `true`.\nThe attribute is set to `false` when the 'Reload parent dataset' button is pressed and the parent dataset does not exist anymore."
  id: 'Attribute::Optimization::IsOptimizerDatasetCopy.Name' value: 'IsOptimizerDatasetCopy'
  id: 'Attribute::Optimization::MDSKeyCurrentDataset.Description' value: 'The MDS Key of the current dataset. When a dataset copy is created from this dataset, then this attribute is used to set the `MDSKeyParentDataset` attribute.'
  id: 'Attribute::Optimization::MDSKeyCurrentDataset.Name' value: 'MDSKeyCurrentDataset'
  id: 'Attribute::Optimization::MDSKeyParentDataset.Description' value: "The MDS Key of the dataset that was used to create the current dataset.\nIs used for the 'Reload' button in the 'Replannable Snapshots' form."
  id: 'Attribute::Optimization::MDSKeyParentDataset.Name' value: 'MDSKeyParentDataset'
  id: 'Attribute::Optimization::NextAnalysisNr.Description' value: 'The  number we will use for the name of the next analysis.'
  id: 'Attribute::Optimization::NextAnalysisNr.Name' value: 'NextAnalysisNr'
  id: 'Attribute::Optimization::NextRunNr.Description' value: 'The run number that can be used for the next `LibOpt_Run`.'
  id: 'Attribute::Optimization::NextRunNr.Name' value: 'NextRunNr'
  id: 'Attribute::Optimization::NextScopeThinID.Description' value: 'New `LibOpt_ScopeThin` objects require an ID for the `LibOpt_ScopeThin.ID` attribute. \nIf the `ScopeThinQueue` `NumberVector` is not empty, then an ID from this vector is used.\nIf `ScopeThinQueue` is empty, then this `NextScopeThinID` attribute is used to obtain a new ID.\n\nWe recycle the IDs using the `ScopeThinQueue` to use the lowest numbers possible for IDs.\nUsing IDs with lower numbers results in faster `LibOpt_ScopeThin` operations (insert, delete, lookup).'
  id: 'Attribute::Optimization::NextScopeThinID.Name' value: 'NextScopeThinID'
  id: 'Attribute::Optimization::ScopeThinQueue.Description' value: 'A `NumberVector` storing the `LibOpt_ScopeThin.ID` attributes of `LibOpt_ScopeThin` objects that have been removed and not yet reused.\n\nBy reusing old IDs, we can keep the ID numbers low, meaning a better performance for the `LibOpt_ScopeThin`.'
  id: 'Attribute::Optimization::ScopeThinQueue.Name' value: 'ScopeThinQueue'
  id: 'Attribute::Optimization::UpdateReplannableSnapshotsDelayDuration.Description' value: "The snapshot of a quick dataset copy is created before the dataset copy creation method is called, because this method is called reactively.\nTherefore, `MDSEditor::Editor().ObjectInfos().Find( snapshot.DatasetName() )` will be null, when it is called between the creation of the snapshot and the reactive dataset copy call. \n\nThis attribute adds a small delay in the method `UpdateReplannableSnapshots` that prevents `MDSEditor::Editor().ObjectInfos().Find( snapshot.DatasetName() )` from being called too early.\nNote that the transaction priority of a dataset copy transaction is 'medium', while the transaction priority of most reactive methods within the optimizer is 'low'. \nThis implies that the the dataset copy creation transaction will typically be scheduled when the current transaction ends. So only a small delay is required."
  id: 'Attribute::Optimization::UpdateReplannableSnapshotsDelayDuration.Name' value: 'UpdateReplannableSnapshotsDelayDuration'
  id: 'Attribute::OptimizerFullRun::AutoAnalysisEnabled.Description' value: 'Whether after the runs created by this optimizer finish the runs should be automatically analyzed.\n\nIf enabled, `LibOpt_Statistics` and `LibOpt_Issues` will be created when the runs finish.'
  id: 'Attribute::OptimizerFullRun::AutoAnalysisEnabled.Name' value: 'AutoAnalysisEnabled'
  id: 'Attribute::OptimizerFullRun::DebugScope.Description' value: "Allow debugging the `LibOpt_Scope` on every newly created `LibOpt_Run`.\n\nWhen enabled, the input and output `LibOpt_Scope` of every `LibOpt_Task` is stored in its `LibOpt_SnapshotComponent`.\nWhen a `LibOpt_ScopeElement` is deleted, a special `LibOpt_ScopeElementDeleted` will be created in its place containing the same values for the `LibOpt_ScopeElement.Identifier` and `LibOpt_ScopeElement.Details` attributes.\n\nThe attribute can be set from the 'Toggles' context menu of the 'Optimizers' from."
  id: 'Attribute::OptimizerFullRun::DebugScope.Name' value: 'DebugScope'
  id: 'Attribute::OptimizerFullRun::Description.Description' value: 'A description of what the `LibOpt_Optimizer` is meant to do.'
  id: 'Attribute::OptimizerFullRun::Description.Name' value: 'Description'
  id: 'Attribute::OptimizerFullRun::HasToPropagateAfterUserCode.Description' value: "This attribute is used in the optimizer to decide whether or not a `Transaction::Transaction.Propagate()` should be called after each time that AE code has been executed. This has a major negative impact on the performance of the optimizer.\nWhen this attribute is `true`, then any propagation errors will show up in the correct spot in the 'Snapshots' form. This feature can therefore be used to debug propagation errors more easily. \nNote: If an optimizer step is not expecting a fully propagated state, then setting this attribute to `true` might cause unexpected behavior in your optimizer.\n\nThe attribute can be set from the 'Enable/Disable debugging propagation errors' sub-context menu, which can be found in the 'Toggles' context menu of the 'Optimizers' from."
  id: 'Attribute::OptimizerFullRun::HasToPropagateAfterUserCode.Name' value: 'HasToPropagateAfterUserCode'
  id: 'Attribute::OptimizerFullRun::IsAutoCleanupRunsOnNrOfRuns.Description' value: 'Whether the optimizer should clean up runs when a certain number of runs exist.\nIf this is enabled, the amount of runs can be configured using `MaxNrOfRuns`.'
  id: 'Attribute::OptimizerFullRun::IsAutoCleanupRunsOnNrOfRuns.Name' value: 'IsAutoCleanupRunsOnNrOfRuns'
  id: 'Attribute::OptimizerFullRun::IsAutoCleanupRunsOnRunAge.Description' value: 'Whether the optimizer should clean up runs after a certain age of a run.\nIf this is enabled, the maximum age of the runs can be configured using `MaxRunAge`.'
  id: 'Attribute::OptimizerFullRun::IsAutoCleanupRunsOnRunAge.Name' value: 'IsAutoCleanupRunsOnRunAge'
  id: 'Attribute::OptimizerFullRun::IsAutoCleanupSnapshots.Description' value: 'Whether or not the auto cleanup of snapshots should be done.'
  id: 'Attribute::OptimizerFullRun::IsAutoCleanupSnapshots.Name' value: 'IsAutoCleanupSnapshots'
  id: 'Attribute::OptimizerFullRun::IsCreatingDatasetCopiesEnabled.Description' value: "This attribute is used to Enable/Disable the creation of dataset copies during the next run.\nThe attribute can be set from the 'Toggles' context menu of the 'Optimizers' from."
  id: 'Attribute::OptimizerFullRun::IsCreatingDatasetCopiesEnabled.Name' value: 'IsCreatingDatasetCopiesEnabled'
  id: 'Attribute::OptimizerFullRun::IsRunControllerEnabled.Description' value: "If this value is true, then new `LibOpt_Runs` will check with the optimizer run controller when they can be started.\nNote: The optimizer run controller dataset should be loaded and it should be enabled\n\n`LibOpt_Optimizer.IsRunControllerEnabled` can be set in the 'Settings run controller' dialog, which can be found in the context menu of the 'Optimizers' form."
  id: 'Attribute::OptimizerFullRun::IsRunControllerEnabled.Name' value: 'IsRunControllerEnabled'
  id: 'Attribute::OptimizerFullRun::MaxNrOfRuns.Description' value: 'The maximum number of runs to keep.\n\nIf there are more runs than this number and `IsAutoCleanupRunsOnNrOfRuns` is `true`, the oldest run that is applicable for deletion will be deleted.\nThe oldest run is determined by the lowest finite `LibOpt_Run.FinishedOn`, meaning the run that finished the longest time ago.'
  id: 'Attribute::OptimizerFullRun::MaxNrOfRuns.Name' value: 'MaxNrOfRuns'
  id: 'Attribute::OptimizerFullRun::MaxNrOfSnapshotsPerRun.Description' value: 'Maximum number of `LibOpt_Snapshots` to keep on a `LibOpt_Run`.\nCannot be set below 100.'
  id: 'Attribute::OptimizerFullRun::MaxNrOfSnapshotsPerRun.Name' value: 'MaxNrOfSnapshotsPerRun'
  id: 'Attribute::OptimizerFullRun::MaxRunAge.Description' value: 'The maximum age of a run.\n\nIf `IsAutoCleanupRunsOnRunAge` is `true`, runs that finished longer ago than this duration will be deleted, when starting a new run.'
  id: 'Attribute::OptimizerFullRun::MaxRunAge.Name' value: 'MaxRunAge'
  id: 'Attribute::OptimizerFullRun::Name.Description' value: 'The name of the `LibOpt_Optimizer`. This helps keeping different `LibOpt_Optimizers` apart.'
  id: 'Attribute::OptimizerFullRun::Name.Name' value: 'Name'
  id: 'Attribute::OptimizerFullRun::RequestedThreadsRunController.Description' value: "The number of threads that are requested to the `LibOpt_OptimizerRunController` for each `LibOpt_ControllerRun`.\n\n`LibOpt_Optimizer.RequestedThreadsRunController` can be set in the 'Settings run controller' dialog, which can be found in the context menu of the 'Optimizers' form."
  id: 'Attribute::OptimizerFullRun::RequestedThreadsRunController.Name' value: 'RequestedThreadsRunController'
  id: 'Attribute::OptimizerFullRun::ShowAutoCleanupWarning.Description' value: 'Whether or not to show a warning when a new run is started that runs will be deleted due to auto cleanup settings.'
  id: 'Attribute::OptimizerFullRun::ShowAutoCleanupWarning.Name' value: 'ShowAutoCleanupWarning'
  id: 'Attribute::OptimizerMeta::AutoAnalysisEnabled.Description' value: 'Whether after the runs created by this optimizer finish the runs should be automatically analyzed.\n\nIf enabled, `LibOpt_Statistics` and `LibOpt_Issues` will be created when the runs finish.'
  id: 'Attribute::OptimizerMeta::AutoAnalysisEnabled.Name' value: 'AutoAnalysisEnabled'
  id: 'Attribute::OptimizerMeta::DebugScope.Description' value: "Allow debugging the `LibOpt_Scope` on every newly created `LibOpt_Run`.\n\nWhen enabled, the input and output `LibOpt_Scope` of every `LibOpt_Task` is stored in its `LibOpt_SnapshotComponent`.\nWhen a `LibOpt_ScopeElement` is deleted, a special `LibOpt_ScopeElementDeleted` will be created in its place containing the same values for the `LibOpt_ScopeElement.Identifier` and `LibOpt_ScopeElement.Details` attributes.\n\nThe attribute can be set from the 'Toggles' context menu of the 'Optimizers' from."
  id: 'Attribute::OptimizerMeta::DebugScope.Name' value: 'DebugScope'
  id: 'Attribute::OptimizerMeta::Description.Description' value: 'A description of what the `LibOpt_Optimizer` is meant to do.'
  id: 'Attribute::OptimizerMeta::Description.Name' value: 'Description'
  id: 'Attribute::OptimizerMeta::HasToPropagateAfterUserCode.Description' value: "This attribute is used in the optimizer to decide whether or not a `Transaction::Transaction.Propagate()` should be called after each time that AE code has been executed. This has a major negative impact on the performance of the optimizer.\nWhen this attribute is `true`, then any propagation errors will show up in the correct spot in the 'Snapshots' form. This feature can therefore be used to debug propagation errors more easily. \nNote: If an optimizer step is not expecting a fully propagated state, then setting this attribute to `true` might cause unexpected behavior in your optimizer.\n\nThe attribute can be set from the 'Enable/Disable debugging propagation errors' sub-context menu, which can be found in the 'Toggles' context menu of the 'Optimizers' from."
  id: 'Attribute::OptimizerMeta::HasToPropagateAfterUserCode.Name' value: 'HasToPropagateAfterUserCode'
  id: 'Attribute::OptimizerMeta::IsAutoCleanupRunsOnNrOfRuns.Description' value: 'Whether the optimizer should clean up runs when a certain number of runs exist.\nIf this is enabled, the amount of runs can be configured using `MaxNrOfRuns`.'
  id: 'Attribute::OptimizerMeta::IsAutoCleanupRunsOnNrOfRuns.Name' value: 'IsAutoCleanupRunsOnNrOfRuns'
  id: 'Attribute::OptimizerMeta::IsAutoCleanupRunsOnRunAge.Description' value: 'Whether the optimizer should clean up runs after a certain age of a run.\nIf this is enabled, the maximum age of the runs can be configured using `MaxRunAge`.'
  id: 'Attribute::OptimizerMeta::IsAutoCleanupRunsOnRunAge.Name' value: 'IsAutoCleanupRunsOnRunAge'
  id: 'Attribute::OptimizerMeta::IsAutoCleanupSnapshots.Description' value: 'Whether or not the auto cleanup of snapshots should be done.'
  id: 'Attribute::OptimizerMeta::IsAutoCleanupSnapshots.Name' value: 'IsAutoCleanupSnapshots'
  id: 'Attribute::OptimizerMeta::IsCreatingDatasetCopiesEnabled.Description' value: "This attribute is used to Enable/Disable the creation of dataset copies during the next run.\nThe attribute can be set from the 'Toggles' context menu of the 'Optimizers' from."
  id: 'Attribute::OptimizerMeta::IsCreatingDatasetCopiesEnabled.Name' value: 'IsCreatingDatasetCopiesEnabled'
  id: 'Attribute::OptimizerMeta::IsRunControllerEnabled.Description' value: "If this value is true, then new `LibOpt_Runs` will check with the optimizer run controller when they can be started.\nNote: The optimizer run controller dataset should be loaded and it should be enabled\n\n`LibOpt_Optimizer.IsRunControllerEnabled` can be set in the 'Settings run controller' dialog, which can be found in the context menu of the 'Optimizers' form."
  id: 'Attribute::OptimizerMeta::IsRunControllerEnabled.Name' value: 'IsRunControllerEnabled'
  id: 'Attribute::OptimizerMeta::MaxNrOfRuns.Description' value: 'The maximum number of runs to keep.\n\nIf there are more runs than this number and `IsAutoCleanupRunsOnNrOfRuns` is `true`, the oldest run that is applicable for deletion will be deleted.\nThe oldest run is determined by the lowest finite `LibOpt_Run.FinishedOn`, meaning the run that finished the longest time ago.'
  id: 'Attribute::OptimizerMeta::MaxNrOfRuns.Name' value: 'MaxNrOfRuns'
  id: 'Attribute::OptimizerMeta::MaxNrOfSnapshotsPerRun.Description' value: 'Maximum number of `LibOpt_Snapshots` to keep on a `LibOpt_Run`.\nCannot be set below 100.'
  id: 'Attribute::OptimizerMeta::MaxNrOfSnapshotsPerRun.Name' value: 'MaxNrOfSnapshotsPerRun'
  id: 'Attribute::OptimizerMeta::MaxRunAge.Description' value: 'The maximum age of a run.\n\nIf `IsAutoCleanupRunsOnRunAge` is `true`, runs that finished longer ago than this duration will be deleted, when starting a new run.'
  id: 'Attribute::OptimizerMeta::MaxRunAge.Name' value: 'MaxRunAge'
  id: 'Attribute::OptimizerMeta::Name.Description' value: 'The name of the `LibOpt_Optimizer`. This helps keeping different `LibOpt_Optimizers` apart.'
  id: 'Attribute::OptimizerMeta::Name.Name' value: 'Name'
  id: 'Attribute::OptimizerMeta::RequestedThreadsRunController.Description' value: "The number of threads that are requested to the `LibOpt_OptimizerRunController` for each `LibOpt_ControllerRun`.\n\n`LibOpt_Optimizer.RequestedThreadsRunController` can be set in the 'Settings run controller' dialog, which can be found in the context menu of the 'Optimizers' form."
  id: 'Attribute::OptimizerMeta::RequestedThreadsRunController.Name' value: 'RequestedThreadsRunController'
  id: 'Attribute::OptimizerMeta::ShowAutoCleanupWarning.Description' value: 'Whether or not to show a warning when a new run is started that runs will be deleted due to auto cleanup settings.'
  id: 'Attribute::OptimizerMeta::ShowAutoCleanupWarning.Name' value: 'ShowAutoCleanupWarning'
  id: 'Attribute::OptimizerPrePostProcessing::CanBeCalled.Description' value: 'Whether or not this component can be called, given the selected start component.'
  id: 'Attribute::OptimizerPrePostProcessing::CanBeCalled.Name' value: 'CanBeCalled'
  id: 'Attribute::OptimizerPrePostProcessing::ComponentType.Description' value: 'A short name for this `LibOpt_Component` type.'
  id: 'Attribute::OptimizerPrePostProcessing::ComponentType.Name' value: 'ComponentType'
  id: 'Attribute::OptimizerPrePostProcessing::ConfigurationError.Description' value: 'The errors in the configuration.'
  id: 'Attribute::OptimizerPrePostProcessing::ConfigurationError.Name' value: 'ConfigurationError'
  id: 'Attribute::OptimizerPrePostProcessing::Depth.Description' value: 'The highest number of `LibOpt_Components` above this component.'
  id: 'Attribute::OptimizerPrePostProcessing::Depth.Name' value: 'Depth'
  id: 'Attribute::OptimizerPrePostProcessing::HasBreakpointEvent.Description' value: 'Whether the `LibOpt_Component` is waiting for a `LibOpt_BreakpointEvent`.'
  id: 'Attribute::OptimizerPrePostProcessing::HasBreakpointEvent.Name' value: 'HasBreakpointEvent'
  id: 'Attribute::OptimizerPrePostProcessing::HasNoBreakpoints.Description' value: 'Whether this `LibOpt_Component` has no `LibOpt_BreakpointConditional` attached to any of its component positions.'
  id: 'Attribute::OptimizerPrePostProcessing::HasNoBreakpoints.Name' value: 'HasNoBreakpoints'
  id: 'Attribute::OptimizerPrePostProcessing::HasNoDatasetCopies.Description' value: 'Whether this component has no `LibOpt_DatasetCopyConditional` attached to any of its component positions.'
  id: 'Attribute::OptimizerPrePostProcessing::HasNoDatasetCopies.Name' value: 'HasNoDatasetCopies'
  id: 'Attribute::OptimizerPrePostProcessing::HasUniqueName.Description' value: 'Whether the name of this `LibOpt_Component` is unique.'
  id: 'Attribute::OptimizerPrePostProcessing::HasUniqueName.Name' value: 'HasUniqueName'
  id: 'Attribute::OptimizerPrePostProcessing::IsCorrectlyConfigured.Name' value: 'IsCorrectlyConfigured'
  id: 'Attribute::OptimizerPrePostProcessing::IsDatasetCopyEnabled.Description' value: "Used in the UI to set the 'Dataset copies are disabled' image icon in the 'Components' form and to show a constraint to the user.\n    \nAn icon will be shown when:\n1: There is a dataset copy on any component position of this component.\nand either \n2a: The optimizer run is ongoing and `LibOpt_Run.IsCreatingDatasetCopiesEnabled` is set to `false` on the related `LibOpt_Run` object.\n2b: The optimizer run has finished and `LibOpt_Optimizer.IsCreatingDatasetCopiesEnabled` is set to `false` on the related `LibOpt_Optimizer` object."
  id: 'Attribute::OptimizerPrePostProcessing::IsDatasetCopyEnabled.Name' value: 'IsDatasetCopyEnabled'
  id: 'Attribute::OptimizerPrePostProcessing::IsPostProcessing.Description' value: 'If this attribute is true when a user aborts an optimizer run, then the optimizer will first execute any post processing `LibOpt_LinkIteratorForEach` links before aborting the run. \n\nFor the `LibOpt_IteratorForEachLink` component, this attribute is true when `LibOpt_LinkIteratorForEach.IsPostProcessing` is true for any of its links. \nFor all other components, this attribute is always false.'
  id: 'Attribute::OptimizerPrePostProcessing::IsPostProcessing.Name' value: 'IsPostProcessing'
  id: 'Attribute::OptimizerPrePostProcessing::Name.Description' value: 'The name of the `LibOpt_Component`.\n\nThe name should be unique within the `LibOpt_Run`.'
  id: 'Attribute::OptimizerPrePostProcessing::Name.Name' value: 'Name'
  id: 'Attribute::OptimizerPrePostProcessing::NrOfEnabledBreakpoints.Description' value: 'The number of enabled `LibOpt_BreakpointConditionals` that are attached to the `LibOpt_BreakpointPositions` of this component. \nThis attribute is used in the `HasNoBreakpoints` constraint.'
  id: 'Attribute::OptimizerPrePostProcessing::NrOfEnabledBreakpoints.Name' value: 'NrOfEnabledBreakpoints'
  id: 'Attribute::OptimizerPrePostProcessing::NrOfEnabledDatasetCopies.Description' value: 'The number of enabled `LibOpt_DatasetCopyConditionals` that are attached to the `LibOpt_BreakpointPositions` of this component. \nThis attribute is used in the `HasNoDatasetCopies` constraint.'
  id: 'Attribute::OptimizerPrePostProcessing::NrOfEnabledDatasetCopies.Name' value: 'NrOfEnabledDatasetCopies'
  id: 'Attribute::OptimizerPrePostProcessing::NrTimesCalled.Description' value: 'The number of times this component was called (the DoTask method was called).'
  id: 'Attribute::OptimizerPrePostProcessing::NrTimesCalled.Name' value: 'NrTimesCalled'
  id: 'Attribute::OptimizerPrePostProcessing::Path.Description' value: 'A declarative attribute that contains one Path to this component.\nThis can be used to sort a list of components in a semi-logical way.'
  id: 'Attribute::OptimizerPrePostProcessing::Path.Name' value: 'Path'
  id: 'Attribute::OptimizerPrePostProcessing::SequenceNr.Description' value: 'The position in the sequence of the `LibOpt_Components` in the `LibOpt_Run`.\n\nThe `LibOpt_Components` are sorted according to the `Path`.\nThis is slightly different from sorting on the `Depth`.\n\nThe difference is that the `Path` keeps different branches in a `LibOpt_Switch` together, while sorting on `Depth` intertwines them.\n\nExample:\n\nIf we have a switch with 2 branches, A and C, with each a link to B and D respectively, the sorting order is different.\n\n switch -> A -> B\n switch -> C -> D\n \nNow the `Depth` (and the sorting on `Depth`) will be:\nswitch = 0\nA = 1\nC = 1\nB = 2\nD = 2\n\nThe `Path` (and sorting of the `Path`) will be:\nswitch = "switch"\nA = "switch" -> "A"\nB = "switch" -> "A" -> "B"\nC = "switch" -> "C"\nD = "switch" -> "C" -> "D"'
  id: 'Attribute::OptimizerPrePostProcessing::SequenceNr.Name' value: 'SequenceNr'
  id: 'Attribute::OptimizerPrePostProcessing::TotalDuration.Description' value: 'Total duration spent on the component during the run'
  id: 'Attribute::OptimizerPrePostProcessing::TotalDuration.Name' value: 'TotalDuration'
  id: 'Attribute::OptimizerPuzzleInOptimizerRun::Details.Description' value: 'This attribute contains information on the details of this `LibOpt_ScopeElement`.'
  id: 'Attribute::OptimizerPuzzleInOptimizerRun::Details.Name' value: 'Details'
  id: 'Attribute::OptimizerPuzzleInOptimizerRun::Identifier.Description' value: 'An identifier for the `LibOpt_ScopeElement`.'
  id: 'Attribute::OptimizerPuzzleInOptimizerRun::Identifier.Name' value: 'Identifier'
  id: 'Attribute::OptimizerPuzzleInOptimizerRun::InternalIdentifier.Description' value: 'An identifier to uniquely identify this `LibOpt_ScopeElement`.'
  id: 'Attribute::OptimizerPuzzleInOptimizerRun::InternalIdentifier.Name' value: 'InternalIdentifier'
  id: 'Attribute::OptimizerSmartPlan::AutoAnalysisEnabled.Description' value: 'Whether after the runs created by this optimizer finish the runs should be automatically analyzed.\n\nIf enabled, `LibOpt_Statistics` and `LibOpt_Issues` will be created when the runs finish.'
  id: 'Attribute::OptimizerSmartPlan::AutoAnalysisEnabled.Name' value: 'AutoAnalysisEnabled'
  id: 'Attribute::OptimizerSmartPlan::DebugScope.Description' value: "Allow debugging the `LibOpt_Scope` on every newly created `LibOpt_Run`.\n\nWhen enabled, the input and output `LibOpt_Scope` of every `LibOpt_Task` is stored in its `LibOpt_SnapshotComponent`.\nWhen a `LibOpt_ScopeElement` is deleted, a special `LibOpt_ScopeElementDeleted` will be created in its place containing the same values for the `LibOpt_ScopeElement.Identifier` and `LibOpt_ScopeElement.Details` attributes.\n\nThe attribute can be set from the 'Toggles' context menu of the 'Optimizers' from."
  id: 'Attribute::OptimizerSmartPlan::DebugScope.Name' value: 'DebugScope'
  id: 'Attribute::OptimizerSmartPlan::Description.Description' value: 'A description of what the `LibOpt_Optimizer` is meant to do.'
  id: 'Attribute::OptimizerSmartPlan::Description.Name' value: 'Description'
  id: 'Attribute::OptimizerSmartPlan::HasToPropagateAfterUserCode.Description' value: "This attribute is used in the optimizer to decide whether or not a `Transaction::Transaction.Propagate()` should be called after each time that AE code has been executed. This has a major negative impact on the performance of the optimizer.\nWhen this attribute is `true`, then any propagation errors will show up in the correct spot in the 'Snapshots' form. This feature can therefore be used to debug propagation errors more easily. \nNote: If an optimizer step is not expecting a fully propagated state, then setting this attribute to `true` might cause unexpected behavior in your optimizer.\n\nThe attribute can be set from the 'Enable/Disable debugging propagation errors' sub-context menu, which can be found in the 'Toggles' context menu of the 'Optimizers' from."
  id: 'Attribute::OptimizerSmartPlan::HasToPropagateAfterUserCode.Name' value: 'HasToPropagateAfterUserCode'
  id: 'Attribute::OptimizerSmartPlan::IsAutoCleanupRunsOnNrOfRuns.Description' value: 'Whether the optimizer should clean up runs when a certain number of runs exist.\nIf this is enabled, the amount of runs can be configured using `MaxNrOfRuns`.'
  id: 'Attribute::OptimizerSmartPlan::IsAutoCleanupRunsOnNrOfRuns.Name' value: 'IsAutoCleanupRunsOnNrOfRuns'
  id: 'Attribute::OptimizerSmartPlan::IsAutoCleanupRunsOnRunAge.Description' value: 'Whether the optimizer should clean up runs after a certain age of a run.\nIf this is enabled, the maximum age of the runs can be configured using `MaxRunAge`.'
  id: 'Attribute::OptimizerSmartPlan::IsAutoCleanupRunsOnRunAge.Name' value: 'IsAutoCleanupRunsOnRunAge'
  id: 'Attribute::OptimizerSmartPlan::IsAutoCleanupSnapshots.Description' value: 'Whether or not the auto cleanup of snapshots should be done.'
  id: 'Attribute::OptimizerSmartPlan::IsAutoCleanupSnapshots.Name' value: 'IsAutoCleanupSnapshots'
  id: 'Attribute::OptimizerSmartPlan::IsCreatingDatasetCopiesEnabled.Description' value: "This attribute is used to Enable/Disable the creation of dataset copies during the next run.\nThe attribute can be set from the 'Toggles' context menu of the 'Optimizers' from."
  id: 'Attribute::OptimizerSmartPlan::IsCreatingDatasetCopiesEnabled.Name' value: 'IsCreatingDatasetCopiesEnabled'
  id: 'Attribute::OptimizerSmartPlan::IsRunControllerEnabled.Description' value: "If this value is true, then new `LibOpt_Runs` will check with the optimizer run controller when they can be started.\nNote: The optimizer run controller dataset should be loaded and it should be enabled\n\n`LibOpt_Optimizer.IsRunControllerEnabled` can be set in the 'Settings run controller' dialog, which can be found in the context menu of the 'Optimizers' form."
  id: 'Attribute::OptimizerSmartPlan::IsRunControllerEnabled.Name' value: 'IsRunControllerEnabled'
  id: 'Attribute::OptimizerSmartPlan::MaxNrOfRuns.Description' value: 'The maximum number of runs to keep.\n\nIf there are more runs than this number and `IsAutoCleanupRunsOnNrOfRuns` is `true`, the oldest run that is applicable for deletion will be deleted.\nThe oldest run is determined by the lowest finite `LibOpt_Run.FinishedOn`, meaning the run that finished the longest time ago.'
  id: 'Attribute::OptimizerSmartPlan::MaxNrOfRuns.Name' value: 'MaxNrOfRuns'
  id: 'Attribute::OptimizerSmartPlan::MaxNrOfSnapshotsPerRun.Description' value: 'Maximum number of `LibOpt_Snapshots` to keep on a `LibOpt_Run`.\nCannot be set below 100.'
  id: 'Attribute::OptimizerSmartPlan::MaxNrOfSnapshotsPerRun.Name' value: 'MaxNrOfSnapshotsPerRun'
  id: 'Attribute::OptimizerSmartPlan::MaxRunAge.Description' value: 'The maximum age of a run.\n\nIf `IsAutoCleanupRunsOnRunAge` is `true`, runs that finished longer ago than this duration will be deleted, when starting a new run.'
  id: 'Attribute::OptimizerSmartPlan::MaxRunAge.Name' value: 'MaxRunAge'
  id: 'Attribute::OptimizerSmartPlan::Name.Description' value: 'The name of the `LibOpt_Optimizer`. This helps keeping different `LibOpt_Optimizers` apart.'
  id: 'Attribute::OptimizerSmartPlan::Name.Name' value: 'Name'
  id: 'Attribute::OptimizerSmartPlan::RequestedThreadsRunController.Description' value: "The number of threads that are requested to the `LibOpt_OptimizerRunController` for each `LibOpt_ControllerRun`.\n\n`LibOpt_Optimizer.RequestedThreadsRunController` can be set in the 'Settings run controller' dialog, which can be found in the context menu of the 'Optimizers' form."
  id: 'Attribute::OptimizerSmartPlan::RequestedThreadsRunController.Name' value: 'RequestedThreadsRunController'
  id: 'Attribute::OptimizerSmartPlan::ShowAutoCleanupWarning.Description' value: 'Whether or not to show a warning when a new run is started that runs will be deleted due to auto cleanup settings.'
  id: 'Attribute::OptimizerSmartPlan::ShowAutoCleanupWarning.Name' value: 'ShowAutoCleanupWarning'
  id: 'Attribute::PISPIPInOptimizerRun::Details.Description' value: 'This attribute contains information on the details of this `LibOpt_ScopeElement`.'
  id: 'Attribute::PISPIPInOptimizerRun::Details.Name' value: 'Details'
  id: 'Attribute::PISPIPInOptimizerRun::Identifier.Description' value: 'An identifier for the `LibOpt_ScopeElement`.'
  id: 'Attribute::PISPIPInOptimizerRun::Identifier.Name' value: 'Identifier'
  id: 'Attribute::PISPIPInOptimizerRun::InternalIdentifier.Description' value: 'An identifier to uniquely identify this `LibOpt_ScopeElement`.'
  id: 'Attribute::PISPIPInOptimizerRun::InternalIdentifier.Name' value: 'InternalIdentifier'
  id: 'Attribute::PISPInOptimizerRun::Details.Description' value: 'This attribute contains information on the details of this `LibOpt_ScopeElement`.'
  id: 'Attribute::PISPInOptimizerRun::Details.Name' value: 'Details'
  id: 'Attribute::PISPInOptimizerRun::Identifier.Description' value: 'An identifier for the `LibOpt_ScopeElement`.'
  id: 'Attribute::PISPInOptimizerRun::Identifier.Name' value: 'Identifier'
  id: 'Attribute::PISPInOptimizerRun::InternalIdentifier.Description' value: 'An identifier to uniquely identify this `LibOpt_ScopeElement`.'
  id: 'Attribute::PISPInOptimizerRun::InternalIdentifier.Name' value: 'InternalIdentifier'
  id: 'Attribute::PeriodInOptimizerRun::Details.Description' value: 'This attribute contains information on the details of this `LibOpt_ScopeElement`.'
  id: 'Attribute::PeriodInOptimizerRun::Details.Name' value: 'Details'
  id: 'Attribute::PeriodInOptimizerRun::Identifier.Description' value: 'An identifier for the `LibOpt_ScopeElement`.'
  id: 'Attribute::PeriodInOptimizerRun::Identifier.Name' value: 'Identifier'
  id: 'Attribute::PeriodInOptimizerRun::InternalIdentifier.Description' value: 'An identifier to uniquely identify this `LibOpt_ScopeElement`.'
  id: 'Attribute::PeriodInOptimizerRun::InternalIdentifier.Name' value: 'InternalIdentifier'
  id: 'Attribute::PeriodInSlidingWindow::Details.Description' value: 'This attribute contains information on the details of this `LibOpt_ScopeElement`.'
  id: 'Attribute::PeriodInSlidingWindow::Details.Name' value: 'Details'
  id: 'Attribute::PeriodInSlidingWindow::Identifier.Description' value: 'An identifier for the `LibOpt_ScopeElement`.'
  id: 'Attribute::PeriodInSlidingWindow::Identifier.Name' value: 'Identifier'
  id: 'Attribute::PeriodInSlidingWindow::InternalIdentifier.Description' value: 'An identifier to uniquely identify this `LibOpt_ScopeElement`.'
  id: 'Attribute::PeriodInSlidingWindow::InternalIdentifier.Name' value: 'InternalIdentifier'
  id: 'Attribute::PeriodTaskOperationInOptimizerRun::Details.Description' value: 'This attribute contains information on the details of this `LibOpt_ScopeElement`.'
  id: 'Attribute::PeriodTaskOperationInOptimizerRun::Details.Name' value: 'Details'
  id: 'Attribute::PeriodTaskOperationInOptimizerRun::Identifier.Description' value: 'An identifier for the `LibOpt_ScopeElement`.'
  id: 'Attribute::PeriodTaskOperationInOptimizerRun::Identifier.Name' value: 'Identifier'
  id: 'Attribute::PeriodTaskOperationInOptimizerRun::InternalIdentifier.Description' value: 'An identifier to uniquely identify this `LibOpt_ScopeElement`.'
  id: 'Attribute::PeriodTaskOperationInOptimizerRun::InternalIdentifier.Name' value: 'InternalIdentifier'
  id: 'Attribute::ProductInTripInOptimizerRun::Details.Description' value: 'This attribute contains information on the details of this `LibOpt_ScopeElement`.'
  id: 'Attribute::ProductInTripInOptimizerRun::Details.Name' value: 'Details'
  id: 'Attribute::ProductInTripInOptimizerRun::Identifier.Description' value: 'An identifier for the `LibOpt_ScopeElement`.'
  id: 'Attribute::ProductInTripInOptimizerRun::Identifier.Name' value: 'Identifier'
  id: 'Attribute::ProductInTripInOptimizerRun::InternalIdentifier.Description' value: 'An identifier to uniquely identify this `LibOpt_ScopeElement`.'
  id: 'Attribute::ProductInTripInOptimizerRun::InternalIdentifier.Name' value: 'InternalIdentifier'
  id: 'Attribute::RollbackKPIMeta::Name.Name' value: 'Name'
  id: 'Attribute::RoutingOfSmartPlanPISPIPSInOptimizerRun::Details.Description' value: 'This attribute contains information on the details of this `LibOpt_ScopeElement`.'
  id: 'Attribute::RoutingOfSmartPlanPISPIPSInOptimizerRun::Details.Name' value: 'Details'
  id: 'Attribute::RoutingOfSmartPlanPISPIPSInOptimizerRun::Identifier.Description' value: 'An identifier for the `LibOpt_ScopeElement`.'
  id: 'Attribute::RoutingOfSmartPlanPISPIPSInOptimizerRun::Identifier.Name' value: 'Identifier'
  id: 'Attribute::RoutingOfSmartPlanPISPIPSInOptimizerRun::InternalIdentifier.Description' value: 'An identifier to uniquely identify this `LibOpt_ScopeElement`.'
  id: 'Attribute::RoutingOfSmartPlanPISPIPSInOptimizerRun::InternalIdentifier.Name' value: 'InternalIdentifier'
  id: 'Attribute::SDIPBeforeScopeInRun::Details.Description' value: 'This attribute contains information on the details of this `LibOpt_ScopeElement`.'
  id: 'Attribute::SDIPBeforeScopeInRun::Details.Name' value: 'Details'
  id: 'Attribute::SDIPBeforeScopeInRun::Identifier.Description' value: 'An identifier for the `LibOpt_ScopeElement`.'
  id: 'Attribute::SDIPBeforeScopeInRun::Identifier.Name' value: 'Identifier'
  id: 'Attribute::SDIPBeforeScopeInRun::InternalIdentifier.Description' value: 'An identifier to uniquely identify this `LibOpt_ScopeElement`.'
  id: 'Attribute::SDIPBeforeScopeInRun::InternalIdentifier.Name' value: 'InternalIdentifier'
  id: 'Attribute::SPIPInOptimizerRun::Details.Description' value: 'This attribute contains information on the details of this `LibOpt_ScopeElement`.'
  id: 'Attribute::SPIPInOptimizerRun::Details.Name' value: 'Details'
  id: 'Attribute::SPIPInOptimizerRun::Identifier.Description' value: 'An identifier for the `LibOpt_ScopeElement`.'
  id: 'Attribute::SPIPInOptimizerRun::Identifier.Name' value: 'Identifier'
  id: 'Attribute::SPIPInOptimizerRun::InternalIdentifier.Description' value: 'An identifier to uniquely identify this `LibOpt_ScopeElement`.'
  id: 'Attribute::SPIPInOptimizerRun::InternalIdentifier.Name' value: 'InternalIdentifier'
  id: 'Attribute::SelectorFullPuzzle::CanBeCalled.Description' value: 'Whether or not this component can be called, given the selected start component.'
  id: 'Attribute::SelectorFullPuzzle::CanBeCalled.Name' value: 'CanBeCalled'
  id: 'Attribute::SelectorFullPuzzle::ComponentType.Description' value: 'A short name for this `LibOpt_Component` type.'
  id: 'Attribute::SelectorFullPuzzle::ComponentType.Name' value: 'ComponentType'
  id: 'Attribute::SelectorFullPuzzle::ConfigurationError.Description' value: 'The errors in the configuration.'
  id: 'Attribute::SelectorFullPuzzle::ConfigurationError.Name' value: 'ConfigurationError'
  id: 'Attribute::SelectorFullPuzzle::Depth.Description' value: 'The highest number of `LibOpt_Components` above this component.'
  id: 'Attribute::SelectorFullPuzzle::Depth.Name' value: 'Depth'
  id: 'Attribute::SelectorFullPuzzle::HasBreakpointEvent.Description' value: 'Whether the `LibOpt_Component` is waiting for a `LibOpt_BreakpointEvent`.'
  id: 'Attribute::SelectorFullPuzzle::HasBreakpointEvent.Name' value: 'HasBreakpointEvent'
  id: 'Attribute::SelectorFullPuzzle::HasNoBreakpoints.Description' value: 'Whether this `LibOpt_Component` has no `LibOpt_BreakpointConditional` attached to any of its component positions.'
  id: 'Attribute::SelectorFullPuzzle::HasNoBreakpoints.Name' value: 'HasNoBreakpoints'
  id: 'Attribute::SelectorFullPuzzle::HasNoDatasetCopies.Description' value: 'Whether this component has no `LibOpt_DatasetCopyConditional` attached to any of its component positions.'
  id: 'Attribute::SelectorFullPuzzle::HasNoDatasetCopies.Name' value: 'HasNoDatasetCopies'
  id: 'Attribute::SelectorFullPuzzle::HasUniqueName.Description' value: 'Whether the name of this `LibOpt_Component` is unique.'
  id: 'Attribute::SelectorFullPuzzle::HasUniqueName.Name' value: 'HasUniqueName'
  id: 'Attribute::SelectorFullPuzzle::IsCorrectlyConfigured.Name' value: 'IsCorrectlyConfigured'
  id: 'Attribute::SelectorFullPuzzle::IsDatasetCopyEnabled.Description' value: "Used in the UI to set the 'Dataset copies are disabled' image icon in the 'Components' form and to show a constraint to the user.\n    \nAn icon will be shown when:\n1: There is a dataset copy on any component position of this component.\nand either \n2a: The optimizer run is ongoing and `LibOpt_Run.IsCreatingDatasetCopiesEnabled` is set to `false` on the related `LibOpt_Run` object.\n2b: The optimizer run has finished and `LibOpt_Optimizer.IsCreatingDatasetCopiesEnabled` is set to `false` on the related `LibOpt_Optimizer` object."
  id: 'Attribute::SelectorFullPuzzle::IsDatasetCopyEnabled.Name' value: 'IsDatasetCopyEnabled'
  id: 'Attribute::SelectorFullPuzzle::IsPostProcessing.Description' value: 'If this attribute is true when a user aborts an optimizer run, then the optimizer will first execute any post processing `LibOpt_LinkIteratorForEach` links before aborting the run. \n\nFor the `LibOpt_IteratorForEachLink` component, this attribute is true when `LibOpt_LinkIteratorForEach.IsPostProcessing` is true for any of its links. \nFor all other components, this attribute is always false.'
  id: 'Attribute::SelectorFullPuzzle::IsPostProcessing.Name' value: 'IsPostProcessing'
  id: 'Attribute::SelectorFullPuzzle::Name.Description' value: 'The name of the `LibOpt_Component`.\n\nThe name should be unique within the `LibOpt_Run`.'
  id: 'Attribute::SelectorFullPuzzle::Name.Name' value: 'Name'
  id: 'Attribute::SelectorFullPuzzle::NrOfEnabledBreakpoints.Description' value: 'The number of enabled `LibOpt_BreakpointConditionals` that are attached to the `LibOpt_BreakpointPositions` of this component. \nThis attribute is used in the `HasNoBreakpoints` constraint.'
  id: 'Attribute::SelectorFullPuzzle::NrOfEnabledBreakpoints.Name' value: 'NrOfEnabledBreakpoints'
  id: 'Attribute::SelectorFullPuzzle::NrOfEnabledDatasetCopies.Description' value: 'The number of enabled `LibOpt_DatasetCopyConditionals` that are attached to the `LibOpt_BreakpointPositions` of this component. \nThis attribute is used in the `HasNoDatasetCopies` constraint.'
  id: 'Attribute::SelectorFullPuzzle::NrOfEnabledDatasetCopies.Name' value: 'NrOfEnabledDatasetCopies'
  id: 'Attribute::SelectorFullPuzzle::NrTimesCalled.Description' value: 'The number of times this component was called (the DoTask method was called).'
  id: 'Attribute::SelectorFullPuzzle::NrTimesCalled.Name' value: 'NrTimesCalled'
  id: 'Attribute::SelectorFullPuzzle::Path.Description' value: 'A declarative attribute that contains one Path to this component.\nThis can be used to sort a list of components in a semi-logical way.'
  id: 'Attribute::SelectorFullPuzzle::Path.Name' value: 'Path'
  id: 'Attribute::SelectorFullPuzzle::SequenceNr.Description' value: 'The position in the sequence of the `LibOpt_Components` in the `LibOpt_Run`.\n\nThe `LibOpt_Components` are sorted according to the `Path`.\nThis is slightly different from sorting on the `Depth`.\n\nThe difference is that the `Path` keeps different branches in a `LibOpt_Switch` together, while sorting on `Depth` intertwines them.\n\nExample:\n\nIf we have a switch with 2 branches, A and C, with each a link to B and D respectively, the sorting order is different.\n\n switch -> A -> B\n switch -> C -> D\n \nNow the `Depth` (and the sorting on `Depth`) will be:\nswitch = 0\nA = 1\nC = 1\nB = 2\nD = 2\n\nThe `Path` (and sorting of the `Path`) will be:\nswitch = "switch"\nA = "switch" -> "A"\nB = "switch" -> "A" -> "B"\nC = "switch" -> "C"\nD = "switch" -> "C" -> "D"'
  id: 'Attribute::SelectorFullPuzzle::SequenceNr.Name' value: 'SequenceNr'
  id: 'Attribute::SelectorFullPuzzle::TotalDuration.Description' value: 'Total duration spent on the component during the run'
  id: 'Attribute::SelectorFullPuzzle::TotalDuration.Name' value: 'TotalDuration'
  id: 'Attribute::SelectorMeta::CanBeCalled.Description' value: 'Whether or not this component can be called, given the selected start component.'
  id: 'Attribute::SelectorMeta::CanBeCalled.Name' value: 'CanBeCalled'
  id: 'Attribute::SelectorMeta::ComponentType.Description' value: 'A short name for this `LibOpt_Component` type.'
  id: 'Attribute::SelectorMeta::ComponentType.Name' value: 'ComponentType'
  id: 'Attribute::SelectorMeta::ConfigurationError.Description' value: 'The errors in the configuration.'
  id: 'Attribute::SelectorMeta::ConfigurationError.Name' value: 'ConfigurationError'
  id: 'Attribute::SelectorMeta::Depth.Description' value: 'The highest number of `LibOpt_Components` above this component.'
  id: 'Attribute::SelectorMeta::Depth.Name' value: 'Depth'
  id: 'Attribute::SelectorMeta::HasBreakpointEvent.Description' value: 'Whether the `LibOpt_Component` is waiting for a `LibOpt_BreakpointEvent`.'
  id: 'Attribute::SelectorMeta::HasBreakpointEvent.Name' value: 'HasBreakpointEvent'
  id: 'Attribute::SelectorMeta::HasNoBreakpoints.Description' value: 'Whether this `LibOpt_Component` has no `LibOpt_BreakpointConditional` attached to any of its component positions.'
  id: 'Attribute::SelectorMeta::HasNoBreakpoints.Name' value: 'HasNoBreakpoints'
  id: 'Attribute::SelectorMeta::HasNoDatasetCopies.Description' value: 'Whether this component has no `LibOpt_DatasetCopyConditional` attached to any of its component positions.'
  id: 'Attribute::SelectorMeta::HasNoDatasetCopies.Name' value: 'HasNoDatasetCopies'
  id: 'Attribute::SelectorMeta::HasUniqueName.Description' value: 'Whether the name of this `LibOpt_Component` is unique.'
  id: 'Attribute::SelectorMeta::HasUniqueName.Name' value: 'HasUniqueName'
  id: 'Attribute::SelectorMeta::IsCorrectlyConfigured.Name' value: 'IsCorrectlyConfigured'
  id: 'Attribute::SelectorMeta::IsDatasetCopyEnabled.Description' value: "Used in the UI to set the 'Dataset copies are disabled' image icon in the 'Components' form and to show a constraint to the user.\n    \nAn icon will be shown when:\n1: There is a dataset copy on any component position of this component.\nand either \n2a: The optimizer run is ongoing and `LibOpt_Run.IsCreatingDatasetCopiesEnabled` is set to `false` on the related `LibOpt_Run` object.\n2b: The optimizer run has finished and `LibOpt_Optimizer.IsCreatingDatasetCopiesEnabled` is set to `false` on the related `LibOpt_Optimizer` object."
  id: 'Attribute::SelectorMeta::IsDatasetCopyEnabled.Name' value: 'IsDatasetCopyEnabled'
  id: 'Attribute::SelectorMeta::IsPostProcessing.Description' value: 'If this attribute is true when a user aborts an optimizer run, then the optimizer will first execute any post processing `LibOpt_LinkIteratorForEach` links before aborting the run. \n\nFor the `LibOpt_IteratorForEachLink` component, this attribute is true when `LibOpt_LinkIteratorForEach.IsPostProcessing` is true for any of its links. \nFor all other components, this attribute is always false.'
  id: 'Attribute::SelectorMeta::IsPostProcessing.Name' value: 'IsPostProcessing'
  id: 'Attribute::SelectorMeta::Name.Description' value: 'The name of the `LibOpt_Component`.\n\nThe name should be unique within the `LibOpt_Run`.'
  id: 'Attribute::SelectorMeta::Name.Name' value: 'Name'
  id: 'Attribute::SelectorMeta::NrOfEnabledBreakpoints.Description' value: 'The number of enabled `LibOpt_BreakpointConditionals` that are attached to the `LibOpt_BreakpointPositions` of this component. \nThis attribute is used in the `HasNoBreakpoints` constraint.'
  id: 'Attribute::SelectorMeta::NrOfEnabledBreakpoints.Name' value: 'NrOfEnabledBreakpoints'
  id: 'Attribute::SelectorMeta::NrOfEnabledDatasetCopies.Description' value: 'The number of enabled `LibOpt_DatasetCopyConditionals` that are attached to the `LibOpt_BreakpointPositions` of this component. \nThis attribute is used in the `HasNoDatasetCopies` constraint.'
  id: 'Attribute::SelectorMeta::NrOfEnabledDatasetCopies.Name' value: 'NrOfEnabledDatasetCopies'
  id: 'Attribute::SelectorMeta::NrTimesCalled.Description' value: 'The number of times this component was called (the DoTask method was called).'
  id: 'Attribute::SelectorMeta::NrTimesCalled.Name' value: 'NrTimesCalled'
  id: 'Attribute::SelectorMeta::Path.Description' value: 'A declarative attribute that contains one Path to this component.\nThis can be used to sort a list of components in a semi-logical way.'
  id: 'Attribute::SelectorMeta::Path.Name' value: 'Path'
  id: 'Attribute::SelectorMeta::SequenceNr.Description' value: 'The position in the sequence of the `LibOpt_Components` in the `LibOpt_Run`.\n\nThe `LibOpt_Components` are sorted according to the `Path`.\nThis is slightly different from sorting on the `Depth`.\n\nThe difference is that the `Path` keeps different branches in a `LibOpt_Switch` together, while sorting on `Depth` intertwines them.\n\nExample:\n\nIf we have a switch with 2 branches, A and C, with each a link to B and D respectively, the sorting order is different.\n\n switch -> A -> B\n switch -> C -> D\n \nNow the `Depth` (and the sorting on `Depth`) will be:\nswitch = 0\nA = 1\nC = 1\nB = 2\nD = 2\n\nThe `Path` (and sorting of the `Path`) will be:\nswitch = "switch"\nA = "switch" -> "A"\nB = "switch" -> "A" -> "B"\nC = "switch" -> "C"\nD = "switch" -> "C" -> "D"'
  id: 'Attribute::SelectorMeta::SequenceNr.Name' value: 'SequenceNr'
  id: 'Attribute::SelectorMeta::TotalDuration.Description' value: 'Total duration spent on the component during the run'
  id: 'Attribute::SelectorMeta::TotalDuration.Name' value: 'TotalDuration'
  id: 'Attribute::SelectorMetaPISPIP::CanBeCalled.Description' value: 'Whether or not this component can be called, given the selected start component.'
  id: 'Attribute::SelectorMetaPISPIP::CanBeCalled.Name' value: 'CanBeCalled'
  id: 'Attribute::SelectorMetaPISPIP::ComponentType.Description' value: 'A short name for this `LibOpt_Component` type.'
  id: 'Attribute::SelectorMetaPISPIP::ComponentType.Name' value: 'ComponentType'
  id: 'Attribute::SelectorMetaPISPIP::ConfigurationError.Description' value: 'The errors in the configuration.'
  id: 'Attribute::SelectorMetaPISPIP::ConfigurationError.Name' value: 'ConfigurationError'
  id: 'Attribute::SelectorMetaPISPIP::Depth.Description' value: 'The highest number of `LibOpt_Components` above this component.'
  id: 'Attribute::SelectorMetaPISPIP::Depth.Name' value: 'Depth'
  id: 'Attribute::SelectorMetaPISPIP::HasBreakpointEvent.Description' value: 'Whether the `LibOpt_Component` is waiting for a `LibOpt_BreakpointEvent`.'
  id: 'Attribute::SelectorMetaPISPIP::HasBreakpointEvent.Name' value: 'HasBreakpointEvent'
  id: 'Attribute::SelectorMetaPISPIP::HasNoBreakpoints.Description' value: 'Whether this `LibOpt_Component` has no `LibOpt_BreakpointConditional` attached to any of its component positions.'
  id: 'Attribute::SelectorMetaPISPIP::HasNoBreakpoints.Name' value: 'HasNoBreakpoints'
  id: 'Attribute::SelectorMetaPISPIP::HasNoDatasetCopies.Description' value: 'Whether this component has no `LibOpt_DatasetCopyConditional` attached to any of its component positions.'
  id: 'Attribute::SelectorMetaPISPIP::HasNoDatasetCopies.Name' value: 'HasNoDatasetCopies'
  id: 'Attribute::SelectorMetaPISPIP::HasUniqueName.Description' value: 'Whether the name of this `LibOpt_Component` is unique.'
  id: 'Attribute::SelectorMetaPISPIP::HasUniqueName.Name' value: 'HasUniqueName'
  id: 'Attribute::SelectorMetaPISPIP::IsCorrectlyConfigured.Name' value: 'IsCorrectlyConfigured'
  id: 'Attribute::SelectorMetaPISPIP::IsDatasetCopyEnabled.Description' value: "Used in the UI to set the 'Dataset copies are disabled' image icon in the 'Components' form and to show a constraint to the user.\n    \nAn icon will be shown when:\n1: There is a dataset copy on any component position of this component.\nand either \n2a: The optimizer run is ongoing and `LibOpt_Run.IsCreatingDatasetCopiesEnabled` is set to `false` on the related `LibOpt_Run` object.\n2b: The optimizer run has finished and `LibOpt_Optimizer.IsCreatingDatasetCopiesEnabled` is set to `false` on the related `LibOpt_Optimizer` object."
  id: 'Attribute::SelectorMetaPISPIP::IsDatasetCopyEnabled.Name' value: 'IsDatasetCopyEnabled'
  id: 'Attribute::SelectorMetaPISPIP::IsPostProcessing.Description' value: 'If this attribute is true when a user aborts an optimizer run, then the optimizer will first execute any post processing `LibOpt_LinkIteratorForEach` links before aborting the run. \n\nFor the `LibOpt_IteratorForEachLink` component, this attribute is true when `LibOpt_LinkIteratorForEach.IsPostProcessing` is true for any of its links. \nFor all other components, this attribute is always false.'
  id: 'Attribute::SelectorMetaPISPIP::IsPostProcessing.Name' value: 'IsPostProcessing'
  id: 'Attribute::SelectorMetaPISPIP::Name.Description' value: 'The name of the `LibOpt_Component`.\n\nThe name should be unique within the `LibOpt_Run`.'
  id: 'Attribute::SelectorMetaPISPIP::Name.Name' value: 'Name'
  id: 'Attribute::SelectorMetaPISPIP::NrOfEnabledBreakpoints.Description' value: 'The number of enabled `LibOpt_BreakpointConditionals` that are attached to the `LibOpt_BreakpointPositions` of this component. \nThis attribute is used in the `HasNoBreakpoints` constraint.'
  id: 'Attribute::SelectorMetaPISPIP::NrOfEnabledBreakpoints.Name' value: 'NrOfEnabledBreakpoints'
  id: 'Attribute::SelectorMetaPISPIP::NrOfEnabledDatasetCopies.Description' value: 'The number of enabled `LibOpt_DatasetCopyConditionals` that are attached to the `LibOpt_BreakpointPositions` of this component. \nThis attribute is used in the `HasNoDatasetCopies` constraint.'
  id: 'Attribute::SelectorMetaPISPIP::NrOfEnabledDatasetCopies.Name' value: 'NrOfEnabledDatasetCopies'
  id: 'Attribute::SelectorMetaPISPIP::NrTimesCalled.Description' value: 'The number of times this component was called (the DoTask method was called).'
  id: 'Attribute::SelectorMetaPISPIP::NrTimesCalled.Name' value: 'NrTimesCalled'
  id: 'Attribute::SelectorMetaPISPIP::Path.Description' value: 'A declarative attribute that contains one Path to this component.\nThis can be used to sort a list of components in a semi-logical way.'
  id: 'Attribute::SelectorMetaPISPIP::Path.Name' value: 'Path'
  id: 'Attribute::SelectorMetaPISPIP::SequenceNr.Description' value: 'The position in the sequence of the `LibOpt_Components` in the `LibOpt_Run`.\n\nThe `LibOpt_Components` are sorted according to the `Path`.\nThis is slightly different from sorting on the `Depth`.\n\nThe difference is that the `Path` keeps different branches in a `LibOpt_Switch` together, while sorting on `Depth` intertwines them.\n\nExample:\n\nIf we have a switch with 2 branches, A and C, with each a link to B and D respectively, the sorting order is different.\n\n switch -> A -> B\n switch -> C -> D\n \nNow the `Depth` (and the sorting on `Depth`) will be:\nswitch = 0\nA = 1\nC = 1\nB = 2\nD = 2\n\nThe `Path` (and sorting of the `Path`) will be:\nswitch = "switch"\nA = "switch" -> "A"\nB = "switch" -> "A" -> "B"\nC = "switch" -> "C"\nD = "switch" -> "C" -> "D"'
  id: 'Attribute::SelectorMetaPISPIP::SequenceNr.Name' value: 'SequenceNr'
  id: 'Attribute::SelectorMetaPISPIP::TotalDuration.Description' value: 'Total duration spent on the component during the run'
  id: 'Attribute::SelectorMetaPISPIP::TotalDuration.Name' value: 'TotalDuration'
  id: 'Attribute::SelectorMetaPISPIPAbstract::CanBeCalled.Description' value: 'Whether or not this component can be called, given the selected start component.'
  id: 'Attribute::SelectorMetaPISPIPAbstract::CanBeCalled.Name' value: 'CanBeCalled'
  id: 'Attribute::SelectorMetaPISPIPAbstract::ComponentType.Description' value: 'A short name for this `LibOpt_Component` type.'
  id: 'Attribute::SelectorMetaPISPIPAbstract::ComponentType.Name' value: 'ComponentType'
  id: 'Attribute::SelectorMetaPISPIPAbstract::ConfigurationError.Description' value: 'The errors in the configuration.'
  id: 'Attribute::SelectorMetaPISPIPAbstract::ConfigurationError.Name' value: 'ConfigurationError'
  id: 'Attribute::SelectorMetaPISPIPAbstract::Depth.Description' value: 'The highest number of `LibOpt_Components` above this component.'
  id: 'Attribute::SelectorMetaPISPIPAbstract::Depth.Name' value: 'Depth'
  id: 'Attribute::SelectorMetaPISPIPAbstract::HasBreakpointEvent.Description' value: 'Whether the `LibOpt_Component` is waiting for a `LibOpt_BreakpointEvent`.'
  id: 'Attribute::SelectorMetaPISPIPAbstract::HasBreakpointEvent.Name' value: 'HasBreakpointEvent'
  id: 'Attribute::SelectorMetaPISPIPAbstract::HasNoBreakpoints.Description' value: 'Whether this `LibOpt_Component` has no `LibOpt_BreakpointConditional` attached to any of its component positions.'
  id: 'Attribute::SelectorMetaPISPIPAbstract::HasNoBreakpoints.Name' value: 'HasNoBreakpoints'
  id: 'Attribute::SelectorMetaPISPIPAbstract::HasNoDatasetCopies.Description' value: 'Whether this component has no `LibOpt_DatasetCopyConditional` attached to any of its component positions.'
  id: 'Attribute::SelectorMetaPISPIPAbstract::HasNoDatasetCopies.Name' value: 'HasNoDatasetCopies'
  id: 'Attribute::SelectorMetaPISPIPAbstract::HasUniqueName.Description' value: 'Whether the name of this `LibOpt_Component` is unique.'
  id: 'Attribute::SelectorMetaPISPIPAbstract::HasUniqueName.Name' value: 'HasUniqueName'
  id: 'Attribute::SelectorMetaPISPIPAbstract::IsCorrectlyConfigured.Name' value: 'IsCorrectlyConfigured'
  id: 'Attribute::SelectorMetaPISPIPAbstract::IsDatasetCopyEnabled.Description' value: "Used in the UI to set the 'Dataset copies are disabled' image icon in the 'Components' form and to show a constraint to the user.\n    \nAn icon will be shown when:\n1: There is a dataset copy on any component position of this component.\nand either \n2a: The optimizer run is ongoing and `LibOpt_Run.IsCreatingDatasetCopiesEnabled` is set to `false` on the related `LibOpt_Run` object.\n2b: The optimizer run has finished and `LibOpt_Optimizer.IsCreatingDatasetCopiesEnabled` is set to `false` on the related `LibOpt_Optimizer` object."
  id: 'Attribute::SelectorMetaPISPIPAbstract::IsDatasetCopyEnabled.Name' value: 'IsDatasetCopyEnabled'
  id: 'Attribute::SelectorMetaPISPIPAbstract::IsPostProcessing.Description' value: 'If this attribute is true when a user aborts an optimizer run, then the optimizer will first execute any post processing `LibOpt_LinkIteratorForEach` links before aborting the run. \n\nFor the `LibOpt_IteratorForEachLink` component, this attribute is true when `LibOpt_LinkIteratorForEach.IsPostProcessing` is true for any of its links. \nFor all other components, this attribute is always false.'
  id: 'Attribute::SelectorMetaPISPIPAbstract::IsPostProcessing.Name' value: 'IsPostProcessing'
  id: 'Attribute::SelectorMetaPISPIPAbstract::Name.Description' value: 'The name of the `LibOpt_Component`.\n\nThe name should be unique within the `LibOpt_Run`.'
  id: 'Attribute::SelectorMetaPISPIPAbstract::Name.Name' value: 'Name'
  id: 'Attribute::SelectorMetaPISPIPAbstract::NrOfEnabledBreakpoints.Description' value: 'The number of enabled `LibOpt_BreakpointConditionals` that are attached to the `LibOpt_BreakpointPositions` of this component. \nThis attribute is used in the `HasNoBreakpoints` constraint.'
  id: 'Attribute::SelectorMetaPISPIPAbstract::NrOfEnabledBreakpoints.Name' value: 'NrOfEnabledBreakpoints'
  id: 'Attribute::SelectorMetaPISPIPAbstract::NrOfEnabledDatasetCopies.Description' value: 'The number of enabled `LibOpt_DatasetCopyConditionals` that are attached to the `LibOpt_BreakpointPositions` of this component. \nThis attribute is used in the `HasNoDatasetCopies` constraint.'
  id: 'Attribute::SelectorMetaPISPIPAbstract::NrOfEnabledDatasetCopies.Name' value: 'NrOfEnabledDatasetCopies'
  id: 'Attribute::SelectorMetaPISPIPAbstract::NrTimesCalled.Description' value: 'The number of times this component was called (the DoTask method was called).'
  id: 'Attribute::SelectorMetaPISPIPAbstract::NrTimesCalled.Name' value: 'NrTimesCalled'
  id: 'Attribute::SelectorMetaPISPIPAbstract::Path.Description' value: 'A declarative attribute that contains one Path to this component.\nThis can be used to sort a list of components in a semi-logical way.'
  id: 'Attribute::SelectorMetaPISPIPAbstract::Path.Name' value: 'Path'
  id: 'Attribute::SelectorMetaPISPIPAbstract::SequenceNr.Description' value: 'The position in the sequence of the `LibOpt_Components` in the `LibOpt_Run`.\n\nThe `LibOpt_Components` are sorted according to the `Path`.\nThis is slightly different from sorting on the `Depth`.\n\nThe difference is that the `Path` keeps different branches in a `LibOpt_Switch` together, while sorting on `Depth` intertwines them.\n\nExample:\n\nIf we have a switch with 2 branches, A and C, with each a link to B and D respectively, the sorting order is different.\n\n switch -> A -> B\n switch -> C -> D\n \nNow the `Depth` (and the sorting on `Depth`) will be:\nswitch = 0\nA = 1\nC = 1\nB = 2\nD = 2\n\nThe `Path` (and sorting of the `Path`) will be:\nswitch = "switch"\nA = "switch" -> "A"\nB = "switch" -> "A" -> "B"\nC = "switch" -> "C"\nD = "switch" -> "C" -> "D"'
  id: 'Attribute::SelectorMetaPISPIPAbstract::SequenceNr.Name' value: 'SequenceNr'
  id: 'Attribute::SelectorMetaPISPIPAbstract::TotalDuration.Description' value: 'Total duration spent on the component during the run'
  id: 'Attribute::SelectorMetaPISPIPAbstract::TotalDuration.Name' value: 'TotalDuration'
  id: 'Attribute::SelectorMetaPISPIPPreProduction::CanBeCalled.Description' value: 'Whether or not this component can be called, given the selected start component.'
  id: 'Attribute::SelectorMetaPISPIPPreProduction::CanBeCalled.Name' value: 'CanBeCalled'
  id: 'Attribute::SelectorMetaPISPIPPreProduction::ComponentType.Description' value: 'A short name for this `LibOpt_Component` type.'
  id: 'Attribute::SelectorMetaPISPIPPreProduction::ComponentType.Name' value: 'ComponentType'
  id: 'Attribute::SelectorMetaPISPIPPreProduction::ConfigurationError.Description' value: 'The errors in the configuration.'
  id: 'Attribute::SelectorMetaPISPIPPreProduction::ConfigurationError.Name' value: 'ConfigurationError'
  id: 'Attribute::SelectorMetaPISPIPPreProduction::Depth.Description' value: 'The highest number of `LibOpt_Components` above this component.'
  id: 'Attribute::SelectorMetaPISPIPPreProduction::Depth.Name' value: 'Depth'
  id: 'Attribute::SelectorMetaPISPIPPreProduction::HasBreakpointEvent.Description' value: 'Whether the `LibOpt_Component` is waiting for a `LibOpt_BreakpointEvent`.'
  id: 'Attribute::SelectorMetaPISPIPPreProduction::HasBreakpointEvent.Name' value: 'HasBreakpointEvent'
  id: 'Attribute::SelectorMetaPISPIPPreProduction::HasNoBreakpoints.Description' value: 'Whether this `LibOpt_Component` has no `LibOpt_BreakpointConditional` attached to any of its component positions.'
  id: 'Attribute::SelectorMetaPISPIPPreProduction::HasNoBreakpoints.Name' value: 'HasNoBreakpoints'
  id: 'Attribute::SelectorMetaPISPIPPreProduction::HasNoDatasetCopies.Description' value: 'Whether this component has no `LibOpt_DatasetCopyConditional` attached to any of its component positions.'
  id: 'Attribute::SelectorMetaPISPIPPreProduction::HasNoDatasetCopies.Name' value: 'HasNoDatasetCopies'
  id: 'Attribute::SelectorMetaPISPIPPreProduction::HasUniqueName.Description' value: 'Whether the name of this `LibOpt_Component` is unique.'
  id: 'Attribute::SelectorMetaPISPIPPreProduction::HasUniqueName.Name' value: 'HasUniqueName'
  id: 'Attribute::SelectorMetaPISPIPPreProduction::IsCorrectlyConfigured.Name' value: 'IsCorrectlyConfigured'
  id: 'Attribute::SelectorMetaPISPIPPreProduction::IsDatasetCopyEnabled.Description' value: "Used in the UI to set the 'Dataset copies are disabled' image icon in the 'Components' form and to show a constraint to the user.\n    \nAn icon will be shown when:\n1: There is a dataset copy on any component position of this component.\nand either \n2a: The optimizer run is ongoing and `LibOpt_Run.IsCreatingDatasetCopiesEnabled` is set to `false` on the related `LibOpt_Run` object.\n2b: The optimizer run has finished and `LibOpt_Optimizer.IsCreatingDatasetCopiesEnabled` is set to `false` on the related `LibOpt_Optimizer` object."
  id: 'Attribute::SelectorMetaPISPIPPreProduction::IsDatasetCopyEnabled.Name' value: 'IsDatasetCopyEnabled'
  id: 'Attribute::SelectorMetaPISPIPPreProduction::IsPostProcessing.Description' value: 'If this attribute is true when a user aborts an optimizer run, then the optimizer will first execute any post processing `LibOpt_LinkIteratorForEach` links before aborting the run. \n\nFor the `LibOpt_IteratorForEachLink` component, this attribute is true when `LibOpt_LinkIteratorForEach.IsPostProcessing` is true for any of its links. \nFor all other components, this attribute is always false.'
  id: 'Attribute::SelectorMetaPISPIPPreProduction::IsPostProcessing.Name' value: 'IsPostProcessing'
  id: 'Attribute::SelectorMetaPISPIPPreProduction::Name.Description' value: 'The name of the `LibOpt_Component`.\n\nThe name should be unique within the `LibOpt_Run`.'
  id: 'Attribute::SelectorMetaPISPIPPreProduction::Name.Name' value: 'Name'
  id: 'Attribute::SelectorMetaPISPIPPreProduction::NrOfEnabledBreakpoints.Description' value: 'The number of enabled `LibOpt_BreakpointConditionals` that are attached to the `LibOpt_BreakpointPositions` of this component. \nThis attribute is used in the `HasNoBreakpoints` constraint.'
  id: 'Attribute::SelectorMetaPISPIPPreProduction::NrOfEnabledBreakpoints.Name' value: 'NrOfEnabledBreakpoints'
  id: 'Attribute::SelectorMetaPISPIPPreProduction::NrOfEnabledDatasetCopies.Description' value: 'The number of enabled `LibOpt_DatasetCopyConditionals` that are attached to the `LibOpt_BreakpointPositions` of this component. \nThis attribute is used in the `HasNoDatasetCopies` constraint.'
  id: 'Attribute::SelectorMetaPISPIPPreProduction::NrOfEnabledDatasetCopies.Name' value: 'NrOfEnabledDatasetCopies'
  id: 'Attribute::SelectorMetaPISPIPPreProduction::NrTimesCalled.Description' value: 'The number of times this component was called (the DoTask method was called).'
  id: 'Attribute::SelectorMetaPISPIPPreProduction::NrTimesCalled.Name' value: 'NrTimesCalled'
  id: 'Attribute::SelectorMetaPISPIPPreProduction::Path.Description' value: 'A declarative attribute that contains one Path to this component.\nThis can be used to sort a list of components in a semi-logical way.'
  id: 'Attribute::SelectorMetaPISPIPPreProduction::Path.Name' value: 'Path'
  id: 'Attribute::SelectorMetaPISPIPPreProduction::SequenceNr.Description' value: 'The position in the sequence of the `LibOpt_Components` in the `LibOpt_Run`.\n\nThe `LibOpt_Components` are sorted according to the `Path`.\nThis is slightly different from sorting on the `Depth`.\n\nThe difference is that the `Path` keeps different branches in a `LibOpt_Switch` together, while sorting on `Depth` intertwines them.\n\nExample:\n\nIf we have a switch with 2 branches, A and C, with each a link to B and D respectively, the sorting order is different.\n\n switch -> A -> B\n switch -> C -> D\n \nNow the `Depth` (and the sorting on `Depth`) will be:\nswitch = 0\nA = 1\nC = 1\nB = 2\nD = 2\n\nThe `Path` (and sorting of the `Path`) will be:\nswitch = "switch"\nA = "switch" -> "A"\nB = "switch" -> "A" -> "B"\nC = "switch" -> "C"\nD = "switch" -> "C" -> "D"'
  id: 'Attribute::SelectorMetaPISPIPPreProduction::SequenceNr.Name' value: 'SequenceNr'
  id: 'Attribute::SelectorMetaPISPIPPreProduction::TotalDuration.Description' value: 'Total duration spent on the component during the run'
  id: 'Attribute::SelectorMetaPISPIPPreProduction::TotalDuration.Name' value: 'TotalDuration'
  id: 'Attribute::SelectorMetaPeriodTaskOperation::CanBeCalled.Description' value: 'Whether or not this component can be called, given the selected start component.'
  id: 'Attribute::SelectorMetaPeriodTaskOperation::CanBeCalled.Name' value: 'CanBeCalled'
  id: 'Attribute::SelectorMetaPeriodTaskOperation::ComponentType.Description' value: 'A short name for this `LibOpt_Component` type.'
  id: 'Attribute::SelectorMetaPeriodTaskOperation::ComponentType.Name' value: 'ComponentType'
  id: 'Attribute::SelectorMetaPeriodTaskOperation::ConfigurationError.Description' value: 'The errors in the configuration.'
  id: 'Attribute::SelectorMetaPeriodTaskOperation::ConfigurationError.Name' value: 'ConfigurationError'
  id: 'Attribute::SelectorMetaPeriodTaskOperation::Depth.Description' value: 'The highest number of `LibOpt_Components` above this component.'
  id: 'Attribute::SelectorMetaPeriodTaskOperation::Depth.Name' value: 'Depth'
  id: 'Attribute::SelectorMetaPeriodTaskOperation::HasBreakpointEvent.Description' value: 'Whether the `LibOpt_Component` is waiting for a `LibOpt_BreakpointEvent`.'
  id: 'Attribute::SelectorMetaPeriodTaskOperation::HasBreakpointEvent.Name' value: 'HasBreakpointEvent'
  id: 'Attribute::SelectorMetaPeriodTaskOperation::HasNoBreakpoints.Description' value: 'Whether this `LibOpt_Component` has no `LibOpt_BreakpointConditional` attached to any of its component positions.'
  id: 'Attribute::SelectorMetaPeriodTaskOperation::HasNoBreakpoints.Name' value: 'HasNoBreakpoints'
  id: 'Attribute::SelectorMetaPeriodTaskOperation::HasNoDatasetCopies.Description' value: 'Whether this component has no `LibOpt_DatasetCopyConditional` attached to any of its component positions.'
  id: 'Attribute::SelectorMetaPeriodTaskOperation::HasNoDatasetCopies.Name' value: 'HasNoDatasetCopies'
  id: 'Attribute::SelectorMetaPeriodTaskOperation::HasUniqueName.Description' value: 'Whether the name of this `LibOpt_Component` is unique.'
  id: 'Attribute::SelectorMetaPeriodTaskOperation::HasUniqueName.Name' value: 'HasUniqueName'
  id: 'Attribute::SelectorMetaPeriodTaskOperation::IsCorrectlyConfigured.Name' value: 'IsCorrectlyConfigured'
  id: 'Attribute::SelectorMetaPeriodTaskOperation::IsDatasetCopyEnabled.Description' value: "Used in the UI to set the 'Dataset copies are disabled' image icon in the 'Components' form and to show a constraint to the user.\n    \nAn icon will be shown when:\n1: There is a dataset copy on any component position of this component.\nand either \n2a: The optimizer run is ongoing and `LibOpt_Run.IsCreatingDatasetCopiesEnabled` is set to `false` on the related `LibOpt_Run` object.\n2b: The optimizer run has finished and `LibOpt_Optimizer.IsCreatingDatasetCopiesEnabled` is set to `false` on the related `LibOpt_Optimizer` object."
  id: 'Attribute::SelectorMetaPeriodTaskOperation::IsDatasetCopyEnabled.Name' value: 'IsDatasetCopyEnabled'
  id: 'Attribute::SelectorMetaPeriodTaskOperation::IsPostProcessing.Description' value: 'If this attribute is true when a user aborts an optimizer run, then the optimizer will first execute any post processing `LibOpt_LinkIteratorForEach` links before aborting the run. \n\nFor the `LibOpt_IteratorForEachLink` component, this attribute is true when `LibOpt_LinkIteratorForEach.IsPostProcessing` is true for any of its links. \nFor all other components, this attribute is always false.'
  id: 'Attribute::SelectorMetaPeriodTaskOperation::IsPostProcessing.Name' value: 'IsPostProcessing'
  id: 'Attribute::SelectorMetaPeriodTaskOperation::Name.Description' value: 'The name of the `LibOpt_Component`.\n\nThe name should be unique within the `LibOpt_Run`.'
  id: 'Attribute::SelectorMetaPeriodTaskOperation::Name.Name' value: 'Name'
  id: 'Attribute::SelectorMetaPeriodTaskOperation::NrOfEnabledBreakpoints.Description' value: 'The number of enabled `LibOpt_BreakpointConditionals` that are attached to the `LibOpt_BreakpointPositions` of this component. \nThis attribute is used in the `HasNoBreakpoints` constraint.'
  id: 'Attribute::SelectorMetaPeriodTaskOperation::NrOfEnabledBreakpoints.Name' value: 'NrOfEnabledBreakpoints'
  id: 'Attribute::SelectorMetaPeriodTaskOperation::NrOfEnabledDatasetCopies.Description' value: 'The number of enabled `LibOpt_DatasetCopyConditionals` that are attached to the `LibOpt_BreakpointPositions` of this component. \nThis attribute is used in the `HasNoDatasetCopies` constraint.'
  id: 'Attribute::SelectorMetaPeriodTaskOperation::NrOfEnabledDatasetCopies.Name' value: 'NrOfEnabledDatasetCopies'
  id: 'Attribute::SelectorMetaPeriodTaskOperation::NrTimesCalled.Description' value: 'The number of times this component was called (the DoTask method was called).'
  id: 'Attribute::SelectorMetaPeriodTaskOperation::NrTimesCalled.Name' value: 'NrTimesCalled'
  id: 'Attribute::SelectorMetaPeriodTaskOperation::Path.Description' value: 'A declarative attribute that contains one Path to this component.\nThis can be used to sort a list of components in a semi-logical way.'
  id: 'Attribute::SelectorMetaPeriodTaskOperation::Path.Name' value: 'Path'
  id: 'Attribute::SelectorMetaPeriodTaskOperation::SequenceNr.Description' value: 'The position in the sequence of the `LibOpt_Components` in the `LibOpt_Run`.\n\nThe `LibOpt_Components` are sorted according to the `Path`.\nThis is slightly different from sorting on the `Depth`.\n\nThe difference is that the `Path` keeps different branches in a `LibOpt_Switch` together, while sorting on `Depth` intertwines them.\n\nExample:\n\nIf we have a switch with 2 branches, A and C, with each a link to B and D respectively, the sorting order is different.\n\n switch -> A -> B\n switch -> C -> D\n \nNow the `Depth` (and the sorting on `Depth`) will be:\nswitch = 0\nA = 1\nC = 1\nB = 2\nD = 2\n\nThe `Path` (and sorting of the `Path`) will be:\nswitch = "switch"\nA = "switch" -> "A"\nB = "switch" -> "A" -> "B"\nC = "switch" -> "C"\nD = "switch" -> "C" -> "D"'
  id: 'Attribute::SelectorMetaPeriodTaskOperation::SequenceNr.Name' value: 'SequenceNr'
  id: 'Attribute::SelectorMetaPeriodTaskOperation::TotalDuration.Description' value: 'Total duration spent on the component during the run'
  id: 'Attribute::SelectorMetaPeriodTaskOperation::TotalDuration.Name' value: 'TotalDuration'
  id: 'Attribute::SelectorMetaRandomPISPIP::CanBeCalled.Description' value: 'Whether or not this component can be called, given the selected start component.'
  id: 'Attribute::SelectorMetaRandomPISPIP::CanBeCalled.Name' value: 'CanBeCalled'
  id: 'Attribute::SelectorMetaRandomPISPIP::ComponentType.Description' value: 'A short name for this `LibOpt_Component` type.'
  id: 'Attribute::SelectorMetaRandomPISPIP::ComponentType.Name' value: 'ComponentType'
  id: 'Attribute::SelectorMetaRandomPISPIP::ConfigurationError.Description' value: 'The errors in the configuration.'
  id: 'Attribute::SelectorMetaRandomPISPIP::ConfigurationError.Name' value: 'ConfigurationError'
  id: 'Attribute::SelectorMetaRandomPISPIP::Depth.Description' value: 'The highest number of `LibOpt_Components` above this component.'
  id: 'Attribute::SelectorMetaRandomPISPIP::Depth.Name' value: 'Depth'
  id: 'Attribute::SelectorMetaRandomPISPIP::HasBreakpointEvent.Description' value: 'Whether the `LibOpt_Component` is waiting for a `LibOpt_BreakpointEvent`.'
  id: 'Attribute::SelectorMetaRandomPISPIP::HasBreakpointEvent.Name' value: 'HasBreakpointEvent'
  id: 'Attribute::SelectorMetaRandomPISPIP::HasNoBreakpoints.Description' value: 'Whether this `LibOpt_Component` has no `LibOpt_BreakpointConditional` attached to any of its component positions.'
  id: 'Attribute::SelectorMetaRandomPISPIP::HasNoBreakpoints.Name' value: 'HasNoBreakpoints'
  id: 'Attribute::SelectorMetaRandomPISPIP::HasNoDatasetCopies.Description' value: 'Whether this component has no `LibOpt_DatasetCopyConditional` attached to any of its component positions.'
  id: 'Attribute::SelectorMetaRandomPISPIP::HasNoDatasetCopies.Name' value: 'HasNoDatasetCopies'
  id: 'Attribute::SelectorMetaRandomPISPIP::HasUniqueName.Description' value: 'Whether the name of this `LibOpt_Component` is unique.'
  id: 'Attribute::SelectorMetaRandomPISPIP::HasUniqueName.Name' value: 'HasUniqueName'
  id: 'Attribute::SelectorMetaRandomPISPIP::IsCorrectlyConfigured.Name' value: 'IsCorrectlyConfigured'
  id: 'Attribute::SelectorMetaRandomPISPIP::IsDatasetCopyEnabled.Description' value: "Used in the UI to set the 'Dataset copies are disabled' image icon in the 'Components' form and to show a constraint to the user.\n    \nAn icon will be shown when:\n1: There is a dataset copy on any component position of this component.\nand either \n2a: The optimizer run is ongoing and `LibOpt_Run.IsCreatingDatasetCopiesEnabled` is set to `false` on the related `LibOpt_Run` object.\n2b: The optimizer run has finished and `LibOpt_Optimizer.IsCreatingDatasetCopiesEnabled` is set to `false` on the related `LibOpt_Optimizer` object."
  id: 'Attribute::SelectorMetaRandomPISPIP::IsDatasetCopyEnabled.Name' value: 'IsDatasetCopyEnabled'
  id: 'Attribute::SelectorMetaRandomPISPIP::IsPostProcessing.Description' value: 'If this attribute is true when a user aborts an optimizer run, then the optimizer will first execute any post processing `LibOpt_LinkIteratorForEach` links before aborting the run. \n\nFor the `LibOpt_IteratorForEachLink` component, this attribute is true when `LibOpt_LinkIteratorForEach.IsPostProcessing` is true for any of its links. \nFor all other components, this attribute is always false.'
  id: 'Attribute::SelectorMetaRandomPISPIP::IsPostProcessing.Name' value: 'IsPostProcessing'
  id: 'Attribute::SelectorMetaRandomPISPIP::Name.Description' value: 'The name of the `LibOpt_Component`.\n\nThe name should be unique within the `LibOpt_Run`.'
  id: 'Attribute::SelectorMetaRandomPISPIP::Name.Name' value: 'Name'
  id: 'Attribute::SelectorMetaRandomPISPIP::NrOfEnabledBreakpoints.Description' value: 'The number of enabled `LibOpt_BreakpointConditionals` that are attached to the `LibOpt_BreakpointPositions` of this component. \nThis attribute is used in the `HasNoBreakpoints` constraint.'
  id: 'Attribute::SelectorMetaRandomPISPIP::NrOfEnabledBreakpoints.Name' value: 'NrOfEnabledBreakpoints'
  id: 'Attribute::SelectorMetaRandomPISPIP::NrOfEnabledDatasetCopies.Description' value: 'The number of enabled `LibOpt_DatasetCopyConditionals` that are attached to the `LibOpt_BreakpointPositions` of this component. \nThis attribute is used in the `HasNoDatasetCopies` constraint.'
  id: 'Attribute::SelectorMetaRandomPISPIP::NrOfEnabledDatasetCopies.Name' value: 'NrOfEnabledDatasetCopies'
  id: 'Attribute::SelectorMetaRandomPISPIP::NrTimesCalled.Description' value: 'The number of times this component was called (the DoTask method was called).'
  id: 'Attribute::SelectorMetaRandomPISPIP::NrTimesCalled.Name' value: 'NrTimesCalled'
  id: 'Attribute::SelectorMetaRandomPISPIP::Path.Description' value: 'A declarative attribute that contains one Path to this component.\nThis can be used to sort a list of components in a semi-logical way.'
  id: 'Attribute::SelectorMetaRandomPISPIP::Path.Name' value: 'Path'
  id: 'Attribute::SelectorMetaRandomPISPIP::SequenceNr.Description' value: 'The position in the sequence of the `LibOpt_Components` in the `LibOpt_Run`.\n\nThe `LibOpt_Components` are sorted according to the `Path`.\nThis is slightly different from sorting on the `Depth`.\n\nThe difference is that the `Path` keeps different branches in a `LibOpt_Switch` together, while sorting on `Depth` intertwines them.\n\nExample:\n\nIf we have a switch with 2 branches, A and C, with each a link to B and D respectively, the sorting order is different.\n\n switch -> A -> B\n switch -> C -> D\n \nNow the `Depth` (and the sorting on `Depth`) will be:\nswitch = 0\nA = 1\nC = 1\nB = 2\nD = 2\n\nThe `Path` (and sorting of the `Path`) will be:\nswitch = "switch"\nA = "switch" -> "A"\nB = "switch" -> "A" -> "B"\nC = "switch" -> "C"\nD = "switch" -> "C" -> "D"'
  id: 'Attribute::SelectorMetaRandomPISPIP::SequenceNr.Name' value: 'SequenceNr'
  id: 'Attribute::SelectorMetaRandomPISPIP::TotalDuration.Description' value: 'Total duration spent on the component during the run'
  id: 'Attribute::SelectorMetaRandomPISPIP::TotalDuration.Name' value: 'TotalDuration'
  id: 'Attribute::SelectorMetaSPIP::CanBeCalled.Description' value: 'Whether or not this component can be called, given the selected start component.'
  id: 'Attribute::SelectorMetaSPIP::CanBeCalled.Name' value: 'CanBeCalled'
  id: 'Attribute::SelectorMetaSPIP::ComponentType.Description' value: 'A short name for this `LibOpt_Component` type.'
  id: 'Attribute::SelectorMetaSPIP::ComponentType.Name' value: 'ComponentType'
  id: 'Attribute::SelectorMetaSPIP::ConfigurationError.Description' value: 'The errors in the configuration.'
  id: 'Attribute::SelectorMetaSPIP::ConfigurationError.Name' value: 'ConfigurationError'
  id: 'Attribute::SelectorMetaSPIP::Depth.Description' value: 'The highest number of `LibOpt_Components` above this component.'
  id: 'Attribute::SelectorMetaSPIP::Depth.Name' value: 'Depth'
  id: 'Attribute::SelectorMetaSPIP::HasBreakpointEvent.Description' value: 'Whether the `LibOpt_Component` is waiting for a `LibOpt_BreakpointEvent`.'
  id: 'Attribute::SelectorMetaSPIP::HasBreakpointEvent.Name' value: 'HasBreakpointEvent'
  id: 'Attribute::SelectorMetaSPIP::HasNoBreakpoints.Description' value: 'Whether this `LibOpt_Component` has no `LibOpt_BreakpointConditional` attached to any of its component positions.'
  id: 'Attribute::SelectorMetaSPIP::HasNoBreakpoints.Name' value: 'HasNoBreakpoints'
  id: 'Attribute::SelectorMetaSPIP::HasNoDatasetCopies.Description' value: 'Whether this component has no `LibOpt_DatasetCopyConditional` attached to any of its component positions.'
  id: 'Attribute::SelectorMetaSPIP::HasNoDatasetCopies.Name' value: 'HasNoDatasetCopies'
  id: 'Attribute::SelectorMetaSPIP::HasUniqueName.Description' value: 'Whether the name of this `LibOpt_Component` is unique.'
  id: 'Attribute::SelectorMetaSPIP::HasUniqueName.Name' value: 'HasUniqueName'
  id: 'Attribute::SelectorMetaSPIP::IsCorrectlyConfigured.Name' value: 'IsCorrectlyConfigured'
  id: 'Attribute::SelectorMetaSPIP::IsDatasetCopyEnabled.Description' value: "Used in the UI to set the 'Dataset copies are disabled' image icon in the 'Components' form and to show a constraint to the user.\n    \nAn icon will be shown when:\n1: There is a dataset copy on any component position of this component.\nand either \n2a: The optimizer run is ongoing and `LibOpt_Run.IsCreatingDatasetCopiesEnabled` is set to `false` on the related `LibOpt_Run` object.\n2b: The optimizer run has finished and `LibOpt_Optimizer.IsCreatingDatasetCopiesEnabled` is set to `false` on the related `LibOpt_Optimizer` object."
  id: 'Attribute::SelectorMetaSPIP::IsDatasetCopyEnabled.Name' value: 'IsDatasetCopyEnabled'
  id: 'Attribute::SelectorMetaSPIP::IsPostProcessing.Description' value: 'If this attribute is true when a user aborts an optimizer run, then the optimizer will first execute any post processing `LibOpt_LinkIteratorForEach` links before aborting the run. \n\nFor the `LibOpt_IteratorForEachLink` component, this attribute is true when `LibOpt_LinkIteratorForEach.IsPostProcessing` is true for any of its links. \nFor all other components, this attribute is always false.'
  id: 'Attribute::SelectorMetaSPIP::IsPostProcessing.Name' value: 'IsPostProcessing'
  id: 'Attribute::SelectorMetaSPIP::Name.Description' value: 'The name of the `LibOpt_Component`.\n\nThe name should be unique within the `LibOpt_Run`.'
  id: 'Attribute::SelectorMetaSPIP::Name.Name' value: 'Name'
  id: 'Attribute::SelectorMetaSPIP::NrOfEnabledBreakpoints.Description' value: 'The number of enabled `LibOpt_BreakpointConditionals` that are attached to the `LibOpt_BreakpointPositions` of this component. \nThis attribute is used in the `HasNoBreakpoints` constraint.'
  id: 'Attribute::SelectorMetaSPIP::NrOfEnabledBreakpoints.Name' value: 'NrOfEnabledBreakpoints'
  id: 'Attribute::SelectorMetaSPIP::NrOfEnabledDatasetCopies.Description' value: 'The number of enabled `LibOpt_DatasetCopyConditionals` that are attached to the `LibOpt_BreakpointPositions` of this component. \nThis attribute is used in the `HasNoDatasetCopies` constraint.'
  id: 'Attribute::SelectorMetaSPIP::NrOfEnabledDatasetCopies.Name' value: 'NrOfEnabledDatasetCopies'
  id: 'Attribute::SelectorMetaSPIP::NrTimesCalled.Description' value: 'The number of times this component was called (the DoTask method was called).'
  id: 'Attribute::SelectorMetaSPIP::NrTimesCalled.Name' value: 'NrTimesCalled'
  id: 'Attribute::SelectorMetaSPIP::Path.Description' value: 'A declarative attribute that contains one Path to this component.\nThis can be used to sort a list of components in a semi-logical way.'
  id: 'Attribute::SelectorMetaSPIP::Path.Name' value: 'Path'
  id: 'Attribute::SelectorMetaSPIP::SequenceNr.Description' value: 'The position in the sequence of the `LibOpt_Components` in the `LibOpt_Run`.\n\nThe `LibOpt_Components` are sorted according to the `Path`.\nThis is slightly different from sorting on the `Depth`.\n\nThe difference is that the `Path` keeps different branches in a `LibOpt_Switch` together, while sorting on `Depth` intertwines them.\n\nExample:\n\nIf we have a switch with 2 branches, A and C, with each a link to B and D respectively, the sorting order is different.\n\n switch -> A -> B\n switch -> C -> D\n \nNow the `Depth` (and the sorting on `Depth`) will be:\nswitch = 0\nA = 1\nC = 1\nB = 2\nD = 2\n\nThe `Path` (and sorting of the `Path`) will be:\nswitch = "switch"\nA = "switch" -> "A"\nB = "switch" -> "A" -> "B"\nC = "switch" -> "C"\nD = "switch" -> "C" -> "D"'
  id: 'Attribute::SelectorMetaSPIP::SequenceNr.Name' value: 'SequenceNr'
  id: 'Attribute::SelectorMetaSPIP::TotalDuration.Description' value: 'Total duration spent on the component during the run'
  id: 'Attribute::SelectorMetaSPIP::TotalDuration.Name' value: 'TotalDuration'
  id: 'Attribute::SelectorMetaTrip::CanBeCalled.Description' value: 'Whether or not this component can be called, given the selected start component.'
  id: 'Attribute::SelectorMetaTrip::CanBeCalled.Name' value: 'CanBeCalled'
  id: 'Attribute::SelectorMetaTrip::ComponentType.Description' value: 'A short name for this `LibOpt_Component` type.'
  id: 'Attribute::SelectorMetaTrip::ComponentType.Name' value: 'ComponentType'
  id: 'Attribute::SelectorMetaTrip::ConfigurationError.Description' value: 'The errors in the configuration.'
  id: 'Attribute::SelectorMetaTrip::ConfigurationError.Name' value: 'ConfigurationError'
  id: 'Attribute::SelectorMetaTrip::Depth.Description' value: 'The highest number of `LibOpt_Components` above this component.'
  id: 'Attribute::SelectorMetaTrip::Depth.Name' value: 'Depth'
  id: 'Attribute::SelectorMetaTrip::HasBreakpointEvent.Description' value: 'Whether the `LibOpt_Component` is waiting for a `LibOpt_BreakpointEvent`.'
  id: 'Attribute::SelectorMetaTrip::HasBreakpointEvent.Name' value: 'HasBreakpointEvent'
  id: 'Attribute::SelectorMetaTrip::HasNoBreakpoints.Description' value: 'Whether this `LibOpt_Component` has no `LibOpt_BreakpointConditional` attached to any of its component positions.'
  id: 'Attribute::SelectorMetaTrip::HasNoBreakpoints.Name' value: 'HasNoBreakpoints'
  id: 'Attribute::SelectorMetaTrip::HasNoDatasetCopies.Description' value: 'Whether this component has no `LibOpt_DatasetCopyConditional` attached to any of its component positions.'
  id: 'Attribute::SelectorMetaTrip::HasNoDatasetCopies.Name' value: 'HasNoDatasetCopies'
  id: 'Attribute::SelectorMetaTrip::HasUniqueName.Description' value: 'Whether the name of this `LibOpt_Component` is unique.'
  id: 'Attribute::SelectorMetaTrip::HasUniqueName.Name' value: 'HasUniqueName'
  id: 'Attribute::SelectorMetaTrip::IsCorrectlyConfigured.Name' value: 'IsCorrectlyConfigured'
  id: 'Attribute::SelectorMetaTrip::IsDatasetCopyEnabled.Description' value: "Used in the UI to set the 'Dataset copies are disabled' image icon in the 'Components' form and to show a constraint to the user.\n    \nAn icon will be shown when:\n1: There is a dataset copy on any component position of this component.\nand either \n2a: The optimizer run is ongoing and `LibOpt_Run.IsCreatingDatasetCopiesEnabled` is set to `false` on the related `LibOpt_Run` object.\n2b: The optimizer run has finished and `LibOpt_Optimizer.IsCreatingDatasetCopiesEnabled` is set to `false` on the related `LibOpt_Optimizer` object."
  id: 'Attribute::SelectorMetaTrip::IsDatasetCopyEnabled.Name' value: 'IsDatasetCopyEnabled'
  id: 'Attribute::SelectorMetaTrip::IsPostProcessing.Description' value: 'If this attribute is true when a user aborts an optimizer run, then the optimizer will first execute any post processing `LibOpt_LinkIteratorForEach` links before aborting the run. \n\nFor the `LibOpt_IteratorForEachLink` component, this attribute is true when `LibOpt_LinkIteratorForEach.IsPostProcessing` is true for any of its links. \nFor all other components, this attribute is always false.'
  id: 'Attribute::SelectorMetaTrip::IsPostProcessing.Name' value: 'IsPostProcessing'
  id: 'Attribute::SelectorMetaTrip::Name.Description' value: 'The name of the `LibOpt_Component`.\n\nThe name should be unique within the `LibOpt_Run`.'
  id: 'Attribute::SelectorMetaTrip::Name.Name' value: 'Name'
  id: 'Attribute::SelectorMetaTrip::NrOfEnabledBreakpoints.Description' value: 'The number of enabled `LibOpt_BreakpointConditionals` that are attached to the `LibOpt_BreakpointPositions` of this component. \nThis attribute is used in the `HasNoBreakpoints` constraint.'
  id: 'Attribute::SelectorMetaTrip::NrOfEnabledBreakpoints.Name' value: 'NrOfEnabledBreakpoints'
  id: 'Attribute::SelectorMetaTrip::NrOfEnabledDatasetCopies.Description' value: 'The number of enabled `LibOpt_DatasetCopyConditionals` that are attached to the `LibOpt_BreakpointPositions` of this component. \nThis attribute is used in the `HasNoDatasetCopies` constraint.'
  id: 'Attribute::SelectorMetaTrip::NrOfEnabledDatasetCopies.Name' value: 'NrOfEnabledDatasetCopies'
  id: 'Attribute::SelectorMetaTrip::NrTimesCalled.Description' value: 'The number of times this component was called (the DoTask method was called).'
  id: 'Attribute::SelectorMetaTrip::NrTimesCalled.Name' value: 'NrTimesCalled'
  id: 'Attribute::SelectorMetaTrip::Path.Description' value: 'A declarative attribute that contains one Path to this component.\nThis can be used to sort a list of components in a semi-logical way.'
  id: 'Attribute::SelectorMetaTrip::Path.Name' value: 'Path'
  id: 'Attribute::SelectorMetaTrip::SequenceNr.Description' value: 'The position in the sequence of the `LibOpt_Components` in the `LibOpt_Run`.\n\nThe `LibOpt_Components` are sorted according to the `Path`.\nThis is slightly different from sorting on the `Depth`.\n\nThe difference is that the `Path` keeps different branches in a `LibOpt_Switch` together, while sorting on `Depth` intertwines them.\n\nExample:\n\nIf we have a switch with 2 branches, A and C, with each a link to B and D respectively, the sorting order is different.\n\n switch -> A -> B\n switch -> C -> D\n \nNow the `Depth` (and the sorting on `Depth`) will be:\nswitch = 0\nA = 1\nC = 1\nB = 2\nD = 2\n\nThe `Path` (and sorting of the `Path`) will be:\nswitch = "switch"\nA = "switch" -> "A"\nB = "switch" -> "A" -> "B"\nC = "switch" -> "C"\nD = "switch" -> "C" -> "D"'
  id: 'Attribute::SelectorMetaTrip::SequenceNr.Name' value: 'SequenceNr'
  id: 'Attribute::SelectorMetaTrip::TotalDuration.Description' value: 'Total duration spent on the component during the run'
  id: 'Attribute::SelectorMetaTrip::TotalDuration.Name' value: 'TotalDuration'
  id: 'Attribute::SelectorMetaUnitPeriod::CanBeCalled.Description' value: 'Whether or not this component can be called, given the selected start component.'
  id: 'Attribute::SelectorMetaUnitPeriod::CanBeCalled.Name' value: 'CanBeCalled'
  id: 'Attribute::SelectorMetaUnitPeriod::ComponentType.Description' value: 'A short name for this `LibOpt_Component` type.'
  id: 'Attribute::SelectorMetaUnitPeriod::ComponentType.Name' value: 'ComponentType'
  id: 'Attribute::SelectorMetaUnitPeriod::ConfigurationError.Description' value: 'The errors in the configuration.'
  id: 'Attribute::SelectorMetaUnitPeriod::ConfigurationError.Name' value: 'ConfigurationError'
  id: 'Attribute::SelectorMetaUnitPeriod::Depth.Description' value: 'The highest number of `LibOpt_Components` above this component.'
  id: 'Attribute::SelectorMetaUnitPeriod::Depth.Name' value: 'Depth'
  id: 'Attribute::SelectorMetaUnitPeriod::HasBreakpointEvent.Description' value: 'Whether the `LibOpt_Component` is waiting for a `LibOpt_BreakpointEvent`.'
  id: 'Attribute::SelectorMetaUnitPeriod::HasBreakpointEvent.Name' value: 'HasBreakpointEvent'
  id: 'Attribute::SelectorMetaUnitPeriod::HasNoBreakpoints.Description' value: 'Whether this `LibOpt_Component` has no `LibOpt_BreakpointConditional` attached to any of its component positions.'
  id: 'Attribute::SelectorMetaUnitPeriod::HasNoBreakpoints.Name' value: 'HasNoBreakpoints'
  id: 'Attribute::SelectorMetaUnitPeriod::HasNoDatasetCopies.Description' value: 'Whether this component has no `LibOpt_DatasetCopyConditional` attached to any of its component positions.'
  id: 'Attribute::SelectorMetaUnitPeriod::HasNoDatasetCopies.Name' value: 'HasNoDatasetCopies'
  id: 'Attribute::SelectorMetaUnitPeriod::HasUniqueName.Description' value: 'Whether the name of this `LibOpt_Component` is unique.'
  id: 'Attribute::SelectorMetaUnitPeriod::HasUniqueName.Name' value: 'HasUniqueName'
  id: 'Attribute::SelectorMetaUnitPeriod::IsCorrectlyConfigured.Name' value: 'IsCorrectlyConfigured'
  id: 'Attribute::SelectorMetaUnitPeriod::IsDatasetCopyEnabled.Description' value: "Used in the UI to set the 'Dataset copies are disabled' image icon in the 'Components' form and to show a constraint to the user.\n    \nAn icon will be shown when:\n1: There is a dataset copy on any component position of this component.\nand either \n2a: The optimizer run is ongoing and `LibOpt_Run.IsCreatingDatasetCopiesEnabled` is set to `false` on the related `LibOpt_Run` object.\n2b: The optimizer run has finished and `LibOpt_Optimizer.IsCreatingDatasetCopiesEnabled` is set to `false` on the related `LibOpt_Optimizer` object."
  id: 'Attribute::SelectorMetaUnitPeriod::IsDatasetCopyEnabled.Name' value: 'IsDatasetCopyEnabled'
  id: 'Attribute::SelectorMetaUnitPeriod::IsPostProcessing.Description' value: 'If this attribute is true when a user aborts an optimizer run, then the optimizer will first execute any post processing `LibOpt_LinkIteratorForEach` links before aborting the run. \n\nFor the `LibOpt_IteratorForEachLink` component, this attribute is true when `LibOpt_LinkIteratorForEach.IsPostProcessing` is true for any of its links. \nFor all other components, this attribute is always false.'
  id: 'Attribute::SelectorMetaUnitPeriod::IsPostProcessing.Name' value: 'IsPostProcessing'
  id: 'Attribute::SelectorMetaUnitPeriod::Name.Description' value: 'The name of the `LibOpt_Component`.\n\nThe name should be unique within the `LibOpt_Run`.'
  id: 'Attribute::SelectorMetaUnitPeriod::Name.Name' value: 'Name'
  id: 'Attribute::SelectorMetaUnitPeriod::NrOfEnabledBreakpoints.Description' value: 'The number of enabled `LibOpt_BreakpointConditionals` that are attached to the `LibOpt_BreakpointPositions` of this component. \nThis attribute is used in the `HasNoBreakpoints` constraint.'
  id: 'Attribute::SelectorMetaUnitPeriod::NrOfEnabledBreakpoints.Name' value: 'NrOfEnabledBreakpoints'
  id: 'Attribute::SelectorMetaUnitPeriod::NrOfEnabledDatasetCopies.Description' value: 'The number of enabled `LibOpt_DatasetCopyConditionals` that are attached to the `LibOpt_BreakpointPositions` of this component. \nThis attribute is used in the `HasNoDatasetCopies` constraint.'
  id: 'Attribute::SelectorMetaUnitPeriod::NrOfEnabledDatasetCopies.Name' value: 'NrOfEnabledDatasetCopies'
  id: 'Attribute::SelectorMetaUnitPeriod::NrTimesCalled.Description' value: 'The number of times this component was called (the DoTask method was called).'
  id: 'Attribute::SelectorMetaUnitPeriod::NrTimesCalled.Name' value: 'NrTimesCalled'
  id: 'Attribute::SelectorMetaUnitPeriod::Path.Description' value: 'A declarative attribute that contains one Path to this component.\nThis can be used to sort a list of components in a semi-logical way.'
  id: 'Attribute::SelectorMetaUnitPeriod::Path.Name' value: 'Path'
  id: 'Attribute::SelectorMetaUnitPeriod::SequenceNr.Description' value: 'The position in the sequence of the `LibOpt_Components` in the `LibOpt_Run`.\n\nThe `LibOpt_Components` are sorted according to the `Path`.\nThis is slightly different from sorting on the `Depth`.\n\nThe difference is that the `Path` keeps different branches in a `LibOpt_Switch` together, while sorting on `Depth` intertwines them.\n\nExample:\n\nIf we have a switch with 2 branches, A and C, with each a link to B and D respectively, the sorting order is different.\n\n switch -> A -> B\n switch -> C -> D\n \nNow the `Depth` (and the sorting on `Depth`) will be:\nswitch = 0\nA = 1\nC = 1\nB = 2\nD = 2\n\nThe `Path` (and sorting of the `Path`) will be:\nswitch = "switch"\nA = "switch" -> "A"\nB = "switch" -> "A" -> "B"\nC = "switch" -> "C"\nD = "switch" -> "C" -> "D"'
  id: 'Attribute::SelectorMetaUnitPeriod::SequenceNr.Name' value: 'SequenceNr'
  id: 'Attribute::SelectorMetaUnitPeriod::TotalDuration.Description' value: 'Total duration spent on the component during the run'
  id: 'Attribute::SelectorMetaUnitPeriod::TotalDuration.Name' value: 'TotalDuration'
  id: 'Attribute::SmartPlanPISPIPInOptimizerRun::Details.Description' value: 'This attribute contains information on the details of this `LibOpt_ScopeElement`.'
  id: 'Attribute::SmartPlanPISPIPInOptimizerRun::Details.Name' value: 'Details'
  id: 'Attribute::SmartPlanPISPIPInOptimizerRun::Identifier.Description' value: 'An identifier for the `LibOpt_ScopeElement`.'
  id: 'Attribute::SmartPlanPISPIPInOptimizerRun::Identifier.Name' value: 'Identifier'
  id: 'Attribute::SmartPlanPISPIPInOptimizerRun::InternalIdentifier.Description' value: 'An identifier to uniquely identify this `LibOpt_ScopeElement`.'
  id: 'Attribute::SmartPlanPISPIPInOptimizerRun::InternalIdentifier.Name' value: 'InternalIdentifier'
  id: 'Attribute::SmartPlanPrimaryPISPIPInRun::Details.Description' value: 'This attribute contains information on the details of this `LibOpt_ScopeElement`.'
  id: 'Attribute::SmartPlanPrimaryPISPIPInRun::Details.Name' value: 'Details'
  id: 'Attribute::SmartPlanPrimaryPISPIPInRun::Identifier.Description' value: 'An identifier for the `LibOpt_ScopeElement`.'
  id: 'Attribute::SmartPlanPrimaryPISPIPInRun::Identifier.Name' value: 'Identifier'
  id: 'Attribute::SmartPlanPrimaryPISPIPInRun::InternalIdentifier.Description' value: 'An identifier to uniquely identify this `LibOpt_ScopeElement`.'
  id: 'Attribute::SmartPlanPrimaryPISPIPInRun::InternalIdentifier.Name' value: 'InternalIdentifier'
  id: 'Attribute::SnapshotMacroPlannerOptimizer::Comment.Description' value: 'A comment on when this `LibOpt_SnapshotKPI` was taken. For example, before handling result or after handling result.'
  id: 'Attribute::SnapshotMacroPlannerOptimizer::Comment.Name' value: 'Comment'
  id: 'Attribute::SnapshotMacroPlannerOptimizer::ComputerName.Description' value: 'The name of the computer on which this snapshot was created.'
  id: 'Attribute::SnapshotMacroPlannerOptimizer::ComputerName.Name' value: 'ComputerName'
  id: 'Attribute::SnapshotMacroPlannerOptimizer::CumNrIterations.Name' value: 'CumNrIterations'
  id: 'Attribute::SnapshotMacroPlannerOptimizer::Details.Description' value: 'An overview of the details of this `LibOpt_Snapshot`.'
  id: 'Attribute::SnapshotMacroPlannerOptimizer::Details.Name' value: 'Details'
  id: 'Attribute::SnapshotMacroPlannerOptimizer::IsPreHandleResult.Description' value: 'This attribute is `true` if the `LibOpt_SnapshotKPI` is created in `LibOpt_Suboptimizer.PreHandleResult`.\nThis attribute is `false` if the `LibOpt_SnapshotKPI` is created in `LibOpt_Suboptimizer.PostHandleResult`.'
  id: 'Attribute::SnapshotMacroPlannerOptimizer::IsPreHandleResult.Name' value: 'IsPreHandleResult'
  id: 'Attribute::SnapshotMacroPlannerOptimizer::IsRolledBack.Description' value: 'Whether the KPI snapshot is rolled back or not.\nThis applies to the KPI snapshot that is created after the handle result.\nThe KPI snapshot before the handle result is technically also rolled back, but we assume the values stored in that snapshot are still accurate.'
  id: 'Attribute::SnapshotMacroPlannerOptimizer::IsRolledBack.Name' value: 'IsRolledBack'
  id: 'Attribute::SnapshotMacroPlannerOptimizer::MDS.Description' value: 'The MDSID on which this snapshot was created.'
  id: 'Attribute::SnapshotMacroPlannerOptimizer::MDS.Name' value: 'MDS'
  id: 'Attribute::SnapshotMacroPlannerOptimizer::NrIssues.Description' value: 'The number of `LibOpt_Issues` related to this `LibOpt_Snapshot`.'
  id: 'Attribute::SnapshotMacroPlannerOptimizer::NrIssues.Name' value: 'NrIssues'
  id: 'Attribute::SnapshotMacroPlannerOptimizer::PrecisionTimeStamp.Description' value: 'The time according to OS::PrecisionCounter() when this object was created.'
  id: 'Attribute::SnapshotMacroPlannerOptimizer::PrecisionTimeStamp.Name' value: 'PrecisionTimeStamp'
  id: 'Attribute::SnapshotMacroPlannerOptimizer::RollbackKPI.Description' value: 'The value (as a `RealVector`) of the `LibOpt_RollbackKPI` of the `LibOpt_Suboptimizer`.'
  id: 'Attribute::SnapshotMacroPlannerOptimizer::RollbackKPI.Name' value: 'RollbackKPI'
  id: 'Attribute::SnapshotMacroPlannerOptimizer::SequenceNr.Description' value: 'The sequence number of the `LibOpt_Snapshot`.'
  id: 'Attribute::SnapshotMacroPlannerOptimizer::SequenceNr.Name' value: 'SequenceNr'
  id: 'Attribute::SnapshotMacroPlannerOptimizer::TimeSince.Description' value: 'The duration since the start of the optimizer run.'
  id: 'Attribute::SnapshotMacroPlannerOptimizer::TimeSince.Name' value: 'TimeSince'
  id: 'Attribute::SnapshotMacroPlannerOptimizer::TimeStamp.Description' value: 'The date time this `LibOpt_Snapshot` was created.'
  id: 'Attribute::SnapshotMacroPlannerOptimizer::TimeStamp.Name' value: 'TimeStamp'
  id: 'Attribute::SnapshotMacroPlannerOptimizer::Type.Description' value: 'A way to distinguish between different types of `LibOpt_Snapshot`.'
  id: 'Attribute::SnapshotMacroPlannerOptimizer::Type.Name' value: 'Type'
  id: 'Attribute::StockingPointInOptimizerRun::Details.Description' value: 'This attribute contains information on the details of this `LibOpt_ScopeElement`.'
  id: 'Attribute::StockingPointInOptimizerRun::Details.Name' value: 'Details'
  id: 'Attribute::StockingPointInOptimizerRun::Identifier.Description' value: 'An identifier for the `LibOpt_ScopeElement`.'
  id: 'Attribute::StockingPointInOptimizerRun::Identifier.Name' value: 'Identifier'
  id: 'Attribute::StockingPointInOptimizerRun::InternalIdentifier.Description' value: 'An identifier to uniquely identify this `LibOpt_ScopeElement`.'
  id: 'Attribute::StockingPointInOptimizerRun::InternalIdentifier.Name' value: 'InternalIdentifier'
  id: 'Attribute::StopCriterionMeta::ConfigurationError.Description' value: 'The errors in the configuration.'
  id: 'Attribute::StopCriterionMeta::ConfigurationError.Name' value: 'ConfigurationError'
  id: 'Attribute::StopCriterionMeta::IsCorrectlyConfigured.Name' value: 'IsCorrectlyConfigured'
  id: 'Attribute::TransformerExcludedProducts::CanBeCalled.Description' value: 'Whether or not this component can be called, given the selected start component.'
  id: 'Attribute::TransformerExcludedProducts::CanBeCalled.Name' value: 'CanBeCalled'
  id: 'Attribute::TransformerExcludedProducts::ComponentType.Description' value: 'A short name for this `LibOpt_Component` type.'
  id: 'Attribute::TransformerExcludedProducts::ComponentType.Name' value: 'ComponentType'
  id: 'Attribute::TransformerExcludedProducts::ConfigurationError.Description' value: 'The errors in the configuration.'
  id: 'Attribute::TransformerExcludedProducts::ConfigurationError.Name' value: 'ConfigurationError'
  id: 'Attribute::TransformerExcludedProducts::Depth.Description' value: 'The highest number of `LibOpt_Components` above this component.'
  id: 'Attribute::TransformerExcludedProducts::Depth.Name' value: 'Depth'
  id: 'Attribute::TransformerExcludedProducts::HasBreakpointEvent.Description' value: 'Whether the `LibOpt_Component` is waiting for a `LibOpt_BreakpointEvent`.'
  id: 'Attribute::TransformerExcludedProducts::HasBreakpointEvent.Name' value: 'HasBreakpointEvent'
  id: 'Attribute::TransformerExcludedProducts::HasNoBreakpoints.Description' value: 'Whether this `LibOpt_Component` has no `LibOpt_BreakpointConditional` attached to any of its component positions.'
  id: 'Attribute::TransformerExcludedProducts::HasNoBreakpoints.Name' value: 'HasNoBreakpoints'
  id: 'Attribute::TransformerExcludedProducts::HasNoDatasetCopies.Description' value: 'Whether this component has no `LibOpt_DatasetCopyConditional` attached to any of its component positions.'
  id: 'Attribute::TransformerExcludedProducts::HasNoDatasetCopies.Name' value: 'HasNoDatasetCopies'
  id: 'Attribute::TransformerExcludedProducts::HasUniqueName.Description' value: 'Whether the name of this `LibOpt_Component` is unique.'
  id: 'Attribute::TransformerExcludedProducts::HasUniqueName.Name' value: 'HasUniqueName'
  id: 'Attribute::TransformerExcludedProducts::IsCorrectlyConfigured.Name' value: 'IsCorrectlyConfigured'
  id: 'Attribute::TransformerExcludedProducts::IsDatasetCopyEnabled.Description' value: "Used in the UI to set the 'Dataset copies are disabled' image icon in the 'Components' form and to show a constraint to the user.\n    \nAn icon will be shown when:\n1: There is a dataset copy on any component position of this component.\nand either \n2a: The optimizer run is ongoing and `LibOpt_Run.IsCreatingDatasetCopiesEnabled` is set to `false` on the related `LibOpt_Run` object.\n2b: The optimizer run has finished and `LibOpt_Optimizer.IsCreatingDatasetCopiesEnabled` is set to `false` on the related `LibOpt_Optimizer` object."
  id: 'Attribute::TransformerExcludedProducts::IsDatasetCopyEnabled.Name' value: 'IsDatasetCopyEnabled'
  id: 'Attribute::TransformerExcludedProducts::IsPostProcessing.Description' value: 'If this attribute is true when a user aborts an optimizer run, then the optimizer will first execute any post processing `LibOpt_LinkIteratorForEach` links before aborting the run. \n\nFor the `LibOpt_IteratorForEachLink` component, this attribute is true when `LibOpt_LinkIteratorForEach.IsPostProcessing` is true for any of its links. \nFor all other components, this attribute is always false.'
  id: 'Attribute::TransformerExcludedProducts::IsPostProcessing.Name' value: 'IsPostProcessing'
  id: 'Attribute::TransformerExcludedProducts::Name.Description' value: 'The name of the `LibOpt_Component`.\n\nThe name should be unique within the `LibOpt_Run`.'
  id: 'Attribute::TransformerExcludedProducts::Name.Name' value: 'Name'
  id: 'Attribute::TransformerExcludedProducts::NrOfEnabledBreakpoints.Description' value: 'The number of enabled `LibOpt_BreakpointConditionals` that are attached to the `LibOpt_BreakpointPositions` of this component. \nThis attribute is used in the `HasNoBreakpoints` constraint.'
  id: 'Attribute::TransformerExcludedProducts::NrOfEnabledBreakpoints.Name' value: 'NrOfEnabledBreakpoints'
  id: 'Attribute::TransformerExcludedProducts::NrOfEnabledDatasetCopies.Description' value: 'The number of enabled `LibOpt_DatasetCopyConditionals` that are attached to the `LibOpt_BreakpointPositions` of this component. \nThis attribute is used in the `HasNoDatasetCopies` constraint.'
  id: 'Attribute::TransformerExcludedProducts::NrOfEnabledDatasetCopies.Name' value: 'NrOfEnabledDatasetCopies'
  id: 'Attribute::TransformerExcludedProducts::NrTimesCalled.Description' value: 'The number of times this component was called (the DoTask method was called).'
  id: 'Attribute::TransformerExcludedProducts::NrTimesCalled.Name' value: 'NrTimesCalled'
  id: 'Attribute::TransformerExcludedProducts::Path.Description' value: 'A declarative attribute that contains one Path to this component.\nThis can be used to sort a list of components in a semi-logical way.'
  id: 'Attribute::TransformerExcludedProducts::Path.Name' value: 'Path'
  id: 'Attribute::TransformerExcludedProducts::SequenceNr.Description' value: 'The position in the sequence of the `LibOpt_Components` in the `LibOpt_Run`.\n\nThe `LibOpt_Components` are sorted according to the `Path`.\nThis is slightly different from sorting on the `Depth`.\n\nThe difference is that the `Path` keeps different branches in a `LibOpt_Switch` together, while sorting on `Depth` intertwines them.\n\nExample:\n\nIf we have a switch with 2 branches, A and C, with each a link to B and D respectively, the sorting order is different.\n\n switch -> A -> B\n switch -> C -> D\n \nNow the `Depth` (and the sorting on `Depth`) will be:\nswitch = 0\nA = 1\nC = 1\nB = 2\nD = 2\n\nThe `Path` (and sorting of the `Path`) will be:\nswitch = "switch"\nA = "switch" -> "A"\nB = "switch" -> "A" -> "B"\nC = "switch" -> "C"\nD = "switch" -> "C" -> "D"'
  id: 'Attribute::TransformerExcludedProducts::SequenceNr.Name' value: 'SequenceNr'
  id: 'Attribute::TransformerExcludedProducts::TotalDuration.Description' value: 'Total duration spent on the component during the run'
  id: 'Attribute::TransformerExcludedProducts::TotalDuration.Name' value: 'TotalDuration'
  id: 'Attribute::TransformerFullRun::CanBeCalled.Description' value: 'Whether or not this component can be called, given the selected start component.'
  id: 'Attribute::TransformerFullRun::CanBeCalled.Name' value: 'CanBeCalled'
  id: 'Attribute::TransformerFullRun::ComponentType.Description' value: 'A short name for this `LibOpt_Component` type.'
  id: 'Attribute::TransformerFullRun::ComponentType.Name' value: 'ComponentType'
  id: 'Attribute::TransformerFullRun::ConfigurationError.Description' value: 'The errors in the configuration.'
  id: 'Attribute::TransformerFullRun::ConfigurationError.Name' value: 'ConfigurationError'
  id: 'Attribute::TransformerFullRun::Depth.Description' value: 'The highest number of `LibOpt_Components` above this component.'
  id: 'Attribute::TransformerFullRun::Depth.Name' value: 'Depth'
  id: 'Attribute::TransformerFullRun::HasBreakpointEvent.Description' value: 'Whether the `LibOpt_Component` is waiting for a `LibOpt_BreakpointEvent`.'
  id: 'Attribute::TransformerFullRun::HasBreakpointEvent.Name' value: 'HasBreakpointEvent'
  id: 'Attribute::TransformerFullRun::HasNoBreakpoints.Description' value: 'Whether this `LibOpt_Component` has no `LibOpt_BreakpointConditional` attached to any of its component positions.'
  id: 'Attribute::TransformerFullRun::HasNoBreakpoints.Name' value: 'HasNoBreakpoints'
  id: 'Attribute::TransformerFullRun::HasNoDatasetCopies.Description' value: 'Whether this component has no `LibOpt_DatasetCopyConditional` attached to any of its component positions.'
  id: 'Attribute::TransformerFullRun::HasNoDatasetCopies.Name' value: 'HasNoDatasetCopies'
  id: 'Attribute::TransformerFullRun::HasUniqueName.Description' value: 'Whether the name of this `LibOpt_Component` is unique.'
  id: 'Attribute::TransformerFullRun::HasUniqueName.Name' value: 'HasUniqueName'
  id: 'Attribute::TransformerFullRun::IsCorrectlyConfigured.Name' value: 'IsCorrectlyConfigured'
  id: 'Attribute::TransformerFullRun::IsDatasetCopyEnabled.Description' value: "Used in the UI to set the 'Dataset copies are disabled' image icon in the 'Components' form and to show a constraint to the user.\n    \nAn icon will be shown when:\n1: There is a dataset copy on any component position of this component.\nand either \n2a: The optimizer run is ongoing and `LibOpt_Run.IsCreatingDatasetCopiesEnabled` is set to `false` on the related `LibOpt_Run` object.\n2b: The optimizer run has finished and `LibOpt_Optimizer.IsCreatingDatasetCopiesEnabled` is set to `false` on the related `LibOpt_Optimizer` object."
  id: 'Attribute::TransformerFullRun::IsDatasetCopyEnabled.Name' value: 'IsDatasetCopyEnabled'
  id: 'Attribute::TransformerFullRun::IsPostProcessing.Description' value: 'If this attribute is true when a user aborts an optimizer run, then the optimizer will first execute any post processing `LibOpt_LinkIteratorForEach` links before aborting the run. \n\nFor the `LibOpt_IteratorForEachLink` component, this attribute is true when `LibOpt_LinkIteratorForEach.IsPostProcessing` is true for any of its links. \nFor all other components, this attribute is always false.'
  id: 'Attribute::TransformerFullRun::IsPostProcessing.Name' value: 'IsPostProcessing'
  id: 'Attribute::TransformerFullRun::Name.Description' value: 'The name of the `LibOpt_Component`.\n\nThe name should be unique within the `LibOpt_Run`.'
  id: 'Attribute::TransformerFullRun::Name.Name' value: 'Name'
  id: 'Attribute::TransformerFullRun::NrOfEnabledBreakpoints.Description' value: 'The number of enabled `LibOpt_BreakpointConditionals` that are attached to the `LibOpt_BreakpointPositions` of this component. \nThis attribute is used in the `HasNoBreakpoints` constraint.'
  id: 'Attribute::TransformerFullRun::NrOfEnabledBreakpoints.Name' value: 'NrOfEnabledBreakpoints'
  id: 'Attribute::TransformerFullRun::NrOfEnabledDatasetCopies.Description' value: 'The number of enabled `LibOpt_DatasetCopyConditionals` that are attached to the `LibOpt_BreakpointPositions` of this component. \nThis attribute is used in the `HasNoDatasetCopies` constraint.'
  id: 'Attribute::TransformerFullRun::NrOfEnabledDatasetCopies.Name' value: 'NrOfEnabledDatasetCopies'
  id: 'Attribute::TransformerFullRun::NrTimesCalled.Description' value: 'The number of times this component was called (the DoTask method was called).'
  id: 'Attribute::TransformerFullRun::NrTimesCalled.Name' value: 'NrTimesCalled'
  id: 'Attribute::TransformerFullRun::Path.Description' value: 'A declarative attribute that contains one Path to this component.\nThis can be used to sort a list of components in a semi-logical way.'
  id: 'Attribute::TransformerFullRun::Path.Name' value: 'Path'
  id: 'Attribute::TransformerFullRun::SequenceNr.Description' value: 'The position in the sequence of the `LibOpt_Components` in the `LibOpt_Run`.\n\nThe `LibOpt_Components` are sorted according to the `Path`.\nThis is slightly different from sorting on the `Depth`.\n\nThe difference is that the `Path` keeps different branches in a `LibOpt_Switch` together, while sorting on `Depth` intertwines them.\n\nExample:\n\nIf we have a switch with 2 branches, A and C, with each a link to B and D respectively, the sorting order is different.\n\n switch -> A -> B\n switch -> C -> D\n \nNow the `Depth` (and the sorting on `Depth`) will be:\nswitch = 0\nA = 1\nC = 1\nB = 2\nD = 2\n\nThe `Path` (and sorting of the `Path`) will be:\nswitch = "switch"\nA = "switch" -> "A"\nB = "switch" -> "A" -> "B"\nC = "switch" -> "C"\nD = "switch" -> "C" -> "D"'
  id: 'Attribute::TransformerFullRun::SequenceNr.Name' value: 'SequenceNr'
  id: 'Attribute::TransformerFullRun::TotalDuration.Description' value: 'Total duration spent on the component during the run'
  id: 'Attribute::TransformerFullRun::TotalDuration.Name' value: 'TotalDuration'
  id: 'Attribute::TransformerSmartPlan::CanBeCalled.Description' value: 'Whether or not this component can be called, given the selected start component.'
  id: 'Attribute::TransformerSmartPlan::CanBeCalled.Name' value: 'CanBeCalled'
  id: 'Attribute::TransformerSmartPlan::ComponentType.Description' value: 'A short name for this `LibOpt_Component` type.'
  id: 'Attribute::TransformerSmartPlan::ComponentType.Name' value: 'ComponentType'
  id: 'Attribute::TransformerSmartPlan::ConfigurationError.Description' value: 'The errors in the configuration.'
  id: 'Attribute::TransformerSmartPlan::ConfigurationError.Name' value: 'ConfigurationError'
  id: 'Attribute::TransformerSmartPlan::Depth.Description' value: 'The highest number of `LibOpt_Components` above this component.'
  id: 'Attribute::TransformerSmartPlan::Depth.Name' value: 'Depth'
  id: 'Attribute::TransformerSmartPlan::HasBreakpointEvent.Description' value: 'Whether the `LibOpt_Component` is waiting for a `LibOpt_BreakpointEvent`.'
  id: 'Attribute::TransformerSmartPlan::HasBreakpointEvent.Name' value: 'HasBreakpointEvent'
  id: 'Attribute::TransformerSmartPlan::HasNoBreakpoints.Description' value: 'Whether this `LibOpt_Component` has no `LibOpt_BreakpointConditional` attached to any of its component positions.'
  id: 'Attribute::TransformerSmartPlan::HasNoBreakpoints.Name' value: 'HasNoBreakpoints'
  id: 'Attribute::TransformerSmartPlan::HasNoDatasetCopies.Description' value: 'Whether this component has no `LibOpt_DatasetCopyConditional` attached to any of its component positions.'
  id: 'Attribute::TransformerSmartPlan::HasNoDatasetCopies.Name' value: 'HasNoDatasetCopies'
  id: 'Attribute::TransformerSmartPlan::HasUniqueName.Description' value: 'Whether the name of this `LibOpt_Component` is unique.'
  id: 'Attribute::TransformerSmartPlan::HasUniqueName.Name' value: 'HasUniqueName'
  id: 'Attribute::TransformerSmartPlan::IsCorrectlyConfigured.Name' value: 'IsCorrectlyConfigured'
  id: 'Attribute::TransformerSmartPlan::IsDatasetCopyEnabled.Description' value: "Used in the UI to set the 'Dataset copies are disabled' image icon in the 'Components' form and to show a constraint to the user.\n    \nAn icon will be shown when:\n1: There is a dataset copy on any component position of this component.\nand either \n2a: The optimizer run is ongoing and `LibOpt_Run.IsCreatingDatasetCopiesEnabled` is set to `false` on the related `LibOpt_Run` object.\n2b: The optimizer run has finished and `LibOpt_Optimizer.IsCreatingDatasetCopiesEnabled` is set to `false` on the related `LibOpt_Optimizer` object."
  id: 'Attribute::TransformerSmartPlan::IsDatasetCopyEnabled.Name' value: 'IsDatasetCopyEnabled'
  id: 'Attribute::TransformerSmartPlan::IsPostProcessing.Description' value: 'If this attribute is true when a user aborts an optimizer run, then the optimizer will first execute any post processing `LibOpt_LinkIteratorForEach` links before aborting the run. \n\nFor the `LibOpt_IteratorForEachLink` component, this attribute is true when `LibOpt_LinkIteratorForEach.IsPostProcessing` is true for any of its links. \nFor all other components, this attribute is always false.'
  id: 'Attribute::TransformerSmartPlan::IsPostProcessing.Name' value: 'IsPostProcessing'
  id: 'Attribute::TransformerSmartPlan::Name.Description' value: 'The name of the `LibOpt_Component`.\n\nThe name should be unique within the `LibOpt_Run`.'
  id: 'Attribute::TransformerSmartPlan::Name.Name' value: 'Name'
  id: 'Attribute::TransformerSmartPlan::NrOfEnabledBreakpoints.Description' value: 'The number of enabled `LibOpt_BreakpointConditionals` that are attached to the `LibOpt_BreakpointPositions` of this component. \nThis attribute is used in the `HasNoBreakpoints` constraint.'
  id: 'Attribute::TransformerSmartPlan::NrOfEnabledBreakpoints.Name' value: 'NrOfEnabledBreakpoints'
  id: 'Attribute::TransformerSmartPlan::NrOfEnabledDatasetCopies.Description' value: 'The number of enabled `LibOpt_DatasetCopyConditionals` that are attached to the `LibOpt_BreakpointPositions` of this component. \nThis attribute is used in the `HasNoDatasetCopies` constraint.'
  id: 'Attribute::TransformerSmartPlan::NrOfEnabledDatasetCopies.Name' value: 'NrOfEnabledDatasetCopies'
  id: 'Attribute::TransformerSmartPlan::NrTimesCalled.Description' value: 'The number of times this component was called (the DoTask method was called).'
  id: 'Attribute::TransformerSmartPlan::NrTimesCalled.Name' value: 'NrTimesCalled'
  id: 'Attribute::TransformerSmartPlan::Path.Description' value: 'A declarative attribute that contains one Path to this component.\nThis can be used to sort a list of components in a semi-logical way.'
  id: 'Attribute::TransformerSmartPlan::Path.Name' value: 'Path'
  id: 'Attribute::TransformerSmartPlan::SequenceNr.Description' value: 'The position in the sequence of the `LibOpt_Components` in the `LibOpt_Run`.\n\nThe `LibOpt_Components` are sorted according to the `Path`.\nThis is slightly different from sorting on the `Depth`.\n\nThe difference is that the `Path` keeps different branches in a `LibOpt_Switch` together, while sorting on `Depth` intertwines them.\n\nExample:\n\nIf we have a switch with 2 branches, A and C, with each a link to B and D respectively, the sorting order is different.\n\n switch -> A -> B\n switch -> C -> D\n \nNow the `Depth` (and the sorting on `Depth`) will be:\nswitch = 0\nA = 1\nC = 1\nB = 2\nD = 2\n\nThe `Path` (and sorting of the `Path`) will be:\nswitch = "switch"\nA = "switch" -> "A"\nB = "switch" -> "A" -> "B"\nC = "switch" -> "C"\nD = "switch" -> "C" -> "D"'
  id: 'Attribute::TransformerSmartPlan::SequenceNr.Name' value: 'SequenceNr'
  id: 'Attribute::TransformerSmartPlan::TotalDuration.Description' value: 'Total duration spent on the component during the run'
  id: 'Attribute::TransformerSmartPlan::TotalDuration.Name' value: 'TotalDuration'
  id: 'Attribute::TransformerSmartPlanDownStream::CanBeCalled.Description' value: 'Whether or not this component can be called, given the selected start component.'
  id: 'Attribute::TransformerSmartPlanDownStream::CanBeCalled.Name' value: 'CanBeCalled'
  id: 'Attribute::TransformerSmartPlanDownStream::ComponentType.Description' value: 'A short name for this `LibOpt_Component` type.'
  id: 'Attribute::TransformerSmartPlanDownStream::ComponentType.Name' value: 'ComponentType'
  id: 'Attribute::TransformerSmartPlanDownStream::ConfigurationError.Description' value: 'The errors in the configuration.'
  id: 'Attribute::TransformerSmartPlanDownStream::ConfigurationError.Name' value: 'ConfigurationError'
  id: 'Attribute::TransformerSmartPlanDownStream::Depth.Description' value: 'The highest number of `LibOpt_Components` above this component.'
  id: 'Attribute::TransformerSmartPlanDownStream::Depth.Name' value: 'Depth'
  id: 'Attribute::TransformerSmartPlanDownStream::HasBreakpointEvent.Description' value: 'Whether the `LibOpt_Component` is waiting for a `LibOpt_BreakpointEvent`.'
  id: 'Attribute::TransformerSmartPlanDownStream::HasBreakpointEvent.Name' value: 'HasBreakpointEvent'
  id: 'Attribute::TransformerSmartPlanDownStream::HasNoBreakpoints.Description' value: 'Whether this `LibOpt_Component` has no `LibOpt_BreakpointConditional` attached to any of its component positions.'
  id: 'Attribute::TransformerSmartPlanDownStream::HasNoBreakpoints.Name' value: 'HasNoBreakpoints'
  id: 'Attribute::TransformerSmartPlanDownStream::HasNoDatasetCopies.Description' value: 'Whether this component has no `LibOpt_DatasetCopyConditional` attached to any of its component positions.'
  id: 'Attribute::TransformerSmartPlanDownStream::HasNoDatasetCopies.Name' value: 'HasNoDatasetCopies'
  id: 'Attribute::TransformerSmartPlanDownStream::HasUniqueName.Description' value: 'Whether the name of this `LibOpt_Component` is unique.'
  id: 'Attribute::TransformerSmartPlanDownStream::HasUniqueName.Name' value: 'HasUniqueName'
  id: 'Attribute::TransformerSmartPlanDownStream::IsCorrectlyConfigured.Name' value: 'IsCorrectlyConfigured'
  id: 'Attribute::TransformerSmartPlanDownStream::IsDatasetCopyEnabled.Description' value: "Used in the UI to set the 'Dataset copies are disabled' image icon in the 'Components' form and to show a constraint to the user.\n    \nAn icon will be shown when:\n1: There is a dataset copy on any component position of this component.\nand either \n2a: The optimizer run is ongoing and `LibOpt_Run.IsCreatingDatasetCopiesEnabled` is set to `false` on the related `LibOpt_Run` object.\n2b: The optimizer run has finished and `LibOpt_Optimizer.IsCreatingDatasetCopiesEnabled` is set to `false` on the related `LibOpt_Optimizer` object."
  id: 'Attribute::TransformerSmartPlanDownStream::IsDatasetCopyEnabled.Name' value: 'IsDatasetCopyEnabled'
  id: 'Attribute::TransformerSmartPlanDownStream::IsPostProcessing.Description' value: 'If this attribute is true when a user aborts an optimizer run, then the optimizer will first execute any post processing `LibOpt_LinkIteratorForEach` links before aborting the run. \n\nFor the `LibOpt_IteratorForEachLink` component, this attribute is true when `LibOpt_LinkIteratorForEach.IsPostProcessing` is true for any of its links. \nFor all other components, this attribute is always false.'
  id: 'Attribute::TransformerSmartPlanDownStream::IsPostProcessing.Name' value: 'IsPostProcessing'
  id: 'Attribute::TransformerSmartPlanDownStream::Name.Description' value: 'The name of the `LibOpt_Component`.\n\nThe name should be unique within the `LibOpt_Run`.'
  id: 'Attribute::TransformerSmartPlanDownStream::Name.Name' value: 'Name'
  id: 'Attribute::TransformerSmartPlanDownStream::NrOfEnabledBreakpoints.Description' value: 'The number of enabled `LibOpt_BreakpointConditionals` that are attached to the `LibOpt_BreakpointPositions` of this component. \nThis attribute is used in the `HasNoBreakpoints` constraint.'
  id: 'Attribute::TransformerSmartPlanDownStream::NrOfEnabledBreakpoints.Name' value: 'NrOfEnabledBreakpoints'
  id: 'Attribute::TransformerSmartPlanDownStream::NrOfEnabledDatasetCopies.Description' value: 'The number of enabled `LibOpt_DatasetCopyConditionals` that are attached to the `LibOpt_BreakpointPositions` of this component. \nThis attribute is used in the `HasNoDatasetCopies` constraint.'
  id: 'Attribute::TransformerSmartPlanDownStream::NrOfEnabledDatasetCopies.Name' value: 'NrOfEnabledDatasetCopies'
  id: 'Attribute::TransformerSmartPlanDownStream::NrTimesCalled.Description' value: 'The number of times this component was called (the DoTask method was called).'
  id: 'Attribute::TransformerSmartPlanDownStream::NrTimesCalled.Name' value: 'NrTimesCalled'
  id: 'Attribute::TransformerSmartPlanDownStream::Path.Description' value: 'A declarative attribute that contains one Path to this component.\nThis can be used to sort a list of components in a semi-logical way.'
  id: 'Attribute::TransformerSmartPlanDownStream::Path.Name' value: 'Path'
  id: 'Attribute::TransformerSmartPlanDownStream::SequenceNr.Description' value: 'The position in the sequence of the `LibOpt_Components` in the `LibOpt_Run`.\n\nThe `LibOpt_Components` are sorted according to the `Path`.\nThis is slightly different from sorting on the `Depth`.\n\nThe difference is that the `Path` keeps different branches in a `LibOpt_Switch` together, while sorting on `Depth` intertwines them.\n\nExample:\n\nIf we have a switch with 2 branches, A and C, with each a link to B and D respectively, the sorting order is different.\n\n switch -> A -> B\n switch -> C -> D\n \nNow the `Depth` (and the sorting on `Depth`) will be:\nswitch = 0\nA = 1\nC = 1\nB = 2\nD = 2\n\nThe `Path` (and sorting of the `Path`) will be:\nswitch = "switch"\nA = "switch" -> "A"\nB = "switch" -> "A" -> "B"\nC = "switch" -> "C"\nD = "switch" -> "C" -> "D"'
  id: 'Attribute::TransformerSmartPlanDownStream::SequenceNr.Name' value: 'SequenceNr'
  id: 'Attribute::TransformerSmartPlanDownStream::TotalDuration.Description' value: 'Total duration spent on the component during the run'
  id: 'Attribute::TransformerSmartPlanDownStream::TotalDuration.Name' value: 'TotalDuration'
  id: 'Attribute::TransformerSmartPlanUpStream::CanBeCalled.Description' value: 'Whether or not this component can be called, given the selected start component.'
  id: 'Attribute::TransformerSmartPlanUpStream::CanBeCalled.Name' value: 'CanBeCalled'
  id: 'Attribute::TransformerSmartPlanUpStream::ComponentType.Description' value: 'A short name for this `LibOpt_Component` type.'
  id: 'Attribute::TransformerSmartPlanUpStream::ComponentType.Name' value: 'ComponentType'
  id: 'Attribute::TransformerSmartPlanUpStream::ConfigurationError.Description' value: 'The errors in the configuration.'
  id: 'Attribute::TransformerSmartPlanUpStream::ConfigurationError.Name' value: 'ConfigurationError'
  id: 'Attribute::TransformerSmartPlanUpStream::Depth.Description' value: 'The highest number of `LibOpt_Components` above this component.'
  id: 'Attribute::TransformerSmartPlanUpStream::Depth.Name' value: 'Depth'
  id: 'Attribute::TransformerSmartPlanUpStream::HasBreakpointEvent.Description' value: 'Whether the `LibOpt_Component` is waiting for a `LibOpt_BreakpointEvent`.'
  id: 'Attribute::TransformerSmartPlanUpStream::HasBreakpointEvent.Name' value: 'HasBreakpointEvent'
  id: 'Attribute::TransformerSmartPlanUpStream::HasNoBreakpoints.Description' value: 'Whether this `LibOpt_Component` has no `LibOpt_BreakpointConditional` attached to any of its component positions.'
  id: 'Attribute::TransformerSmartPlanUpStream::HasNoBreakpoints.Name' value: 'HasNoBreakpoints'
  id: 'Attribute::TransformerSmartPlanUpStream::HasNoDatasetCopies.Description' value: 'Whether this component has no `LibOpt_DatasetCopyConditional` attached to any of its component positions.'
  id: 'Attribute::TransformerSmartPlanUpStream::HasNoDatasetCopies.Name' value: 'HasNoDatasetCopies'
  id: 'Attribute::TransformerSmartPlanUpStream::HasUniqueName.Description' value: 'Whether the name of this `LibOpt_Component` is unique.'
  id: 'Attribute::TransformerSmartPlanUpStream::HasUniqueName.Name' value: 'HasUniqueName'
  id: 'Attribute::TransformerSmartPlanUpStream::IsCorrectlyConfigured.Name' value: 'IsCorrectlyConfigured'
  id: 'Attribute::TransformerSmartPlanUpStream::IsDatasetCopyEnabled.Description' value: "Used in the UI to set the 'Dataset copies are disabled' image icon in the 'Components' form and to show a constraint to the user.\n    \nAn icon will be shown when:\n1: There is a dataset copy on any component position of this component.\nand either \n2a: The optimizer run is ongoing and `LibOpt_Run.IsCreatingDatasetCopiesEnabled` is set to `false` on the related `LibOpt_Run` object.\n2b: The optimizer run has finished and `LibOpt_Optimizer.IsCreatingDatasetCopiesEnabled` is set to `false` on the related `LibOpt_Optimizer` object."
  id: 'Attribute::TransformerSmartPlanUpStream::IsDatasetCopyEnabled.Name' value: 'IsDatasetCopyEnabled'
  id: 'Attribute::TransformerSmartPlanUpStream::IsPostProcessing.Description' value: 'If this attribute is true when a user aborts an optimizer run, then the optimizer will first execute any post processing `LibOpt_LinkIteratorForEach` links before aborting the run. \n\nFor the `LibOpt_IteratorForEachLink` component, this attribute is true when `LibOpt_LinkIteratorForEach.IsPostProcessing` is true for any of its links. \nFor all other components, this attribute is always false.'
  id: 'Attribute::TransformerSmartPlanUpStream::IsPostProcessing.Name' value: 'IsPostProcessing'
  id: 'Attribute::TransformerSmartPlanUpStream::Name.Description' value: 'The name of the `LibOpt_Component`.\n\nThe name should be unique within the `LibOpt_Run`.'
  id: 'Attribute::TransformerSmartPlanUpStream::Name.Name' value: 'Name'
  id: 'Attribute::TransformerSmartPlanUpStream::NrOfEnabledBreakpoints.Description' value: 'The number of enabled `LibOpt_BreakpointConditionals` that are attached to the `LibOpt_BreakpointPositions` of this component. \nThis attribute is used in the `HasNoBreakpoints` constraint.'
  id: 'Attribute::TransformerSmartPlanUpStream::NrOfEnabledBreakpoints.Name' value: 'NrOfEnabledBreakpoints'
  id: 'Attribute::TransformerSmartPlanUpStream::NrOfEnabledDatasetCopies.Description' value: 'The number of enabled `LibOpt_DatasetCopyConditionals` that are attached to the `LibOpt_BreakpointPositions` of this component. \nThis attribute is used in the `HasNoDatasetCopies` constraint.'
  id: 'Attribute::TransformerSmartPlanUpStream::NrOfEnabledDatasetCopies.Name' value: 'NrOfEnabledDatasetCopies'
  id: 'Attribute::TransformerSmartPlanUpStream::NrTimesCalled.Description' value: 'The number of times this component was called (the DoTask method was called).'
  id: 'Attribute::TransformerSmartPlanUpStream::NrTimesCalled.Name' value: 'NrTimesCalled'
  id: 'Attribute::TransformerSmartPlanUpStream::Path.Description' value: 'A declarative attribute that contains one Path to this component.\nThis can be used to sort a list of components in a semi-logical way.'
  id: 'Attribute::TransformerSmartPlanUpStream::Path.Name' value: 'Path'
  id: 'Attribute::TransformerSmartPlanUpStream::SequenceNr.Description' value: 'The position in the sequence of the `LibOpt_Components` in the `LibOpt_Run`.\n\nThe `LibOpt_Components` are sorted according to the `Path`.\nThis is slightly different from sorting on the `Depth`.\n\nThe difference is that the `Path` keeps different branches in a `LibOpt_Switch` together, while sorting on `Depth` intertwines them.\n\nExample:\n\nIf we have a switch with 2 branches, A and C, with each a link to B and D respectively, the sorting order is different.\n\n switch -> A -> B\n switch -> C -> D\n \nNow the `Depth` (and the sorting on `Depth`) will be:\nswitch = 0\nA = 1\nC = 1\nB = 2\nD = 2\n\nThe `Path` (and sorting of the `Path`) will be:\nswitch = "switch"\nA = "switch" -> "A"\nB = "switch" -> "A" -> "B"\nC = "switch" -> "C"\nD = "switch" -> "C" -> "D"'
  id: 'Attribute::TransformerSmartPlanUpStream::SequenceNr.Name' value: 'SequenceNr'
  id: 'Attribute::TransformerSmartPlanUpStream::TotalDuration.Description' value: 'Total duration spent on the component during the run'
  id: 'Attribute::TransformerSmartPlanUpStream::TotalDuration.Name' value: 'TotalDuration'
  id: 'Attribute::TripInOptimizerRun::Details.Description' value: 'This attribute contains information on the details of this `LibOpt_ScopeElement`.'
  id: 'Attribute::TripInOptimizerRun::Details.Name' value: 'Details'
  id: 'Attribute::TripInOptimizerRun::Identifier.Description' value: 'An identifier for the `LibOpt_ScopeElement`.'
  id: 'Attribute::TripInOptimizerRun::Identifier.Name' value: 'Identifier'
  id: 'Attribute::TripInOptimizerRun::InternalIdentifier.Description' value: 'An identifier to uniquely identify this `LibOpt_ScopeElement`.'
  id: 'Attribute::TripInOptimizerRun::InternalIdentifier.Name' value: 'InternalIdentifier'
  id: 'Attribute::UnitInOptimizerRun::Details.Description' value: 'This attribute contains information on the details of this `LibOpt_ScopeElement`.'
  id: 'Attribute::UnitInOptimizerRun::Details.Name' value: 'Details'
  id: 'Attribute::UnitInOptimizerRun::Identifier.Description' value: 'An identifier for the `LibOpt_ScopeElement`.'
  id: 'Attribute::UnitInOptimizerRun::Identifier.Name' value: 'Identifier'
  id: 'Attribute::UnitInOptimizerRun::InternalIdentifier.Description' value: 'An identifier to uniquely identify this `LibOpt_ScopeElement`.'
  id: 'Attribute::UnitInOptimizerRun::InternalIdentifier.Name' value: 'InternalIdentifier'
  id: 'Attribute::UnitPeriodInOptimizerRun::Details.Description' value: 'This attribute contains information on the details of this `LibOpt_ScopeElement`.'
  id: 'Attribute::UnitPeriodInOptimizerRun::Details.Name' value: 'Details'
  id: 'Attribute::UnitPeriodInOptimizerRun::Identifier.Description' value: 'An identifier for the `LibOpt_ScopeElement`.'
  id: 'Attribute::UnitPeriodInOptimizerRun::Identifier.Name' value: 'Identifier'
  id: 'Attribute::UnitPeriodInOptimizerRun::InternalIdentifier.Description' value: 'An identifier to uniquely identify this `LibOpt_ScopeElement`.'
  id: 'Attribute::UnitPeriodInOptimizerRun::InternalIdentifier.Name' value: 'InternalIdentifier'
  id: 'Relation::LibOpt_Analysis::LibOpt_AnalysisCorrelation::AnalysisCorrelation.Name' value: 'AnalysisCorrelation'
  id: 'Relation::LibOpt_Analysis::LibOpt_AnalysisFilter::AnalysisFilter.Name' value: 'AnalysisFilter'
  id: 'Relation::LibOpt_Analysis::LibOpt_Run::Run.Description' value: 'This is public to allow its use in `LibOpt_Run::ToggleHasIterationsPrecondition`'
  id: 'Relation::LibOpt_Analysis::LibOpt_Run::Run.Name' value: 'Run'
  id: 'Relation::LibOpt_Analysis::LibOpt_UIAnalysisScopeElement::AnalysisScopeElement.Name' value: 'AnalysisScopeElement'
  id: 'Relation::LibOpt_AnalysisAttribute::LibOpt_AnalysisCorrelation::AsX.Name' value: 'AsX'
  id: 'Relation::LibOpt_AnalysisAttribute::LibOpt_AnalysisCorrelation::AsY.Name' value: 'AsY'
  id: 'Relation::LibOpt_AnalysisAttribute::LibOpt_AnalysisSnapshotAttribute::AnalysisSnapshotAttribute.Name' value: 'AnalysisSnapshotAttribute'
  id: 'Relation::LibOpt_AnalysisAttribute::LibOpt_Component::Component.Name' value: 'Component'
  id: 'Relation::LibOpt_AnalysisCorrelation::LibOpt_Analysis::Analysis.Name' value: 'Analysis'
  id: 'Relation::LibOpt_AnalysisCorrelation::LibOpt_AnalysisAttribute::X.Name' value: 'X'
  id: 'Relation::LibOpt_AnalysisCorrelation::LibOpt_AnalysisAttribute::Y.Name' value: 'Y'
  id: 'Relation::LibOpt_AnalysisCorrelation::LibOpt_AnalysisCorrelationPoint::AnalysisCorrelationPoint.Name' value: 'AnalysisCorrelationPoint'
  id: 'Relation::LibOpt_AnalysisCorrelation::LibOpt_AnalysisCorrelationPoint::AnalysisCorrelationPointOwned.Name' value: 'AnalysisCorrelationPointOwned'
  id: 'Relation::LibOpt_AnalysisCorrelation::LibOpt_AnalysisCorrelationPoint::Infinite.Name' value: 'Infinite'
  id: 'Relation::LibOpt_AnalysisCorrelation::LibOpt_AnalysisCorrelationPoint::Outlier.Name' value: 'Outlier'
  id: 'Relation::LibOpt_AnalysisCorrelationPoint::LibOpt_AnalysisCorrelation::AnalysisCorrelation.Name' value: 'AnalysisCorrelation'
  id: 'Relation::LibOpt_AnalysisCorrelationPoint::LibOpt_AnalysisCorrelation::AsInfinite.Name' value: 'AsInfinite'
  id: 'Relation::LibOpt_AnalysisCorrelationPoint::LibOpt_AnalysisCorrelation::AsOutlier.Name' value: 'AsOutlier'
  id: 'Relation::LibOpt_AnalysisCorrelationPoint::LibOpt_AnalysisCorrelation::Owner.Name' value: 'Owner'
  id: 'Relation::LibOpt_AnalysisCorrelationPoint::LibOpt_AnalysisSnapshotAttribute::X.Name' value: 'X'
  id: 'Relation::LibOpt_AnalysisCorrelationPoint::LibOpt_AnalysisSnapshotAttribute::Y.Name' value: 'Y'
  id: 'Relation::LibOpt_AnalysisFilter::LibOpt_Analysis::Analysis.Name' value: 'Analysis'
  id: 'Relation::LibOpt_AnalysisFilter::LibOpt_AnalysisFilter::Children.Name' value: 'Children'
  id: 'Relation::LibOpt_AnalysisFilter::LibOpt_AnalysisFilter::Parent.Name' value: 'Parent'
  id: 'Relation::LibOpt_AnalysisFilterAttribute::LibOpt_Component::Component.Name' value: 'Component'
  id: 'Relation::LibOpt_AnalysisFilterPath::LibOpt_Component::Component.Name' value: 'Component'
  id: 'Relation::LibOpt_AnalysisFilterScopeElement::LibOpt_ScopeElement::ScopeElement.Name' value: 'ScopeElement'
  id: 'Relation::LibOpt_AnalysisSnapshot::LibOpt_AnalysisSnapshotAttribute::AnalysisSnapshotAttribute.Name' value: 'AnalysisSnapshotAttribute'
  id: 'Relation::LibOpt_AnalysisSnapshot::LibOpt_SnapshotComponent::SnapshotComponent.Name' value: 'SnapshotComponent'
  id: 'Relation::LibOpt_AnalysisSnapshotAttribute::LibOpt_AnalysisAttribute::AnalysisAttribute.Name' value: 'AnalysisAttribute'
  id: 'Relation::LibOpt_AnalysisSnapshotAttribute::LibOpt_AnalysisCorrelationPoint::AsX.Name' value: 'AsX'
  id: 'Relation::LibOpt_AnalysisSnapshotAttribute::LibOpt_AnalysisCorrelationPoint::AsY.Name' value: 'AsY'
  id: 'Relation::LibOpt_AnalysisSnapshotAttribute::LibOpt_AnalysisSnapshot::AnalysisSnapshot.Name' value: 'AnalysisSnapshot'
  id: 'Relation::LibOpt_Anchor::LibOpt_Run::Run.Name' value: 'Run'
  id: 'Relation::LibOpt_Anchor::LibOpt_ScopeElement::ScopeElement.Name' value: 'ScopeElement'
  id: 'Relation::LibOpt_AnchorPicker::LibOpt_SelectorAnchorBase::SelectorAnchor.Name' value: 'SelectorAnchor'
  id: 'Relation::LibOpt_AnchorSet::LibOpt_AvailabilityCheckerAnchorSet::AvailabilityCheckerAnchorSet.Name' value: 'AvailabilityCheckerAnchorSet'
  id: 'Relation::LibOpt_AnchorSet::LibOpt_SelectorAnchorBase::SelectorAnchor.Name' value: 'SelectorAnchor'
  id: 'Relation::LibOpt_AvailabilityChecker::LibOpt_LinkPriority::LinkPriority.Name' value: 'LinkPriority'
  id: 'Relation::LibOpt_AvailabilityCheckerAnchorSet::LibOpt_AnchorSet::AnchorSet.Name' value: 'AnchorSet'
  id: 'Relation::LibOpt_Beacon::LibOpt_Optimization::Optimization.Name' value: 'Optimization'
  id: 'Relation::LibOpt_BreakpointConditional::LibOpt_BreakpointConditionalOnComponent::BreakpointConditionalOnComponent.Name' value: 'BreakpointConditionalOnComponent'
  id: 'Relation::LibOpt_BreakpointConditional::LibOpt_BreakpointEvent::BreakpointEvent.Name' value: 'BreakpointEvent'
  id: 'Relation::LibOpt_BreakpointConditionalOnComponent::LibOpt_BreakpointConditional::BreakpointConditional.Name' value: 'BreakpointConditional'
  id: 'Relation::LibOpt_BreakpointConditionalOnComponent::LibOpt_BreakpointPosition::ComponentPosition.Name' value: 'ComponentPosition'
  id: 'Relation::LibOpt_BreakpointConditionalOnComponent::LibOpt_Component::Component.Name' value: 'Component'
  id: 'Relation::LibOpt_BreakpointConditionalOnComponent::LibOpt_Run::Run.Name' value: 'Run'
  id: 'Relation::LibOpt_BreakpointEvent::LibOpt_BreakpointConditional::Breakpoint.Name' value: 'Breakpoint'
  id: 'Relation::LibOpt_BreakpointEvent::LibOpt_Run::Run.Name' value: 'Run'
  id: 'Relation::LibOpt_BreakpointEvent::LibOpt_Task::TaskContinue.Name' value: 'TaskContinue'
  id: 'Relation::LibOpt_BreakpointPosition::LibOpt_BreakpointConditionalOnComponent::BreakpointConditionalOnComponent.Name' value: 'BreakpointConditionalOnComponent'
  id: 'Relation::LibOpt_BreakpointPosition::LibOpt_BreakpointPosition::Next.Name' value: 'Next'
  id: 'Relation::LibOpt_BreakpointPosition::LibOpt_BreakpointPosition::Previous.Name' value: 'Previous'
  id: 'Relation::LibOpt_BreakpointPosition::LibOpt_Component::AsFirst.Name' value: 'AsFirst'
  id: 'Relation::LibOpt_BreakpointPosition::LibOpt_Component::AsLast.Name' value: 'AsLast'
  id: 'Relation::LibOpt_BreakpointPosition::LibOpt_Component::Component.Name' value: 'Component'
  id: 'Relation::LibOpt_BreakpointPosition::LibOpt_DatasetCopyConditional::DatasetCopyConditional.Description' value: 'This relation is mainly used in the `LibOpt_DatasetCopyConditional::CopyDatasetConditionally` method to create a dataset copy.\nThe relation is also used to prevent the AE from adding an additional `LibOpt_DatasetCopyConditional` to a component position, when another `LibOpt_DatasetCopyConditional` is already attached to that component position.\n\nWhen the `LibOpt_DatasetCopyConditional.IsFlaggedForDeletion()` attribute is `true`, then this relation is not set. \nPlease keep this in mind when using this relation.\nFor example, the `LibOpt_DatasetCopyConditional.DeleteCondition()` method needs to be executed for every `LibOpt_DatasetCopyConditional` after a component has finished executing. \nTherefore, this relation cannot be used to find all `LibOpt_DatasetCopyConditionals` for which we need to execute that method. \n\nNote: The `LibOpt_BreakpointPositions` of multiple runs are attached to the same `LibOpt_DatasetCopyConditional`.'
  id: 'Relation::LibOpt_BreakpointPosition::LibOpt_DatasetCopyConditional::DatasetCopyConditional.Name' value: 'DatasetCopyConditional'
  id: 'Relation::LibOpt_BreakpointPosition::LibOpt_Task::Task.Name' value: 'Task'
  id: 'Relation::LibOpt_Channel::LibOpt_ChannelNotify::ChannelNotify.Description' value: 'The owning relationship of the `LibOpt_ChannelNotify`.'
  id: 'Relation::LibOpt_Channel::LibOpt_ChannelNotify::ChannelNotify.Name' value: 'ChannelNotify'
  id: 'Relation::LibOpt_Channel::LibOpt_ChannelReader::ChannelReader.Description' value: 'The relation that owns the objects that allow reading from the `LibOpt_Channel`.'
  id: 'Relation::LibOpt_Channel::LibOpt_ChannelReader::ChannelReader.Name' value: 'ChannelReader'
  id: 'Relation::LibOpt_Channel::LibOpt_ChannelWriter::ChannelWriter.Description' value: 'The relation that owns the objects that allow writing from the `LibOpt_Channel`.'
  id: 'Relation::LibOpt_Channel::LibOpt_ChannelWriter::ChannelWriter.Name' value: 'ChannelWriter'
  id: 'Relation::LibOpt_Channel::LibOpt_Run::Run.Description' value: 'The channels that allow components in the `LibOpt_Run` to communicate between one another.'
  id: 'Relation::LibOpt_Channel::LibOpt_Run::Run.Name' value: 'Run'
  id: 'Relation::LibOpt_ChannelNotify::LibOpt_Channel::Channel.Description' value: 'The owning relationship of the `LibOpt_ChannelNotify`.'
  id: 'Relation::LibOpt_ChannelNotify::LibOpt_Channel::Channel.Name' value: 'Channel'
  id: 'Relation::LibOpt_ChannelNotify::LibOpt_Link::Link.Description' value: 'When the `LibOpt_Link` is crossed downwards, an `Algorithm` needs to be created for the related `LibOpt_Channel`.\nWhen it is crossed again in the opposite direction, the `Algorithm` needs to be removed.'
  id: 'Relation::LibOpt_ChannelNotify::LibOpt_Link::Link.Name' value: 'Link'
  id: 'Relation::LibOpt_ChannelReader::LibOpt_Channel::Channel.Description' value: 'The relation that owns the objects that allow reading from the `LibOpt_Channel`.'
  id: 'Relation::LibOpt_ChannelReader::LibOpt_Channel::Channel.Name' value: 'Channel'
  id: 'Relation::LibOpt_ChannelReader::LibOpt_Component::Component.Description' value: 'The objects that a `LibOpt_Component` can use to read information from a `LibOpt_Channel`.\n\nDo not borrow a `LibOpt_ChannelReader` from another component, as this may result in problems.'
  id: 'Relation::LibOpt_ChannelReader::LibOpt_Component::Component.Name' value: 'Component'
  id: 'Relation::LibOpt_ChannelWriter::LibOpt_Channel::Channel.Description' value: 'The relation that owns the objects that allow writing from the `LibOpt_Channel`.'
  id: 'Relation::LibOpt_ChannelWriter::LibOpt_Channel::Channel.Name' value: 'Channel'
  id: 'Relation::LibOpt_ChannelWriter::LibOpt_Component::Component.Description' value: 'The objects that a `LibOpt_Component` can use to write information to a `LibOpt_Channel`.\n\nDo not borrow a `LibOpt_ChannelWriter` from another component, as this may result in problems.'
  id: 'Relation::LibOpt_ChannelWriter::LibOpt_Component::Component.Name' value: 'Component'
  id: 'Relation::LibOpt_Component::LibOpt_AnalysisAttribute::AnalysisSnapshotType.Name' value: 'AnalysisSnapshotType'
  id: 'Relation::LibOpt_Component::LibOpt_AnalysisFilterAttribute::AnalysisFilterAttribute.Name' value: 'AnalysisFilterAttribute'
  id: 'Relation::LibOpt_Component::LibOpt_AnalysisFilterPath::AnalysisFilterPath.Name' value: 'AnalysisFilterPath'
  id: 'Relation::LibOpt_Component::LibOpt_BreakpointConditionalOnComponent::BreakpointConditionalOnComponent.Name' value: 'BreakpointConditionalOnComponent'
  id: 'Relation::LibOpt_Component::LibOpt_BreakpointPosition::ComponentPosition.Name' value: 'ComponentPosition'
  id: 'Relation::LibOpt_Component::LibOpt_BreakpointPosition::FirstComponentPosition.Name' value: 'FirstComponentPosition'
  id: 'Relation::LibOpt_Component::LibOpt_BreakpointPosition::LastComponentPosition.Name' value: 'LastComponentPosition'
  id: 'Relation::LibOpt_Component::LibOpt_ChannelReader::ChannelReader.Description' value: 'The objects that a `LibOpt_Component` can use to read information from a `LibOpt_Channel`.\n\nDo not borrow a `LibOpt_ChannelReader` from another component, as this may result in problems.'
  id: 'Relation::LibOpt_Component::LibOpt_ChannelReader::ChannelReader.Name' value: 'ChannelReader'
  id: 'Relation::LibOpt_Component::LibOpt_ChannelWriter::ChannelWriter.Description' value: 'The objects that a `LibOpt_Component` can use to write information to a `LibOpt_Channel`.\n\nDo not borrow a `LibOpt_ChannelWriter` from another component, as this may result in problems.'
  id: 'Relation::LibOpt_Component::LibOpt_ChannelWriter::ChannelWriter.Name' value: 'ChannelWriter'
  id: 'Relation::LibOpt_Component::LibOpt_Component::NextComponent.Name' value: 'NextComponent'
  id: 'Relation::LibOpt_Component::LibOpt_Component::NextSortedByName.Name' value: 'NextSortedByName'
  id: 'Relation::LibOpt_Component::LibOpt_Component::PreviousComponent.Name' value: 'PreviousComponent'
  id: 'Relation::LibOpt_Component::LibOpt_Component::PreviousSortedByName.Name' value: 'PreviousSortedByName'
  id: 'Relation::LibOpt_Component::LibOpt_Link::FirstDestination.Name' value: 'FirstDestination'
  id: 'Relation::LibOpt_Component::LibOpt_Link::LastDestination.Name' value: 'LastDestination'
  id: 'Relation::LibOpt_Component::LibOpt_Link::Parents.Name' value: 'Parents'
  id: 'Relation::LibOpt_Component::LibOpt_Run::AsFirstComponent.Name' value: 'AsFirstComponent'
  id: 'Relation::LibOpt_Component::LibOpt_Run::AsFirstSortedByName.Name' value: 'AsFirstSortedByName'
  id: 'Relation::LibOpt_Component::LibOpt_Run::AsLastComponent.Name' value: 'AsLastComponent'
  id: 'Relation::LibOpt_Component::LibOpt_Run::AsLastSortedByName.Name' value: 'AsLastSortedByName'
  id: 'Relation::LibOpt_Component::LibOpt_Run::AsSortedByName.Name' value: 'AsSortedByName'
  id: 'Relation::LibOpt_Component::LibOpt_Run::AsStartComponent.Name' value: 'AsStartComponent'
  id: 'Relation::LibOpt_Component::LibOpt_Run::Run.Name' value: 'Run'
  id: 'Relation::LibOpt_Component::LibOpt_SnapshotComponent::FirstSnapshot.Name' value: 'FirstSnapshot'
  id: 'Relation::LibOpt_Component::LibOpt_SnapshotComponent::LastSnapshot.Name' value: 'LastSnapshot'
  id: 'Relation::LibOpt_Component::LibOpt_SnapshotComponent::SnapshotComponent.Name' value: 'SnapshotComponent'
  id: 'Relation::LibOpt_Component::LibOpt_Statistic::Statistic.Description' value: 'The `LibOpt_Statistics` that collect useful values about this `LibOpt_Component`.\n\nSome subclasses of `LibOpt_Statistic` are used to aggregate values from their linked `LibOpt_Statistics`, rather from a single `LibOpt_Component`.\nFor such subclasses, the `LibOpt_Statistic.Component` relation would be null.'
  id: 'Relation::LibOpt_Component::LibOpt_Statistic::Statistic.Name' value: 'Statistic'
  id: 'Relation::LibOpt_Component::LibOpt_Task::Task.Name' value: 'Task'
  id: 'Relation::LibOpt_Component::LibOpt_UIGraphNode::UIGraphNode.Name' value: 'UIGraphNode'
  id: 'Relation::LibOpt_ComponentParentTemp::LibOpt_LinkSingle::Next.Name' value: 'Next'
  id: 'Relation::LibOpt_Conditional::LibOpt_Optimization::Optimization.Name' value: 'Optimization'
  id: 'Relation::LibOpt_ControllerRun::LibOpt_ControllerRun::NextAsUnstartedRun.Name' value: 'NextAsUnstartedRun'
  id: 'Relation::LibOpt_ControllerRun::LibOpt_ControllerRun::NextRun.Name' value: 'NextRun'
  id: 'Relation::LibOpt_ControllerRun::LibOpt_ControllerRun::PreviousAsUnstartedRun.Name' value: 'PreviousAsUnstartedRun'
  id: 'Relation::LibOpt_ControllerRun::LibOpt_ControllerRun::PreviousRun.Name' value: 'PreviousRun'
  id: 'Relation::LibOpt_ControllerRun::LibOpt_OptimizerRunController::AsFirstAsUnstartedRun.Name' value: 'AsFirstAsUnstartedRun'
  id: 'Relation::LibOpt_ControllerRun::LibOpt_OptimizerRunController::AsFirstRun.Name' value: 'AsFirstRun'
  id: 'Relation::LibOpt_ControllerRun::LibOpt_OptimizerRunController::AsLastAsUnstartedRun.Name' value: 'AsLastAsUnstartedRun'
  id: 'Relation::LibOpt_ControllerRun::LibOpt_OptimizerRunController::AsLastRun.Name' value: 'AsLastRun'
  id: 'Relation::LibOpt_ControllerRun::LibOpt_OptimizerRunController::OptimizerRunController.Name' value: 'OptimizerRunController'
  id: 'Relation::LibOpt_ControllerRun::LibOpt_OptimizerRunController::OptimizerRunControllerAsUnstartedRun.Name' value: 'OptimizerRunControllerAsUnstartedRun'
  id: 'Relation::LibOpt_CurrentTransaction::LibOpt_Optimization::Optimization.Name' value: 'Optimization'
  id: 'Relation::LibOpt_CurrentTransaction::LibOpt_Task::FirstTask.Name' value: 'FirstTask'
  id: 'Relation::LibOpt_CurrentTransaction::LibOpt_Task::LastTask.Name' value: 'LastTask'
  id: 'Relation::LibOpt_CurrentTransaction::LibOpt_Task::Task.Name' value: 'Task'
  id: 'Relation::LibOpt_DatasetCopyConditional::LibOpt_BreakpointPosition::ComponentPosition.Description' value: 'This relation is mainly used in the `LibOpt_DatasetCopyConditional::CopyDatasetConditionally` method to create a dataset copy.\nThe relation is also used to prevent the AE from adding an additional `LibOpt_DatasetCopyConditional` to a component position, when another `LibOpt_DatasetCopyConditional` is already attached to that component position.\n\nWhen the `LibOpt_DatasetCopyConditional.IsFlaggedForDeletion()` attribute is `true`, then this relation is not set. \nPlease keep this in mind when using this relation.\nFor example, the `LibOpt_DatasetCopyConditional.DeleteCondition()` method needs to be executed for every `LibOpt_DatasetCopyConditional` after a component has finished executing. \nTherefore, this relation cannot be used to find all `LibOpt_DatasetCopyConditionals` for which we need to execute that method. \n\nNote: The `LibOpt_BreakpointPositions` of multiple runs are attached to the same `LibOpt_DatasetCopyConditional`.'
  id: 'Relation::LibOpt_DatasetCopyConditional::LibOpt_BreakpointPosition::ComponentPosition.Name' value: 'ComponentPosition'
  id: 'Relation::LibOpt_DatasetCopyConditional::LibOpt_SnapshotReplannableCopyDataset::SnapshotReplannableCopyDataset.Description' value: 'This relation contains all `LibOpt_SnapshotReplannableCopyDatasets` that were created when `true` is returned by the `LibOpt_DatasetCopyConditional.CreateCondition` method of this `LibOpt_DatasetCopyConditional` object.\n\nWhen the `LibOpt_DatasetCopyConditional.IsFlaggedForDeletion` attribute is `true` and when the `LibOpt_SnapshotReplannableCopyDataset.HasExecutedDoFinalizeDatasetCopyDelete` attribute is `true` for all snapshots in this relation, then the `LibOpt_DatasetCopyConditional` object will be deleted in the `LibOpt_DatasetCopyConditional.DeleteWhenFlagged` static method.'
  id: 'Relation::LibOpt_DatasetCopyConditional::LibOpt_SnapshotReplannableCopyDataset::SnapshotReplannableCopyDataset.Name' value: 'SnapshotReplannableCopyDataset'
  id: 'Relation::LibOpt_DistributedMessage::LibOpt_TaskTransporterDistributed::TaskTransporterDistributed.Name' value: 'TaskTransporterDistributed'
  id: 'Relation::LibOpt_Group::LibOpt_Optimization::Optimization.Description' value: 'The set of groups to which scope elements can belong within a scope.'
  id: 'Relation::LibOpt_Group::LibOpt_Optimization::Optimization.Name' value: 'Optimization'
  id: 'Relation::LibOpt_Group::LibOpt_ScopeElementOnScope::ScopeElementOnScope.Description' value: 'For `LibOpt_ScopeFat`.\n\nThe `LibOpt_Group` to which the `LibOpt_ScopeElement` related to the `LibOpt_ScopeElementOnScope` belongs.'
  id: 'Relation::LibOpt_Group::LibOpt_ScopeElementOnScope::ScopeElementOnScope.Name' value: 'ScopeElementOnScope'
  id: 'Relation::LibOpt_Group::LibOpt_ScopeSharedOnScope::ScopeSharedOnScope.Description' value: 'For `LibOpt_ScopeThin`.\n\nThe `LibOpt_Group` to which the `LibOpt_ScopeElements` related to the `LibOpt_ScopeSharedOnScope` belong.'
  id: 'Relation::LibOpt_Group::LibOpt_ScopeSharedOnScope::ScopeSharedOnScope.Name' value: 'ScopeSharedOnScope'
  id: 'Relation::LibOpt_Issue::LibOpt_Issue::NextOnRun.Name' value: 'NextOnRun'
  id: 'Relation::LibOpt_Issue::LibOpt_Issue::PreviousOnRun.Name' value: 'PreviousOnRun'
  id: 'Relation::LibOpt_Issue::LibOpt_Run::AsFirstOnRun.Name' value: 'AsFirstOnRun'
  id: 'Relation::LibOpt_Issue::LibOpt_Run::AsLastOnRun.Name' value: 'AsLastOnRun'
  id: 'Relation::LibOpt_Issue::LibOpt_Run::Run.Description' value: 'The `LibOpt_Issues` which highlight potential issues about this `LibOpt_Run`.'
  id: 'Relation::LibOpt_Issue::LibOpt_Run::Run.Name' value: 'Run'
  id: 'Relation::LibOpt_Issue::LibOpt_Snapshot::Snapshot.Description' value: 'The `LibOpt_Issues` which highlight potential issues about this `LibOpt_Snapshot`.'
  id: 'Relation::LibOpt_Issue::LibOpt_Snapshot::Snapshot.Name' value: 'Snapshot'
  id: 'Relation::LibOpt_Issue::LibOpt_Statistic::Statistic.Description' value: 'The `LibOpt_Issues` created based on the values collected by this `LibOpt_Statistic`.'
  id: 'Relation::LibOpt_Issue::LibOpt_Statistic::Statistic.Name' value: 'Statistic'
  id: 'Relation::LibOpt_Issue::LibOpt_SuboptimizerScopeElement::SuboptimizerScopeElement.Description' value: 'The `LibOpt_Issues` which highlight potential issues about this `LibOpt_SuboptimizerScopeElement`.'
  id: 'Relation::LibOpt_Issue::LibOpt_SuboptimizerScopeElement::SuboptimizerScopeElement.Name' value: 'SuboptimizerScopeElement'
  id: 'Relation::LibOpt_Iteration::LibOpt_Iteration::Next.Name' value: 'Next'
  id: 'Relation::LibOpt_Iteration::LibOpt_Iteration::Previous.Name' value: 'Previous'
  id: 'Relation::LibOpt_Iteration::LibOpt_IterationPartNM::FirstIterationPart.Description' value: 'The iteration parts that are not also in the previous iteration.\n\nWe can use this to highlight the new snapshots in this iteration.'
  id: 'Relation::LibOpt_Iteration::LibOpt_IterationPartNM::FirstIterationPart.Name' value: 'FirstIterationPart'
  id: 'Relation::LibOpt_Iteration::LibOpt_IterationPartNM::IterationPartNM.Name' value: 'IterationPartNM'
  id: 'Relation::LibOpt_Iteration::LibOpt_Run::AsFirst.Name' value: 'AsFirst'
  id: 'Relation::LibOpt_Iteration::LibOpt_Run::AsLast.Name' value: 'AsLast'
  id: 'Relation::LibOpt_Iteration::LibOpt_Run::Run.Name' value: 'Run'
  id: 'Relation::LibOpt_Iteration::LibOpt_Snapshot::SnapshotAsFirst.Description' value: 'First iteration the snapshot occurs in'
  id: 'Relation::LibOpt_Iteration::LibOpt_Snapshot::SnapshotAsFirst.Name' value: 'SnapshotAsFirst'
  id: 'Relation::LibOpt_Iteration::LibOpt_SnapshotComponent::SnapshotOwning.Name' value: 'SnapshotOwning'
  id: 'Relation::LibOpt_Iteration::LibOpt_SnapshotKPI::FirstSnapshotKPI.Name' value: 'FirstSnapshotKPI'
  id: 'Relation::LibOpt_Iteration::LibOpt_SnapshotKPI::LastSnapshotKPI.Name' value: 'LastSnapshotKPI'
  id: 'Relation::LibOpt_Iteration::LibOpt_SnapshotSuboptimizer::LastSnapshotSuboptimizer.Description' value: 'The last `LibOpt_SnapshotSuboptimizer` that is linked to this `LibOpt_Iteration`.'
  id: 'Relation::LibOpt_Iteration::LibOpt_SnapshotSuboptimizer::LastSnapshotSuboptimizer.Name' value: 'LastSnapshotSuboptimizer'
  id: 'Relation::LibOpt_IterationPart::LibOpt_IterationPart::Children.Name' value: 'Children'
  id: 'Relation::LibOpt_IterationPart::LibOpt_IterationPart::Parent.Name' value: 'Parent'
  id: 'Relation::LibOpt_IterationPart::LibOpt_IterationPartNM::IterationPartNM.Name' value: 'IterationPartNM'
  id: 'Relation::LibOpt_IterationPart::LibOpt_Snapshot::Snapshot.Name' value: 'Snapshot'
  id: 'Relation::LibOpt_IterationPart::LibOpt_SnapshotComponent::FirstSnapshotInIterationPart.Name' value: 'FirstSnapshotInIterationPart'
  id: 'Relation::LibOpt_IterationPart::LibOpt_SnapshotComponent::LastSnapshotInIterationPart.Name' value: 'LastSnapshotInIterationPart'
  id: 'Relation::LibOpt_IterationPart::LibOpt_SnapshotComponent::Owner.Name' value: 'Owner'
  id: 'Relation::LibOpt_IterationPart::LibOpt_SnapshotComponent::SnapshotComponent.Name' value: 'SnapshotComponent'
  id: 'Relation::LibOpt_IterationPartNM::LibOpt_Iteration::AsFirstIterationPart.Description' value: 'The iteration parts that are not also in the previous iteration.\n\nWe can use this to highlight the new snapshots in this iteration.'
  id: 'Relation::LibOpt_IterationPartNM::LibOpt_Iteration::AsFirstIterationPart.Name' value: 'AsFirstIterationPart'
  id: 'Relation::LibOpt_IterationPartNM::LibOpt_Iteration::Iteration.Name' value: 'Iteration'
  id: 'Relation::LibOpt_IterationPartNM::LibOpt_IterationPart::IterationPart.Name' value: 'IterationPart'
  id: 'Relation::LibOpt_IterationThread::LibOpt_Run::Run.Description' value: 'IterationThreads belonging to this run'
  id: 'Relation::LibOpt_IterationThread::LibOpt_Run::Run.Name' value: 'Run'
  id: 'Relation::LibOpt_IterationThread::LibOpt_SnapshotComponent::AsExecutedSnapshotComponent.Description' value: 'IterationThread that is executing the SnapshotComponent'
  id: 'Relation::LibOpt_IterationThread::LibOpt_SnapshotComponent::AsExecutedSnapshotComponent.Name' value: 'AsExecutedSnapshotComponent'
  id: 'Relation::LibOpt_IterationThread::LibOpt_SnapshotComponent::FirstSnapshot.Name' value: 'FirstSnapshot'
  id: 'Relation::LibOpt_IterationThread::LibOpt_SnapshotComponent::LastSnapshot.Name' value: 'LastSnapshot'
  id: 'Relation::LibOpt_IteratorForEachLink::LibOpt_LinkIteratorForEach::First.Name' value: 'First'
  id: 'Relation::LibOpt_IteratorForEachLink::LibOpt_LinkIteratorForEach::Last.Name' value: 'Last'
  id: 'Relation::LibOpt_IteratorForEachLink::LibOpt_LinkIteratorForEach::LinkForEach.Name' value: 'LinkForEach'
  id: 'Relation::LibOpt_IteratorForEachScope::LibOpt_IteratorScopeProvider::IteratorScopeProvider.Description' value: 'Relation between the iterator and the type that provides the scope for the iteration'
  id: 'Relation::LibOpt_IteratorForEachScope::LibOpt_IteratorScopeProvider::IteratorScopeProvider.Name' value: 'IteratorScopeProvider'
  id: 'Relation::LibOpt_IteratorParent::LibOpt_LinkIteratorSingle::NextByIteratorParent.Description' value: 'This relation replaces the inherited (but functionally invalid) `LibOpt_ComponentParentTemp.Next` relation.\nIn a future release, `LibOpt_ComponentParentTemp` will no more be an ancestor of `LibOpt_Iterator` and this relation can be renamed to `Next`.'
  id: 'Relation::LibOpt_IteratorParent::LibOpt_LinkIteratorSingle::NextByIteratorParent.Name' value: 'NextByIteratorParent'
  id: 'Relation::LibOpt_IteratorScopeProvider::LibOpt_IteratorForEachScope::IteratorForEachScope.Description' value: 'Relation between the iterator and the type that provides the scope for the iteration'
  id: 'Relation::LibOpt_IteratorScopeProvider::LibOpt_IteratorForEachScope::IteratorForEachScope.Name' value: 'IteratorForEachScope'
  id: 'Relation::LibOpt_IteratorUntil::LibOpt_StopCriterion::StopCriterion.Name' value: 'StopCriterion'
  id: 'Relation::LibOpt_KPI::LibOpt_KPIOnRollbackKPI::KPIOnRollbackKPI.Description' value: 'Links a `LibOpt_RollbackKPI` to a `LibOpt_KPI`'
  id: 'Relation::LibOpt_KPI::LibOpt_KPIOnRollbackKPI::KPIOnRollbackKPI.Name' value: 'KPIOnRollbackKPI'
  id: 'Relation::LibOpt_KPI::LibOpt_KPIOnRun::KPIOnRun.Description' value: 'The `LibOpt_KPI` that is object connects to its `LibOpt_Run`'
  id: 'Relation::LibOpt_KPI::LibOpt_KPIOnRun::KPIOnRun.Name' value: 'KPIOnRun'
  id: 'Relation::LibOpt_KPI::LibOpt_Optimization::Optimization.Name' value: 'Optimization'
  id: 'Relation::LibOpt_KPI::LibOpt_SnapshotKPIPart::SnapshotKPIPart.Description' value: 'Links the `LibOpt_KPI` with the `LibOpt_SnapshotKPIPart` that stores its value'
  id: 'Relation::LibOpt_KPI::LibOpt_SnapshotKPIPart::SnapshotKPIPart.Name' value: 'SnapshotKPIPart'
  id: 'Relation::LibOpt_KPIOnRollbackKPI::LibOpt_KPI::KPI.Description' value: 'Links a `LibOpt_RollbackKPI` to a `LibOpt_KPI`'
  id: 'Relation::LibOpt_KPIOnRollbackKPI::LibOpt_KPI::KPI.Name' value: 'KPI'
  id: 'Relation::LibOpt_KPIOnRollbackKPI::LibOpt_KPIOnRollbackKPI::Next.Name' value: 'Next'
  id: 'Relation::LibOpt_KPIOnRollbackKPI::LibOpt_KPIOnRollbackKPI::Previous.Name' value: 'Previous'
  id: 'Relation::LibOpt_KPIOnRollbackKPI::LibOpt_RollbackKPIDefault::AsFirst.Name' value: 'AsFirst'
  id: 'Relation::LibOpt_KPIOnRollbackKPI::LibOpt_RollbackKPIDefault::AsLast.Name' value: 'AsLast'
  id: 'Relation::LibOpt_KPIOnRollbackKPI::LibOpt_RollbackKPIDefault::RollbackKPIDefault.Description' value: 'Links a `LibOpt_RollbackKPI` to a `LibOpt_KPI`'
  id: 'Relation::LibOpt_KPIOnRollbackKPI::LibOpt_RollbackKPIDefault::RollbackKPIDefault.Name' value: 'RollbackKPIDefault'
  id: 'Relation::LibOpt_KPIOnRun::LibOpt_KPI::KPI.Description' value: 'The `LibOpt_KPI` that is object connects to its `LibOpt_Run`'
  id: 'Relation::LibOpt_KPIOnRun::LibOpt_KPI::KPI.Name' value: 'KPI'
  id: 'Relation::LibOpt_KPIOnRun::LibOpt_Run::Run.Description' value: 'The `LibOpt_Run` this object belong to.'
  id: 'Relation::LibOpt_KPIOnRun::LibOpt_Run::Run.Name' value: 'Run'
  id: 'Relation::LibOpt_Link::LibOpt_ChannelNotify::ChannelNotify.Description' value: 'When the `LibOpt_Link` is crossed downwards, an `Algorithm` needs to be created for the related `LibOpt_Channel`.\nWhen it is crossed again in the opposite direction, the `Algorithm` needs to be removed.'
  id: 'Relation::LibOpt_Link::LibOpt_ChannelNotify::ChannelNotify.Name' value: 'ChannelNotify'
  id: 'Relation::LibOpt_Link::LibOpt_Component::AsFirstDestination.Name' value: 'AsFirstDestination'
  id: 'Relation::LibOpt_Link::LibOpt_Component::AsLastDestination.Name' value: 'AsLastDestination'
  id: 'Relation::LibOpt_Link::LibOpt_Component::Destination.Name' value: 'Destination'
  id: 'Relation::LibOpt_Link::LibOpt_Link::NextDestination.Name' value: 'NextDestination'
  id: 'Relation::LibOpt_Link::LibOpt_Link::PreviousDestination.Name' value: 'PreviousDestination'
  id: 'Relation::LibOpt_Link::LibOpt_SnapshotSwitch::SnapshotSwitch.Name' value: 'SnapshotSwitch'
  id: 'Relation::LibOpt_Link::LibOpt_Task::Task.Description' value: 'The `LibOpt_Task` was created by traversing this `LibOpt_Link`.'
  id: 'Relation::LibOpt_Link::LibOpt_Task::Task.Name' value: 'Task'
  id: 'Relation::LibOpt_Link::LibOpt_TaskTransporter::TaskTransporter.Name' value: 'TaskTransporter'
  id: 'Relation::LibOpt_Link::LibOpt_UIGraphArc::First.Name' value: 'First'
  id: 'Relation::LibOpt_Link::LibOpt_UIGraphArc::Last.Name' value: 'Last'
  id: 'Relation::LibOpt_Link::LibOpt_UIGraphArc::UIGraphArc.Name' value: 'UIGraphArc'
  id: 'Relation::LibOpt_LinkIteratorForEach::LibOpt_IteratorForEachLink::AsFirst.Name' value: 'AsFirst'
  id: 'Relation::LibOpt_LinkIteratorForEach::LibOpt_IteratorForEachLink::AsLast.Name' value: 'AsLast'
  id: 'Relation::LibOpt_LinkIteratorForEach::LibOpt_IteratorForEachLink::IteratorForEach.Name' value: 'IteratorForEach'
  id: 'Relation::LibOpt_LinkIteratorForEach::LibOpt_LinkIteratorForEach::Next.Name' value: 'Next'
  id: 'Relation::LibOpt_LinkIteratorForEach::LibOpt_LinkIteratorForEach::Previous.Name' value: 'Previous'
  id: 'Relation::LibOpt_LinkIteratorSingle::LibOpt_IteratorParent::OriginOwner.Description' value: 'This relation replaces the inherited (but functionally invalid) `LibOpt_ComponentParentTemp.Next` relation.\nIn a future release, `LibOpt_ComponentParentTemp` will no more be an ancestor of `LibOpt_Iterator` and this relation can be renamed to `Next`.'
  id: 'Relation::LibOpt_LinkIteratorSingle::LibOpt_IteratorParent::OriginOwner.Name' value: 'OriginOwner'
  id: 'Relation::LibOpt_LinkPriority::LibOpt_AvailabilityChecker::AvailabilityChecker.Name' value: 'AvailabilityChecker'
  id: 'Relation::LibOpt_LinkPriority::LibOpt_LinkPriority::Next.Name' value: 'Next'
  id: 'Relation::LibOpt_LinkPriority::LibOpt_LinkPriority::Previous.Name' value: 'Previous'
  id: 'Relation::LibOpt_LinkPriority::LibOpt_SwitchPriority::AsFirst.Name' value: 'AsFirst'
  id: 'Relation::LibOpt_LinkPriority::LibOpt_SwitchPriority::AsLast.Name' value: 'AsLast'
  id: 'Relation::LibOpt_LinkPriority::LibOpt_SwitchPriority::SwitchPriority.Name' value: 'SwitchPriority'
  id: 'Relation::LibOpt_LinkProbability::LibOpt_LinkProbabilityDynamicWeight::LinkProbabilityDynamicWeight.Name' value: 'LinkProbabilityDynamicWeight'
  id: 'Relation::LibOpt_LinkProbability::LibOpt_SwitchProbability::SwitchProbability.Name' value: 'SwitchProbability'
  id: 'Relation::LibOpt_LinkProbabilityDynamicWeight::LibOpt_LinkProbability::LinkProbability.Name' value: 'LinkProbability'
  id: 'Relation::LibOpt_LinkRoundRobin::LibOpt_LinkRoundRobin::Next.Name' value: 'Next'
  id: 'Relation::LibOpt_LinkRoundRobin::LibOpt_LinkRoundRobin::Previous.Name' value: 'Previous'
  id: 'Relation::LibOpt_LinkRoundRobin::LibOpt_SwitchRoundRobin::AsFirst.Name' value: 'AsFirst'
  id: 'Relation::LibOpt_LinkRoundRobin::LibOpt_SwitchRoundRobin::AsLast.Name' value: 'AsLast'
  id: 'Relation::LibOpt_LinkRoundRobin::LibOpt_SwitchRoundRobin::SwitchRoundRobin.Name' value: 'SwitchRoundRobin'
  id: 'Relation::LibOpt_LinkSingle::LibOpt_ComponentParentTemp::OriginOwner.Name' value: 'OriginOwner'
  id: 'Relation::LibOpt_LinkStart::LibOpt_Run::Run.Description' value: 'The `LibOpt_Link` from the run to the start component.'
  id: 'Relation::LibOpt_LinkStart::LibOpt_Run::Run.Name' value: 'Run'
  id: 'Relation::LibOpt_NeighborhoodCreator::LibOpt_SelectorAnchorBase::SelectorAnchor.Name' value: 'SelectorAnchor'
  id: 'Relation::LibOpt_Optimization::LibOpt_Beacon::Beacon.Name' value: 'Beacon'
  id: 'Relation::LibOpt_Optimization::LibOpt_Conditional::Conditional.Name' value: 'Conditional'
  id: 'Relation::LibOpt_Optimization::LibOpt_CurrentTransaction::CurrentTransaction.Name' value: 'CurrentTransaction'
  id: 'Relation::LibOpt_Optimization::LibOpt_Group::Group.Description' value: 'The set of groups to which scope elements can belong within a scope.'
  id: 'Relation::LibOpt_Optimization::LibOpt_Group::Group.Name' value: 'Group'
  id: 'Relation::LibOpt_Optimization::LibOpt_KPI::KPI.Name' value: 'KPI'
  id: 'Relation::LibOpt_Optimization::LibOpt_Optimizer::Optimizer.Name' value: 'Optimizer'
  id: 'Relation::LibOpt_Optimization::LibOpt_ScopeElement::ScopeElement.Name' value: 'ScopeElement'
  id: 'Relation::LibOpt_Optimization::LibOpt_ScopeElementDeleted::ScopeElementDeleted.Name' value: 'ScopeElementDeleted'
  id: 'Relation::LibOpt_Optimization::LibOpt_StoredAlgorithm::StoredAlgorithm.Name' value: 'StoredAlgorithm'
  id: 'Relation::LibOpt_Optimizer::LibOpt_Optimization::Optimization.Name' value: 'Optimization'
  id: 'Relation::LibOpt_Optimizer::LibOpt_Run::Run.Description' value: 'The relation `LibOpt_Run` to `LibOpt_Optimizer` is purposely set to protected. The `LibOpt_Run` should never know how it was created. This way the run is completely independent of the optimizer that created it, meaning that it is easy to reuse all components of the run in another optimizer.\nSettings should be stored on the individual `LibOpt_Components`.\n\nIf you need to get to your dataset type, you can use the `Optimization` method on `LibOpt_Run` or `LibOpt_Component`.'
  id: 'Relation::LibOpt_Optimizer::LibOpt_Run::Run.Name' value: 'Run'
  id: 'Relation::LibOpt_Optimizer::LibOpt_Settings::ActiveSettings.Name' value: 'ActiveSettings'
  id: 'Relation::LibOpt_Optimizer::LibOpt_Settings::Settings.Name' value: 'Settings'
  id: 'Relation::LibOpt_OptimizerRunController::LibOpt_ControllerRun::ControllerRun.Name' value: 'ControllerRun'
  id: 'Relation::LibOpt_OptimizerRunController::LibOpt_ControllerRun::ControllerRunUnstarted.Name' value: 'ControllerRunUnstarted'
  id: 'Relation::LibOpt_OptimizerRunController::LibOpt_ControllerRun::FirstRun.Name' value: 'FirstRun'
  id: 'Relation::LibOpt_OptimizerRunController::LibOpt_ControllerRun::FirstUnstartedRun.Name' value: 'FirstUnstartedRun'
  id: 'Relation::LibOpt_OptimizerRunController::LibOpt_ControllerRun::LastRun.Name' value: 'LastRun'
  id: 'Relation::LibOpt_OptimizerRunController::LibOpt_ControllerRun::LastUnstartedRun.Name' value: 'LastUnstartedRun'
  id: 'Relation::LibOpt_RollbackKPI::LibOpt_Suboptimizer::Suboptimizer.Name' value: 'Suboptimizer'
  id: 'Relation::LibOpt_RollbackKPIDefault::LibOpt_KPIOnRollbackKPI::First.Name' value: 'First'
  id: 'Relation::LibOpt_RollbackKPIDefault::LibOpt_KPIOnRollbackKPI::KPIOnRollbackKPI.Description' value: 'Links a `LibOpt_RollbackKPI` to a `LibOpt_KPI`'
  id: 'Relation::LibOpt_RollbackKPIDefault::LibOpt_KPIOnRollbackKPI::KPIOnRollbackKPI.Name' value: 'KPIOnRollbackKPI'
  id: 'Relation::LibOpt_RollbackKPIDefault::LibOpt_KPIOnRollbackKPI::Last.Name' value: 'Last'
  id: 'Relation::LibOpt_Run::LibOpt_Analysis::Analysis.Description' value: 'This is public to allow its use in `LibOpt_Run::ToggleHasIterationsPrecondition`'
  id: 'Relation::LibOpt_Run::LibOpt_Analysis::Analysis.Name' value: 'Analysis'
  id: 'Relation::LibOpt_Run::LibOpt_Anchor::Anchor.Name' value: 'Anchor'
  id: 'Relation::LibOpt_Run::LibOpt_BreakpointConditionalOnComponent::BreakpointConditionalOnComponent.Name' value: 'BreakpointConditionalOnComponent'
  id: 'Relation::LibOpt_Run::LibOpt_BreakpointEvent::BreakpointEvent.Name' value: 'BreakpointEvent'
  id: 'Relation::LibOpt_Run::LibOpt_Channel::Channel.Description' value: 'The channels that allow components in the `LibOpt_Run` to communicate between one another.'
  id: 'Relation::LibOpt_Run::LibOpt_Channel::Channel.Name' value: 'Channel'
  id: 'Relation::LibOpt_Run::LibOpt_Component::Component.Name' value: 'Component'
  id: 'Relation::LibOpt_Run::LibOpt_Component::ComponentSortedByName.Name' value: 'ComponentSortedByName'
  id: 'Relation::LibOpt_Run::LibOpt_Component::FirstComponent.Name' value: 'FirstComponent'
  id: 'Relation::LibOpt_Run::LibOpt_Component::FirstComponentByName.Name' value: 'FirstComponentByName'
  id: 'Relation::LibOpt_Run::LibOpt_Component::LastComponent.Name' value: 'LastComponent'
  id: 'Relation::LibOpt_Run::LibOpt_Component::LastComponentByName.Name' value: 'LastComponentByName'
  id: 'Relation::LibOpt_Run::LibOpt_Component::StartComponent.Name' value: 'StartComponent'
  id: 'Relation::LibOpt_Run::LibOpt_Issue::FirstIssue.Name' value: 'FirstIssue'
  id: 'Relation::LibOpt_Run::LibOpt_Issue::Issue.Description' value: 'The `LibOpt_Issues` which highlight potential issues about this `LibOpt_Run`.'
  id: 'Relation::LibOpt_Run::LibOpt_Issue::Issue.Name' value: 'Issue'
  id: 'Relation::LibOpt_Run::LibOpt_Issue::LastIssue.Name' value: 'LastIssue'
  id: 'Relation::LibOpt_Run::LibOpt_Iteration::First.Name' value: 'First'
  id: 'Relation::LibOpt_Run::LibOpt_Iteration::Iteration.Name' value: 'Iteration'
  id: 'Relation::LibOpt_Run::LibOpt_Iteration::Last.Name' value: 'Last'
  id: 'Relation::LibOpt_Run::LibOpt_IterationThread::IterationThread.Description' value: 'IterationThreads belonging to this run'
  id: 'Relation::LibOpt_Run::LibOpt_IterationThread::IterationThread.Name' value: 'IterationThread'
  id: 'Relation::LibOpt_Run::LibOpt_KPIOnRun::KPIOnRun.Description' value: 'The `LibOpt_Run` this object belong to.'
  id: 'Relation::LibOpt_Run::LibOpt_KPIOnRun::KPIOnRun.Name' value: 'KPIOnRun'
  id: 'Relation::LibOpt_Run::LibOpt_LinkStart::LinkStart.Description' value: 'The `LibOpt_Link` from the run to the start component.'
  id: 'Relation::LibOpt_Run::LibOpt_LinkStart::LinkStart.Name' value: 'LinkStart'
  id: 'Relation::LibOpt_Run::LibOpt_Optimizer::Optimizer.Description' value: 'The relation `LibOpt_Run` to `LibOpt_Optimizer` is purposely set to protected. The `LibOpt_Run` should never know how it was created. This way the run is completely independent of the optimizer that created it, meaning that it is easy to reuse all components of the run in another optimizer.\nSettings should be stored on the individual `LibOpt_Components`.\n\nIf you need to get to your dataset type, you can use the `Optimization` method on `LibOpt_Run` or `LibOpt_Component`.'
  id: 'Relation::LibOpt_Run::LibOpt_Optimizer::Optimizer.Name' value: 'Optimizer'
  id: 'Relation::LibOpt_Run::LibOpt_RunContext::RunContext.Name' value: 'RunContext'
  id: 'Relation::LibOpt_Run::LibOpt_Scope::Scope.Name' value: 'Scope'
  id: 'Relation::LibOpt_Run::LibOpt_Scope::StartScope.Name' value: 'StartScope'
  id: 'Relation::LibOpt_Run::LibOpt_ScopeElementOnRun::ScopeElementOnRun.Name' value: 'ScopeElementOnRun'
  id: 'Relation::LibOpt_Run::LibOpt_Snapshot::FirstSnapshot.Name' value: 'FirstSnapshot'
  id: 'Relation::LibOpt_Run::LibOpt_Snapshot::LastSnapshot.Name' value: 'LastSnapshot'
  id: 'Relation::LibOpt_Run::LibOpt_Snapshot::Snapshot.Name' value: 'Snapshot'
  id: 'Relation::LibOpt_Run::LibOpt_SnapshotCapacity::SnapshotCapacity.Name' value: 'SnapshotCapacity'
  id: 'Relation::LibOpt_Run::LibOpt_SnapshotError::SnapshotError.Description' value: 'This is a helper relation from a `LibOpt_Run` instance to its corresponding `LibOpt_SnapshotError` instances.\nThis relation gives direct access to the `LibOpt_SnapshotError` instances.\nThis is being used to calculate `LibOpt_Run.TotalNrOfErrors`, which is also a KPI for the debugging dashboard.'
  id: 'Relation::LibOpt_Run::LibOpt_SnapshotError::SnapshotError.Name' value: 'SnapshotError'
  id: 'Relation::LibOpt_Run::LibOpt_SnapshotSuboptimizer::SnapshotSuboptimizerRollback.Description' value: 'This is a helper relation from a `LibOpt_Run` instance to its corresponding `LibOpt_SnapshotSuboptimizer` instances that have rollback.\nThis relation gives direct access to instances of `LibOpt_SnapshotSuboptimizer` that have its `LibOpt_SnapshotSuboptimizer.IsRollback` Boolean = true.\nThis is being used to calculate `LibOpt_Run.TotalNrOfRollbacks`, which is also a KPI for the debugging dashboard.'
  id: 'Relation::LibOpt_Run::LibOpt_SnapshotSuboptimizer::SnapshotSuboptimizerRollback.Name' value: 'SnapshotSuboptimizerRollback'
  id: 'Relation::LibOpt_Run::LibOpt_SnapshotWarning::SnapshotWarning.Description' value: 'This is a helper relation from a `LibOpt_Run` instance to its corresponding `LibOpt_SnapshotWarning` instances.\nThis relation gives direct access to the `LibOpt_SnapshotWarning` instances.\nThis is being used to calculate `LibOpt_Run.TotalNrOfWarnings`, which is also a KPI for the debugging dashboard.'
  id: 'Relation::LibOpt_Run::LibOpt_SnapshotWarning::SnapshotWarning.Name' value: 'SnapshotWarning'
  id: 'Relation::LibOpt_Run::LibOpt_Statistic::Statistic.Description' value: 'The `LibOpt_Statistics` that collect useful values about (`LibOpt_Components` in) this `LibOpt_Run`.'
  id: 'Relation::LibOpt_Run::LibOpt_Statistic::Statistic.Name' value: 'Statistic'
  id: 'Relation::LibOpt_Run::LibOpt_StatisticTimeTotal::StatisticTimeTotalRun.Description' value: 'This relation represents the `LibOpt_StatisticTimeTotal` that is the `LibOpt_Run` level.'
  id: 'Relation::LibOpt_Run::LibOpt_StatisticTimeTotal::StatisticTimeTotalRun.Name' value: 'StatisticTimeTotalRun'
  id: 'Relation::LibOpt_Run::LibOpt_Task::Task.Name' value: 'Task'
  id: 'Relation::LibOpt_Run::LibOpt_UIGraph::UIGraph.Name' value: 'UIGraph'
  id: 'Relation::LibOpt_RunContext::LibOpt_Run::Run.Name' value: 'Run'
  id: 'Relation::LibOpt_Scope::LibOpt_Run::AsStartScope.Name' value: 'AsStartScope'
  id: 'Relation::LibOpt_Scope::LibOpt_Run::Run.Name' value: 'Run'
  id: 'Relation::LibOpt_Scope::LibOpt_Scope::NextTaskContextInterator.Name' value: 'NextTaskContextInterator'
  id: 'Relation::LibOpt_Scope::LibOpt_Scope::PreviousTaskContextInterator.Name' value: 'PreviousTaskContextInterator'
  id: 'Relation::LibOpt_Scope::LibOpt_SnapshotComponent::AsInputScope.Name' value: 'AsInputScope'
  id: 'Relation::LibOpt_Scope::LibOpt_SnapshotComponent::AsOutputScope.Name' value: 'AsOutputScope'
  id: 'Relation::LibOpt_Scope::LibOpt_Task::CreatedBy.Name' value: 'CreatedBy'
  id: 'Relation::LibOpt_Scope::LibOpt_Task::Task.Description' value: 'The `LibOpt_Scope` the `LibOpt_Component` is supposed to work on.\n\nThe `LibOpt_Scope` is not owned, since we want to be able to store the `LibOpt_Scope` in a `LibOpt_Snapshot`, when the `LibOpt_Task` is completed.'
  id: 'Relation::LibOpt_Scope::LibOpt_Task::Task.Name' value: 'Task'
  id: 'Relation::LibOpt_Scope::LibOpt_TaskContextIterator::AsFirstTaskContextInterator.Name' value: 'AsFirstTaskContextInterator'
  id: 'Relation::LibOpt_Scope::LibOpt_TaskContextIterator::AsLastTaskContextInterator.Name' value: 'AsLastTaskContextInterator'
  id: 'Relation::LibOpt_Scope::LibOpt_TaskContextIterator::TaskContextIterator.Description' value: 'This relation is used to keep track of the set of scopes that belong to a ForEachScope iterator'
  id: 'Relation::LibOpt_Scope::LibOpt_TaskContextIterator::TaskContextIterator.Name' value: 'TaskContextIterator'
  id: 'Relation::LibOpt_ScopeElement::LibOpt_AnalysisFilterScopeElement::AnalysisFilterScopeElement.Name' value: 'AnalysisFilterScopeElement'
  id: 'Relation::LibOpt_ScopeElement::LibOpt_Anchor::Anchor.Name' value: 'Anchor'
  id: 'Relation::LibOpt_ScopeElement::LibOpt_Optimization::Optimization.Name' value: 'Optimization'
  id: 'Relation::LibOpt_ScopeElement::LibOpt_ScopeElementOnRun::ScopeElementOnRun.Name' value: 'ScopeElementOnRun'
  id: 'Relation::LibOpt_ScopeElement::LibOpt_ScopeElementOnScope::ScopeElementOnScope.Name' value: 'ScopeElementOnScope'
  id: 'Relation::LibOpt_ScopeElement::LibOpt_ScopeElementOnScopeDEPRECATED::ScopeElementOnScopeDEPRECATED.Name' value: 'ScopeElementOnScopeDEPRECATED'
  id: 'Relation::LibOpt_ScopeElement::LibOpt_ScopeShared::ScopeShared.Name' value: 'ScopeShared'
  id: 'Relation::LibOpt_ScopeElement::LibOpt_SuboptimizerScopeElement::SuboptimizerScopeElement.Description' value: 'This relation links this `LibOpt_ScopeElement` with the `LibOpt_Suboptimizers` which use it as part of their input/output `LibOpt_Scopes`, through the N-M object `LibOpt_SuboptimizerScopeElement`.'
  id: 'Relation::LibOpt_ScopeElement::LibOpt_SuboptimizerScopeElement::SuboptimizerScopeElement.Name' value: 'SuboptimizerScopeElement'
  id: 'Relation::LibOpt_ScopeElement::LibOpt_UIAnalysisScopeElement::UIAnalysisScopeElement.Name' value: 'UIAnalysisScopeElement'
  id: 'Relation::LibOpt_ScopeElementDeleted::LibOpt_Optimization::Owner.Name' value: 'Owner'
  id: 'Relation::LibOpt_ScopeElementOnRun::LibOpt_Run::Run.Name' value: 'Run'
  id: 'Relation::LibOpt_ScopeElementOnRun::LibOpt_ScopeElement::ScopeElement.Name' value: 'ScopeElement'
  id: 'Relation::LibOpt_ScopeElementOnScope::LibOpt_Group::Group.Description' value: 'For `LibOpt_ScopeFat`.\n\nThe `LibOpt_Group` to which the `LibOpt_ScopeElement` related to the `LibOpt_ScopeElementOnScope` belongs.'
  id: 'Relation::LibOpt_ScopeElementOnScope::LibOpt_Group::Group.Name' value: 'Group'
  id: 'Relation::LibOpt_ScopeElementOnScope::LibOpt_ScopeElement::ScopeElement.Name' value: 'ScopeElement'
  id: 'Relation::LibOpt_ScopeElementOnScope::LibOpt_ScopeFat::Scope.Name' value: 'Scope'
  id: 'Relation::LibOpt_ScopeElementOnScope::LibOpt_ScopeFat::ScopeAsActiveScopeElements.Name' value: 'ScopeAsActiveScopeElements'
  id: 'Relation::LibOpt_ScopeElementOnScope::LibOpt_ScopeFat::ScopeAsDeletedScopeElements.Name' value: 'ScopeAsDeletedScopeElements'
  id: 'Relation::LibOpt_ScopeElementOnScopeDEPRECATED::LibOpt_ScopeElement::ScopeElement.Name' value: 'ScopeElement'
  id: 'Relation::LibOpt_ScopeElementOnScopeDEPRECATED::LibOpt_ScopeFat::Scope.Name' value: 'Scope'
  id: 'Relation::LibOpt_ScopeElementOnScopeDEPRECATED::LibOpt_ScopeFat::ScopeAsActiveScopeElements.Name' value: 'ScopeAsActiveScopeElements'
  id: 'Relation::LibOpt_ScopeElementOnScopeDEPRECATED::LibOpt_ScopeFat::ScopeAsDeletedScopeElements.Name' value: 'ScopeAsDeletedScopeElements'
  id: 'Relation::LibOpt_ScopeFat::LibOpt_ScopeElementOnScope::ActiveScopeElements.Name' value: 'ActiveScopeElements'
  id: 'Relation::LibOpt_ScopeFat::LibOpt_ScopeElementOnScope::DeletedScopeElements.Name' value: 'DeletedScopeElements'
  id: 'Relation::LibOpt_ScopeFat::LibOpt_ScopeElementOnScope::ScopeElementOnScope.Name' value: 'ScopeElementOnScope'
  id: 'Relation::LibOpt_ScopeFat::LibOpt_ScopeElementOnScopeDEPRECATED::ActiveScopeElementsDEPRECATED.Name' value: 'ActiveScopeElementsDEPRECATED'
  id: 'Relation::LibOpt_ScopeFat::LibOpt_ScopeElementOnScopeDEPRECATED::DeletedScopeElementsDEPRECATED.Name' value: 'DeletedScopeElementsDEPRECATED'
  id: 'Relation::LibOpt_ScopeFat::LibOpt_ScopeElementOnScopeDEPRECATED::ScopeElementOnScopeDEPRECATED.Name' value: 'ScopeElementOnScopeDEPRECATED'
  id: 'Relation::LibOpt_ScopeShared::LibOpt_ScopeElement::ScopeElement.Name' value: 'ScopeElement'
  id: 'Relation::LibOpt_ScopeShared::LibOpt_ScopeSharedOnScope::ScopeSharedOnScope.Name' value: 'ScopeSharedOnScope'
  id: 'Relation::LibOpt_ScopeShared::LibOpt_ScopeThin::Owner.Name' value: 'Owner'
  id: 'Relation::LibOpt_ScopeSharedOnScope::LibOpt_Group::Group.Description' value: 'For `LibOpt_ScopeThin`.\n\nThe `LibOpt_Group` to which the `LibOpt_ScopeElements` related to the `LibOpt_ScopeSharedOnScope` belong.'
  id: 'Relation::LibOpt_ScopeSharedOnScope::LibOpt_Group::Group.Name' value: 'Group'
  id: 'Relation::LibOpt_ScopeSharedOnScope::LibOpt_ScopeShared::ScopeShared.Name' value: 'ScopeShared'
  id: 'Relation::LibOpt_ScopeSharedOnScope::LibOpt_ScopeThin::ScopeThin.Name' value: 'ScopeThin'
  id: 'Relation::LibOpt_ScopeThin::LibOpt_ScopeShared::ScopeSharedOwned.Name' value: 'ScopeSharedOwned'
  id: 'Relation::LibOpt_ScopeThin::LibOpt_ScopeSharedOnScope::ScopeSharedOnScope.Name' value: 'ScopeSharedOnScope'
  id: 'Relation::LibOpt_SelectorAnchorBase::LibOpt_AnchorPicker::AnchorPicker.Name' value: 'AnchorPicker'
  id: 'Relation::LibOpt_SelectorAnchorBase::LibOpt_AnchorSet::AnchorSet.Name' value: 'AnchorSet'
  id: 'Relation::LibOpt_SelectorAnchorBase::LibOpt_NeighborhoodCreator::NeighborhoodCreator.Name' value: 'NeighborhoodCreator'
  id: 'Relation::LibOpt_Settings::LibOpt_Optimizer::AsActive.Name' value: 'AsActive'
  id: 'Relation::LibOpt_Settings::LibOpt_Optimizer::Optimizer.Name' value: 'Optimizer'
  id: 'Relation::LibOpt_Snapshot::LibOpt_Issue::Issue.Description' value: 'The `LibOpt_Issues` which highlight potential issues about this `LibOpt_Snapshot`.'
  id: 'Relation::LibOpt_Snapshot::LibOpt_Issue::Issue.Name' value: 'Issue'
  id: 'Relation::LibOpt_Snapshot::LibOpt_Iteration::FirstIteration.Description' value: 'First iteration the snapshot occurs in'
  id: 'Relation::LibOpt_Snapshot::LibOpt_Iteration::FirstIteration.Name' value: 'FirstIteration'
  id: 'Relation::LibOpt_Snapshot::LibOpt_IterationPart::IterationPart.Name' value: 'IterationPart'
  id: 'Relation::LibOpt_Snapshot::LibOpt_Run::AsFirstOnRun.Name' value: 'AsFirstOnRun'
  id: 'Relation::LibOpt_Snapshot::LibOpt_Run::AsLastOnRun.Name' value: 'AsLastOnRun'
  id: 'Relation::LibOpt_Snapshot::LibOpt_Run::Run.Name' value: 'Run'
  id: 'Relation::LibOpt_Snapshot::LibOpt_Snapshot::AsFirst.Name' value: 'AsFirst'
  id: 'Relation::LibOpt_Snapshot::LibOpt_Snapshot::AsInformation.Name' value: 'AsInformation'
  id: 'Relation::LibOpt_Snapshot::LibOpt_Snapshot::AsLast.Name' value: 'AsLast'
  id: 'Relation::LibOpt_Snapshot::LibOpt_Snapshot::Children.Name' value: 'Children'
  id: 'Relation::LibOpt_Snapshot::LibOpt_Snapshot::First.Name' value: 'First'
  id: 'Relation::LibOpt_Snapshot::LibOpt_Snapshot::Information.Name' value: 'Information'
  id: 'Relation::LibOpt_Snapshot::LibOpt_Snapshot::Last.Name' value: 'Last'
  id: 'Relation::LibOpt_Snapshot::LibOpt_Snapshot::Next.Name' value: 'Next'
  id: 'Relation::LibOpt_Snapshot::LibOpt_Snapshot::NextOnRun.Name' value: 'NextOnRun'
  id: 'Relation::LibOpt_Snapshot::LibOpt_Snapshot::Parent.Name' value: 'Parent'
  id: 'Relation::LibOpt_Snapshot::LibOpt_Snapshot::Previous.Name' value: 'Previous'
  id: 'Relation::LibOpt_Snapshot::LibOpt_Snapshot::PreviousOnRun.Name' value: 'PreviousOnRun'
  id: 'Relation::LibOpt_Snapshot::LibOpt_SnapshotComponent::SnapshotComponent.Description' value: "The `LibOpt_SnapshotComponent.SnapshotDecendants` relation contains all descendant snapshots of the `LibOpt_SnapshotComponent` that are not of type `LibOpt_SnapshotComponent` nor have a `LibOpt_SnapshotComponent` ancestor inbetween.\nIn other words, all indented `LibOpt_Snapshots` in the 'Snapshots' form that are below the `LibOpt_SnapshotComponent` will be included in this relation.\nThe `LibOpt_SnapshotComponent` itself is not included in the `LibOpt_SnapshotComponent.SnapshotDecendants` relation.\n\nNote: If a `LibOpt_Snapshot` is not a decendant of a `LibOpt_SnapshotComponent`, then the `LibOpt_Snapshot.SnapshotComponent` relation will be null.\nThis is not supposed to happen, because every `LibOpt_Snapshot` is supposed to have a `LibOpt_SnapshotComponent` as an ancestor."
  id: 'Relation::LibOpt_Snapshot::LibOpt_SnapshotComponent::SnapshotComponent.Name' value: 'SnapshotComponent'
  id: 'Relation::LibOpt_Snapshot::LibOpt_UISnapshotAttribute::UISnapshotAttribute.Name' value: 'UISnapshotAttribute'
  id: 'Relation::LibOpt_SnapshotAlgorithm::LibOpt_Suboptimizer::Suboptimizer.Description' value: 'The `LibOpt_SnapshotAlgorithms` of `LibOpt_SnapshotComponents` of this `LibOpt_Suboptimizer`.'
  id: 'Relation::LibOpt_SnapshotAlgorithm::LibOpt_Suboptimizer::Suboptimizer.Name' value: 'Suboptimizer'
  id: 'Relation::LibOpt_SnapshotCapacity::LibOpt_Run::Run.Name' value: 'Run'
  id: 'Relation::LibOpt_SnapshotCapacityElement::LibOpt_SnapshotComponent::SnapshotComponent.Name' value: 'SnapshotComponent'
  id: 'Relation::LibOpt_SnapshotComponent::LibOpt_AnalysisSnapshot::AnalysisSnapshot.Name' value: 'AnalysisSnapshot'
  id: 'Relation::LibOpt_SnapshotComponent::LibOpt_Component::AsFirstSnapshot.Name' value: 'AsFirstSnapshot'
  id: 'Relation::LibOpt_SnapshotComponent::LibOpt_Component::AsLastSnapshot.Name' value: 'AsLastSnapshot'
  id: 'Relation::LibOpt_SnapshotComponent::LibOpt_Component::Component.Name' value: 'Component'
  id: 'Relation::LibOpt_SnapshotComponent::LibOpt_Iteration::IterationOwning.Name' value: 'IterationOwning'
  id: 'Relation::LibOpt_SnapshotComponent::LibOpt_IterationPart::AsFirstSnapshotInIterationPart.Name' value: 'AsFirstSnapshotInIterationPart'
  id: 'Relation::LibOpt_SnapshotComponent::LibOpt_IterationPart::AsLastSnapshotInIterationPart.Name' value: 'AsLastSnapshotInIterationPart'
  id: 'Relation::LibOpt_SnapshotComponent::LibOpt_IterationPart::IterationPartAsSnapshotComponent.Name' value: 'IterationPartAsSnapshotComponent'
  id: 'Relation::LibOpt_SnapshotComponent::LibOpt_IterationPart::IterationPartOwning.Name' value: 'IterationPartOwning'
  id: 'Relation::LibOpt_SnapshotComponent::LibOpt_IterationThread::AsFirstSnapshotInIteration.Name' value: 'AsFirstSnapshotInIteration'
  id: 'Relation::LibOpt_SnapshotComponent::LibOpt_IterationThread::AsLastSnapshotInIteration.Name' value: 'AsLastSnapshotInIteration'
  id: 'Relation::LibOpt_SnapshotComponent::LibOpt_IterationThread::ExecutingIterationThread.Description' value: 'IterationThread that is executing the SnapshotComponent'
  id: 'Relation::LibOpt_SnapshotComponent::LibOpt_IterationThread::ExecutingIterationThread.Name' value: 'ExecutingIterationThread'
  id: 'Relation::LibOpt_SnapshotComponent::LibOpt_Scope::InputScope.Name' value: 'InputScope'
  id: 'Relation::LibOpt_SnapshotComponent::LibOpt_Scope::OutputScope.Name' value: 'OutputScope'
  id: 'Relation::LibOpt_SnapshotComponent::LibOpt_Snapshot::SnapshotDecendants.Description' value: "The `LibOpt_SnapshotComponent.SnapshotDecendants` relation contains all descendant snapshots of the `LibOpt_SnapshotComponent` that are not of type `LibOpt_SnapshotComponent` nor have a `LibOpt_SnapshotComponent` ancestor inbetween.\nIn other words, all indented `LibOpt_Snapshots` in the 'Snapshots' form that are below the `LibOpt_SnapshotComponent` will be included in this relation.\nThe `LibOpt_SnapshotComponent` itself is not included in the `LibOpt_SnapshotComponent.SnapshotDecendants` relation.\n\nNote: If a `LibOpt_Snapshot` is not a decendant of a `LibOpt_SnapshotComponent`, then the `LibOpt_Snapshot.SnapshotComponent` relation will be null.\nThis is not supposed to happen, because every `LibOpt_Snapshot` is supposed to have a `LibOpt_SnapshotComponent` as an ancestor."
  id: 'Relation::LibOpt_SnapshotComponent::LibOpt_Snapshot::SnapshotDecendants.Name' value: 'SnapshotDecendants'
  id: 'Relation::LibOpt_SnapshotComponent::LibOpt_SnapshotCapacityElement::SnapshotCapacityElement.Name' value: 'SnapshotCapacityElement'
  id: 'Relation::LibOpt_SnapshotComponent::LibOpt_SnapshotComponent::ChildrenAsSnapshotComponent.Name' value: 'ChildrenAsSnapshotComponent'
  id: 'Relation::LibOpt_SnapshotComponent::LibOpt_SnapshotComponent::NextSnapshot.Name' value: 'NextSnapshot'
  id: 'Relation::LibOpt_SnapshotComponent::LibOpt_SnapshotComponent::NextSnapshotInIteration.Name' value: 'NextSnapshotInIteration'
  id: 'Relation::LibOpt_SnapshotComponent::LibOpt_SnapshotComponent::NextSnapshotInIterationPart.Name' value: 'NextSnapshotInIterationPart'
  id: 'Relation::LibOpt_SnapshotComponent::LibOpt_SnapshotComponent::ParentAsSnapshotComponent.Name' value: 'ParentAsSnapshotComponent'
  id: 'Relation::LibOpt_SnapshotComponent::LibOpt_SnapshotComponent::PreviousSnapshot.Name' value: 'PreviousSnapshot'
  id: 'Relation::LibOpt_SnapshotComponent::LibOpt_SnapshotComponent::PreviousSnapshotInIteration.Name' value: 'PreviousSnapshotInIteration'
  id: 'Relation::LibOpt_SnapshotComponent::LibOpt_SnapshotComponent::PreviousSnapshotInIterationPart.Name' value: 'PreviousSnapshotInIterationPart'
  id: 'Relation::LibOpt_SnapshotComponent::LibOpt_Task::Task.Name' value: 'Task'
  id: 'Relation::LibOpt_SnapshotError::LibOpt_Run::AsSnapshotErrorOfRun.Description' value: 'This is a helper relation from a `LibOpt_Run` instance to its corresponding `LibOpt_SnapshotError` instances.\nThis relation gives direct access to the `LibOpt_SnapshotError` instances.\nThis is being used to calculate `LibOpt_Run.TotalNrOfErrors`, which is also a KPI for the debugging dashboard.'
  id: 'Relation::LibOpt_SnapshotError::LibOpt_Run::AsSnapshotErrorOfRun.Name' value: 'AsSnapshotErrorOfRun'
  id: 'Relation::LibOpt_SnapshotKPI::LibOpt_Iteration::IterationAsFirstSnapshotKPI.Name' value: 'IterationAsFirstSnapshotKPI'
  id: 'Relation::LibOpt_SnapshotKPI::LibOpt_Iteration::IterationAsLastSnapshotKPI.Name' value: 'IterationAsLastSnapshotKPI'
  id: 'Relation::LibOpt_SnapshotKPIPart::LibOpt_KPI::KPI.Description' value: 'Links the `LibOpt_KPI` with the `LibOpt_SnapshotKPIPart` that stores its value'
  id: 'Relation::LibOpt_SnapshotKPIPart::LibOpt_KPI::KPI.Name' value: 'KPI'
  id: 'Relation::LibOpt_SnapshotLogEntry::LibOpt_StatisticLogEntry::StatisticSnapshotLogEntry.Description' value: 'The `LibOpt_SnapshotLogEntrys` with a common combination of the following aspects are grouped under a single `LibOpt_StatisticLogEntry`:\n- `LibOpt_SnapshotLogEntry.Details` attribute\n- `LibOpt_Component` returned by the `LibOpt_SnapshotLogEntry.GetComponent` method'
  id: 'Relation::LibOpt_SnapshotLogEntry::LibOpt_StatisticLogEntry::StatisticSnapshotLogEntry.Name' value: 'StatisticSnapshotLogEntry'
  id: 'Relation::LibOpt_SnapshotMP::LibOpt_SuboptimizerMP::SuboptimizerMP.Description' value: 'The `LibOpt_SnapshotMPs` of this `LibOpt_SuboptimizerMP`.'
  id: 'Relation::LibOpt_SnapshotMP::LibOpt_SuboptimizerMP::SuboptimizerMP.Name' value: 'SuboptimizerMP'
  id: 'Relation::LibOpt_SnapshotReplannableCopyDataset::LibOpt_DatasetCopyConditional::DatasetCopyConditional.Description' value: 'This relation contains all `LibOpt_SnapshotReplannableCopyDatasets` that were created when `true` is returned by the `LibOpt_DatasetCopyConditional.CreateCondition` method of this `LibOpt_DatasetCopyConditional` object.\n\nWhen the `LibOpt_DatasetCopyConditional.IsFlaggedForDeletion` attribute is `true` and when the `LibOpt_SnapshotReplannableCopyDataset.HasExecutedDoFinalizeDatasetCopyDelete` attribute is `true` for all snapshots in this relation, then the `LibOpt_DatasetCopyConditional` object will be deleted in the `LibOpt_DatasetCopyConditional.DeleteWhenFlagged` static method.'
  id: 'Relation::LibOpt_SnapshotReplannableCopyDataset::LibOpt_DatasetCopyConditional::DatasetCopyConditional.Name' value: 'DatasetCopyConditional'
  id: 'Relation::LibOpt_SnapshotSuboptimizer::LibOpt_Iteration::IterationAsLastSnapshotSuboptimizer.Description' value: 'The last `LibOpt_SnapshotSuboptimizer` that is linked to this `LibOpt_Iteration`.'
  id: 'Relation::LibOpt_SnapshotSuboptimizer::LibOpt_Iteration::IterationAsLastSnapshotSuboptimizer.Name' value: 'IterationAsLastSnapshotSuboptimizer'
  id: 'Relation::LibOpt_SnapshotSuboptimizer::LibOpt_Run::AsSnapshotSuboptimizerRollback.Description' value: 'This is a helper relation from a `LibOpt_Run` instance to its corresponding `LibOpt_SnapshotSuboptimizer` instances that have rollback.\nThis relation gives direct access to instances of `LibOpt_SnapshotSuboptimizer` that have its `LibOpt_SnapshotSuboptimizer.IsRollback` Boolean = true.\nThis is being used to calculate `LibOpt_Run.TotalNrOfRollbacks`, which is also a KPI for the debugging dashboard.'
  id: 'Relation::LibOpt_SnapshotSuboptimizer::LibOpt_Run::AsSnapshotSuboptimizerRollback.Name' value: 'AsSnapshotSuboptimizerRollback'
  id: 'Relation::LibOpt_SnapshotSuboptimizer::LibOpt_SnapshotSuboptimizer::NextOnSuboptimizer.Name' value: 'NextOnSuboptimizer'
  id: 'Relation::LibOpt_SnapshotSuboptimizer::LibOpt_SnapshotSuboptimizer::PreviousOnSuboptimizer.Name' value: 'PreviousOnSuboptimizer'
  id: 'Relation::LibOpt_SnapshotSuboptimizer::LibOpt_Suboptimizer::AsFirstOnSuboptimizer.Name' value: 'AsFirstOnSuboptimizer'
  id: 'Relation::LibOpt_SnapshotSuboptimizer::LibOpt_Suboptimizer::AsLastOnSuboptimizer.Name' value: 'AsLastOnSuboptimizer'
  id: 'Relation::LibOpt_SnapshotSuboptimizer::LibOpt_Suboptimizer::Suboptimizer.Description' value: 'The `LibOpt_SnapshotSuboptimizers` of `LibOpt_SnapshotComponents` of this `LibOpt_Suboptimizer`.'
  id: 'Relation::LibOpt_SnapshotSuboptimizer::LibOpt_Suboptimizer::Suboptimizer.Name' value: 'Suboptimizer'
  id: 'Relation::LibOpt_SnapshotSwitch::LibOpt_Link::Link.Name' value: 'Link'
  id: 'Relation::LibOpt_SnapshotWarning::LibOpt_Run::AsSnapshotWarningOfRun.Description' value: 'This is a helper relation from a `LibOpt_Run` instance to its corresponding `LibOpt_SnapshotWarning` instances.\nThis relation gives direct access to the `LibOpt_SnapshotWarning` instances.\nThis is being used to calculate `LibOpt_Run.TotalNrOfWarnings`, which is also a KPI for the debugging dashboard.'
  id: 'Relation::LibOpt_SnapshotWarning::LibOpt_Run::AsSnapshotWarningOfRun.Name' value: 'AsSnapshotWarningOfRun'
  id: 'Relation::LibOpt_Statistic::LibOpt_Component::Component.Description' value: 'The `LibOpt_Statistics` that collect useful values about this `LibOpt_Component`.\n\nSome subclasses of `LibOpt_Statistic` are used to aggregate values from their linked `LibOpt_Statistics`, rather from a single `LibOpt_Component`.\nFor such subclasses, the `LibOpt_Statistic.Component` relation would be null.'
  id: 'Relation::LibOpt_Statistic::LibOpt_Component::Component.Name' value: 'Component'
  id: 'Relation::LibOpt_Statistic::LibOpt_Issue::Issue.Description' value: 'The `LibOpt_Issues` created based on the values collected by this `LibOpt_Statistic`.'
  id: 'Relation::LibOpt_Statistic::LibOpt_Issue::Issue.Name' value: 'Issue'
  id: 'Relation::LibOpt_Statistic::LibOpt_Run::Run.Description' value: 'The `LibOpt_Statistics` that collect useful values about (`LibOpt_Components` in) this `LibOpt_Run`.'
  id: 'Relation::LibOpt_Statistic::LibOpt_Run::Run.Name' value: 'Run'
  id: 'Relation::LibOpt_Statistic::LibOpt_StatisticSummary::Summary.Description' value: 'A `LibOpt_StatisticSummary` is declaratively instantiated by a `LibOpt_Statistic` to hold its "summary statistics".\n\nExamples of "summary statistics" include:\n- `LibOpt_StatisticSummary.Average`, `LibOpt_StatisticSummary.Median`, `LibOpt_StatisticSummary.StandardDeviation`, `LibOpt_StatisticSummary.Range`, etc.'
  id: 'Relation::LibOpt_Statistic::LibOpt_StatisticSummary::Summary.Name' value: 'Summary'
  id: 'Relation::LibOpt_Statistic::LibOpt_Suboptimizer::Suboptimizer.Description' value: 'The `LibOpt_Statistics` that collect useful values about this `LibOpt_Suboptimizer`.'
  id: 'Relation::LibOpt_Statistic::LibOpt_Suboptimizer::Suboptimizer.Name' value: 'Suboptimizer'
  id: 'Relation::LibOpt_Statistic::LibOpt_SuboptimizerMP::SuboptimizerMP.Description' value: 'The `LibOpt_Statistics` that collect useful values about this `LibOpt_SuboptimizerMP`.'
  id: 'Relation::LibOpt_Statistic::LibOpt_SuboptimizerMP::SuboptimizerMP.Name' value: 'SuboptimizerMP'
  id: 'Relation::LibOpt_StatisticLogEntry::LibOpt_SnapshotLogEntry::SnapshotLogEntry.Description' value: 'The `LibOpt_SnapshotLogEntrys` with a common combination of the following aspects are grouped under a single `LibOpt_StatisticLogEntry`:\n- `LibOpt_SnapshotLogEntry.Details` attribute\n- `LibOpt_Component` returned by the `LibOpt_SnapshotLogEntry.GetComponent` method'
  id: 'Relation::LibOpt_StatisticLogEntry::LibOpt_SnapshotLogEntry::SnapshotLogEntry.Name' value: 'SnapshotLogEntry'
  id: 'Relation::LibOpt_StatisticSummary::LibOpt_Statistic::Statistic.Description' value: 'A `LibOpt_StatisticSummary` is declaratively instantiated by a `LibOpt_Statistic` to hold its "summary statistics".\n\nExamples of "summary statistics" include:\n- `LibOpt_StatisticSummary.Average`, `LibOpt_StatisticSummary.Median`, `LibOpt_StatisticSummary.StandardDeviation`, `LibOpt_StatisticSummary.Range`, etc.'
  id: 'Relation::LibOpt_StatisticSummary::LibOpt_Statistic::Statistic.Name' value: 'Statistic'
  id: 'Relation::LibOpt_StatisticTime::LibOpt_StatisticTime::Child.Description' value: 'Dictates the hierarchy between instances of `LibOpt_StatisticTime` subtypes, wherein the hierarchy can be determined by the boolean attributes, and follows in sequence of highest to lowest hierarchy, from `IsRoot`, to `IsType`, to `IsComponent`.'
  id: 'Relation::LibOpt_StatisticTime::LibOpt_StatisticTime::Child.Name' value: 'Child'
  id: 'Relation::LibOpt_StatisticTime::LibOpt_StatisticTime::Parent.Description' value: 'Dictates the hierarchy between instances of `LibOpt_StatisticTime` subtypes, wherein the hierarchy can be determined by the boolean attributes, and follows in sequence of highest to lowest hierarchy, from `IsRoot`, to `IsType`, to `IsComponent`.'
  id: 'Relation::LibOpt_StatisticTime::LibOpt_StatisticTime::Parent.Name' value: 'Parent'
  id: 'Relation::LibOpt_StatisticTime::LibOpt_StatisticTime::StatisticTimeAbsolute.Description' value: 'This relation points to either the absolute or relative type statistics.'
  id: 'Relation::LibOpt_StatisticTime::LibOpt_StatisticTime::StatisticTimeAbsolute.Name' value: 'StatisticTimeAbsolute'
  id: 'Relation::LibOpt_StatisticTime::LibOpt_StatisticTime::StatisticTimeRelative.Description' value: 'This relation points to either the absolute or relative type statistics.'
  id: 'Relation::LibOpt_StatisticTime::LibOpt_StatisticTime::StatisticTimeRelative.Name' value: 'StatisticTimeRelative'
  id: 'Relation::LibOpt_StatisticTimeSuboptimizerHandleResult::LibOpt_StatisticTimeTotal::StatisticTimeTotal.Description' value: 'This is a helper relation from a `LibOpt_StatisticTimeTotal` instance to its corresponding `LibOpt_StatisticTimeSuboptimizerHandleResult` instance, which is only applicable to the `LibOpt_Suboptimizer` type.\nThis helper relation is useful for retrieving information pertaining to the `LibOpt_StatisticTimeSuboptimizerHandleResult` via `LibOpt_StatisticTimeTotal`, for example, as a column within the "Time details" form.'
  id: 'Relation::LibOpt_StatisticTimeSuboptimizerHandleResult::LibOpt_StatisticTimeTotal::StatisticTimeTotal.Name' value: 'StatisticTimeTotal'
  id: 'Relation::LibOpt_StatisticTimeSuboptimizerInitialize::LibOpt_StatisticTimeTotal::StatisticTimeTotal.Description' value: 'This is a helper relation from a `LibOpt_StatisticTimeTotal` instance to its corresponding `LibOpt_StatisticTimeSuboptimizerInitialize` instance, which is only applicable to the `LibOpt_Suboptimizer` type.\nThis helper relation is useful for retrieving information pertaining to the `LibOpt_StatisticTimeSuboptimizerInitialize` via `LibOpt_StatisticTimeTotal`, for example, as a column within the "Time details" form.'
  id: 'Relation::LibOpt_StatisticTimeSuboptimizerInitialize::LibOpt_StatisticTimeTotal::StatisticTimeTotal.Name' value: 'StatisticTimeTotal'
  id: 'Relation::LibOpt_StatisticTimeSuboptimizerSolve::LibOpt_StatisticTimeTotal::StatisticTimeTotal.Description' value: 'This is a helper relation from a `LibOpt_StatisticTimeTotal` instance to its corresponding `LibOpt_StatisticTimeSuboptimizerSolve` instance, which is only applicable to the `LibOpt_Suboptimizer` type.\nThis helper relation is useful for retrieving information pertaining to the `LibOpt_StatisticTimeSuboptimizerSolve` via `LibOpt_StatisticTimeTotal`, for example, as a column within the "Time details" form.'
  id: 'Relation::LibOpt_StatisticTimeSuboptimizerSolve::LibOpt_StatisticTimeTotal::StatisticTimeTotal.Name' value: 'StatisticTimeTotal'
  id: 'Relation::LibOpt_StatisticTimeTotal::LibOpt_Run::AsStatisticTimeTotalRun.Description' value: 'This relation represents the `LibOpt_StatisticTimeTotal` that is the `LibOpt_Run` level.'
  id: 'Relation::LibOpt_StatisticTimeTotal::LibOpt_Run::AsStatisticTimeTotalRun.Name' value: 'AsStatisticTimeTotalRun'
  id: 'Relation::LibOpt_StatisticTimeTotal::LibOpt_StatisticTimeSuboptimizerHandleResult::StatisticTimeSuboptimizerHandleResult.Description' value: 'This is a helper relation from a `LibOpt_StatisticTimeTotal` instance to its corresponding `LibOpt_StatisticTimeSuboptimizerHandleResult` instance, which is only applicable to the `LibOpt_Suboptimizer` type.\nThis helper relation is useful for retrieving information pertaining to the `LibOpt_StatisticTimeSuboptimizerHandleResult` via `LibOpt_StatisticTimeTotal`, for example, as a column within the "Time details" form.'
  id: 'Relation::LibOpt_StatisticTimeTotal::LibOpt_StatisticTimeSuboptimizerHandleResult::StatisticTimeSuboptimizerHandleResult.Name' value: 'StatisticTimeSuboptimizerHandleResult'
  id: 'Relation::LibOpt_StatisticTimeTotal::LibOpt_StatisticTimeSuboptimizerInitialize::StatisticTimeSuboptimizerInitialize.Description' value: 'This is a helper relation from a `LibOpt_StatisticTimeTotal` instance to its corresponding `LibOpt_StatisticTimeSuboptimizerInitialize` instance, which is only applicable to the `LibOpt_Suboptimizer` type.\nThis helper relation is useful for retrieving information pertaining to the `LibOpt_StatisticTimeSuboptimizerInitialize` via `LibOpt_StatisticTimeTotal`, for example, as a column within the "Time details" form.'
  id: 'Relation::LibOpt_StatisticTimeTotal::LibOpt_StatisticTimeSuboptimizerInitialize::StatisticTimeSuboptimizerInitialize.Name' value: 'StatisticTimeSuboptimizerInitialize'
  id: 'Relation::LibOpt_StatisticTimeTotal::LibOpt_StatisticTimeSuboptimizerSolve::StatisticTimeSuboptimizerSolve.Description' value: 'This is a helper relation from a `LibOpt_StatisticTimeTotal` instance to its corresponding `LibOpt_StatisticTimeSuboptimizerSolve` instance, which is only applicable to the `LibOpt_Suboptimizer` type.\nThis helper relation is useful for retrieving information pertaining to the `LibOpt_StatisticTimeSuboptimizerSolve` via `LibOpt_StatisticTimeTotal`, for example, as a column within the "Time details" form.'
  id: 'Relation::LibOpt_StatisticTimeTotal::LibOpt_StatisticTimeSuboptimizerSolve::StatisticTimeSuboptimizerSolve.Name' value: 'StatisticTimeSuboptimizerSolve'
  id: 'Relation::LibOpt_StopCriterion::LibOpt_IteratorUntil::Iterator.Name' value: 'Iterator'
  id: 'Relation::LibOpt_StoredAlgorithm::LibOpt_Optimization::Optimization.Name' value: 'Optimization'
  id: 'Relation::LibOpt_StoredAlgorithm::LibOpt_StoredAlgorithm::NextStoredAlgorithm.Name' value: 'NextStoredAlgorithm'
  id: 'Relation::LibOpt_StoredAlgorithm::LibOpt_StoredAlgorithm::PreviousStoredAlgorithm.Name' value: 'PreviousStoredAlgorithm'
  id: 'Relation::LibOpt_StoredAlgorithm::LibOpt_SuboptimizerAlgorithm::AsFirstStoredAlgorithm.Name' value: 'AsFirstStoredAlgorithm'
  id: 'Relation::LibOpt_StoredAlgorithm::LibOpt_SuboptimizerAlgorithm::AsLastStoredAlgorithm.Name' value: 'AsLastStoredAlgorithm'
  id: 'Relation::LibOpt_StoredAlgorithm::LibOpt_SuboptimizerAlgorithm::SuboptimizerAlgorithm.Name' value: 'SuboptimizerAlgorithm'
  id: 'Relation::LibOpt_StoredAlgorithmGlobal::LibOpt_StoredAlgorithmManager::StoredAlgorithmManager.Name' value: 'StoredAlgorithmManager'
  id: 'Relation::LibOpt_StoredAlgorithmManager::LibOpt_StoredAlgorithmGlobal::StoredAlgorithmGlobal.Name' value: 'StoredAlgorithmGlobal'
  id: 'Relation::LibOpt_Suboptimizer::LibOpt_RollbackKPI::RollbackKPI.Name' value: 'RollbackKPI'
  id: 'Relation::LibOpt_Suboptimizer::LibOpt_SnapshotAlgorithm::SnapshotAlgorithm.Description' value: 'The `LibOpt_SnapshotAlgorithms` of `LibOpt_SnapshotComponents` of this `LibOpt_Suboptimizer`.'
  id: 'Relation::LibOpt_Suboptimizer::LibOpt_SnapshotAlgorithm::SnapshotAlgorithm.Name' value: 'SnapshotAlgorithm'
  id: 'Relation::LibOpt_Suboptimizer::LibOpt_SnapshotSuboptimizer::FirstSnapshotSuboptimizer.Name' value: 'FirstSnapshotSuboptimizer'
  id: 'Relation::LibOpt_Suboptimizer::LibOpt_SnapshotSuboptimizer::LastSnapshotSuboptimizer.Name' value: 'LastSnapshotSuboptimizer'
  id: 'Relation::LibOpt_Suboptimizer::LibOpt_SnapshotSuboptimizer::SnapshotSuboptimizer.Description' value: 'The `LibOpt_SnapshotSuboptimizers` of `LibOpt_SnapshotComponents` of this `LibOpt_Suboptimizer`.'
  id: 'Relation::LibOpt_Suboptimizer::LibOpt_SnapshotSuboptimizer::SnapshotSuboptimizer.Name' value: 'SnapshotSuboptimizer'
  id: 'Relation::LibOpt_Suboptimizer::LibOpt_Statistic::StatisticForSuboptimizer.Description' value: 'The `LibOpt_Statistics` that collect useful values about this `LibOpt_Suboptimizer`.'
  id: 'Relation::LibOpt_Suboptimizer::LibOpt_Statistic::StatisticForSuboptimizer.Name' value: 'StatisticForSuboptimizer'
  id: 'Relation::LibOpt_Suboptimizer::LibOpt_SuboptimizerScopeElement::SuboptimizerScopeElement.Description' value: 'This relation links this `LibOpt_Suboptimizer` to `LibOpt_ScopeElements` which are part of its input/output `LibOpt_Scopes`, through the N-M object `LibOpt_SuboptimizerScopeElement`.'
  id: 'Relation::LibOpt_Suboptimizer::LibOpt_SuboptimizerScopeElement::SuboptimizerScopeElement.Name' value: 'SuboptimizerScopeElement'
  id: 'Relation::LibOpt_SuboptimizerAlgorithm::LibOpt_StoredAlgorithm::FirstStoredAlgorithm.Name' value: 'FirstStoredAlgorithm'
  id: 'Relation::LibOpt_SuboptimizerAlgorithm::LibOpt_StoredAlgorithm::LastStoredAlgorithm.Name' value: 'LastStoredAlgorithm'
  id: 'Relation::LibOpt_SuboptimizerAlgorithm::LibOpt_StoredAlgorithm::StoredAlgorithm.Name' value: 'StoredAlgorithm'
  id: 'Relation::LibOpt_SuboptimizerMP::LibOpt_SnapshotMP::SnapshotMP.Description' value: 'The `LibOpt_SnapshotMPs` of this `LibOpt_SuboptimizerMP`.'
  id: 'Relation::LibOpt_SuboptimizerMP::LibOpt_SnapshotMP::SnapshotMP.Name' value: 'SnapshotMP'
  id: 'Relation::LibOpt_SuboptimizerMP::LibOpt_Statistic::StatisticForSuboptimizerMP.Description' value: 'The `LibOpt_Statistics` that collect useful values about this `LibOpt_SuboptimizerMP`.'
  id: 'Relation::LibOpt_SuboptimizerMP::LibOpt_Statistic::StatisticForSuboptimizerMP.Name' value: 'StatisticForSuboptimizerMP'
  id: 'Relation::LibOpt_SuboptimizerScopeElement::LibOpt_Issue::Issue.Description' value: 'The `LibOpt_Issues` which highlight potential issues about this `LibOpt_SuboptimizerScopeElement`.'
  id: 'Relation::LibOpt_SuboptimizerScopeElement::LibOpt_Issue::Issue.Name' value: 'Issue'
  id: 'Relation::LibOpt_SuboptimizerScopeElement::LibOpt_ScopeElement::ScopeElement.Description' value: 'This relation links this `LibOpt_ScopeElement` with the `LibOpt_Suboptimizers` which use it as part of their input/output `LibOpt_Scopes`, through the N-M object `LibOpt_SuboptimizerScopeElement`.'
  id: 'Relation::LibOpt_SuboptimizerScopeElement::LibOpt_ScopeElement::ScopeElement.Name' value: 'ScopeElement'
  id: 'Relation::LibOpt_SuboptimizerScopeElement::LibOpt_Suboptimizer::Suboptimizer.Description' value: 'This relation links this `LibOpt_Suboptimizer` to `LibOpt_ScopeElements` which are part of its input/output `LibOpt_Scopes`, through the N-M object `LibOpt_SuboptimizerScopeElement`.'
  id: 'Relation::LibOpt_SuboptimizerScopeElement::LibOpt_Suboptimizer::Suboptimizer.Name' value: 'Suboptimizer'
  id: 'Relation::LibOpt_SwitchPriority::LibOpt_LinkPriority::First.Name' value: 'First'
  id: 'Relation::LibOpt_SwitchPriority::LibOpt_LinkPriority::Last.Name' value: 'Last'
  id: 'Relation::LibOpt_SwitchPriority::LibOpt_LinkPriority::LinkPriority.Name' value: 'LinkPriority'
  id: 'Relation::LibOpt_SwitchProbability::LibOpt_LinkProbability::LinkProbability.Name' value: 'LinkProbability'
  id: 'Relation::LibOpt_SwitchRoundRobin::LibOpt_LinkRoundRobin::First.Name' value: 'First'
  id: 'Relation::LibOpt_SwitchRoundRobin::LibOpt_LinkRoundRobin::Last.Name' value: 'Last'
  id: 'Relation::LibOpt_SwitchRoundRobin::LibOpt_LinkRoundRobin::LinkRoundRobin.Name' value: 'LinkRoundRobin'
  id: 'Relation::LibOpt_Task::LibOpt_BreakpointEvent::BreakpointEvent.Name' value: 'BreakpointEvent'
  id: 'Relation::LibOpt_Task::LibOpt_BreakpointPosition::ComponentPosition.Name' value: 'ComponentPosition'
  id: 'Relation::LibOpt_Task::LibOpt_Component::Component.Name' value: 'Component'
  id: 'Relation::LibOpt_Task::LibOpt_CurrentTransaction::AsFirstTaskOnCurrentTransaction.Name' value: 'AsFirstTaskOnCurrentTransaction'
  id: 'Relation::LibOpt_Task::LibOpt_CurrentTransaction::AsLastTaskOnCurrentTransaction.Name' value: 'AsLastTaskOnCurrentTransaction'
  id: 'Relation::LibOpt_Task::LibOpt_CurrentTransaction::CurrentTransaction.Name' value: 'CurrentTransaction'
  id: 'Relation::LibOpt_Task::LibOpt_Link::Link.Description' value: 'The `LibOpt_Task` was created by traversing this `LibOpt_Link`.'
  id: 'Relation::LibOpt_Task::LibOpt_Link::Link.Name' value: 'Link'
  id: 'Relation::LibOpt_Task::LibOpt_Run::Run.Name' value: 'Run'
  id: 'Relation::LibOpt_Task::LibOpt_Scope::Scope.Description' value: 'The `LibOpt_Scope` the `LibOpt_Component` is supposed to work on.\n\nThe `LibOpt_Scope` is not owned, since we want to be able to store the `LibOpt_Scope` in a `LibOpt_Snapshot`, when the `LibOpt_Task` is completed.'
  id: 'Relation::LibOpt_Task::LibOpt_Scope::Scope.Name' value: 'Scope'
  id: 'Relation::LibOpt_Task::LibOpt_Scope::ScopeCreated.Name' value: 'ScopeCreated'
  id: 'Relation::LibOpt_Task::LibOpt_SnapshotComponent::SnapshotComponent.Name' value: 'SnapshotComponent'
  id: 'Relation::LibOpt_Task::LibOpt_Task::Children.Name' value: 'Children'
  id: 'Relation::LibOpt_Task::LibOpt_Task::NextTaskOnCurrentTransaction.Name' value: 'NextTaskOnCurrentTransaction'
  id: 'Relation::LibOpt_Task::LibOpt_Task::Parent.Name' value: 'Parent'
  id: 'Relation::LibOpt_Task::LibOpt_Task::PreviousTaskOnCurrentTransaction.Name' value: 'PreviousTaskOnCurrentTransaction'
  id: 'Relation::LibOpt_Task::LibOpt_TaskContext::TaskContext.Name' value: 'TaskContext'
  id: 'Relation::LibOpt_TaskContext::LibOpt_Task::Task.Name' value: 'Task'
  id: 'Relation::LibOpt_TaskContextIterator::LibOpt_Scope::FirstScope.Name' value: 'FirstScope'
  id: 'Relation::LibOpt_TaskContextIterator::LibOpt_Scope::LastScope.Name' value: 'LastScope'
  id: 'Relation::LibOpt_TaskContextIterator::LibOpt_Scope::Scope.Description' value: 'This relation is used to keep track of the set of scopes that belong to a ForEachScope iterator'
  id: 'Relation::LibOpt_TaskContextIterator::LibOpt_Scope::Scope.Name' value: 'Scope'
  id: 'Relation::LibOpt_TaskTransporter::LibOpt_Link::Link.Name' value: 'Link'
  id: 'Relation::LibOpt_TaskTransporterDistributed::LibOpt_DistributedMessage::DistributedMessage.Name' value: 'DistributedMessage'
  id: 'Relation::LibOpt_UIAnalysisScopeElement::LibOpt_Analysis::Analysis.Name' value: 'Analysis'
  id: 'Relation::LibOpt_UIAnalysisScopeElement::LibOpt_ScopeElement::ScopeElement.Name' value: 'ScopeElement'
  id: 'Relation::LibOpt_UIConditionalType::LibOpt_UIOwner::UIOwner.Name' value: 'UIOwner'
  id: 'Relation::LibOpt_UIDataPoint::LibOpt_UIOwner::UIOwner.Description' value: 'The owning relation of the `LibOpt_UIDataPoint`.\n\nThe `LibOpt_UIDataPoint` is not intended to be created in a dataset, but only as shadow object in the client.\nThe `LibOpt_UIOwner` is the owner, so we can have a `LibOpt_UIOwner` object owned by a `DataHolder` on the client, that in turn owns multiple `LibOpt_UIDataPoints`.'
  id: 'Relation::LibOpt_UIDataPoint::LibOpt_UIOwner::UIOwner.Name' value: 'UIOwner'
  id: 'Relation::LibOpt_UIGraph::LibOpt_Run::Run.Name' value: 'Run'
  id: 'Relation::LibOpt_UIGraph::LibOpt_UIGraphNode::UIGraphNode.Name' value: 'UIGraphNode'
  id: 'Relation::LibOpt_UIGraph::LibOpt_UIGraphRow::First.Name' value: 'First'
  id: 'Relation::LibOpt_UIGraph::LibOpt_UIGraphRow::Last.Name' value: 'Last'
  id: 'Relation::LibOpt_UIGraph::LibOpt_UIGraphRow::UIGraphRow.Name' value: 'UIGraphRow'
  id: 'Relation::LibOpt_UIGraphArc::LibOpt_Link::AsFirst.Name' value: 'AsFirst'
  id: 'Relation::LibOpt_UIGraphArc::LibOpt_Link::AsLast.Name' value: 'AsLast'
  id: 'Relation::LibOpt_UIGraphArc::LibOpt_Link::Link.Name' value: 'Link'
  id: 'Relation::LibOpt_UIGraphArc::LibOpt_UIGraphArc::Next.Name' value: 'Next'
  id: 'Relation::LibOpt_UIGraphArc::LibOpt_UIGraphArc::Previous.Name' value: 'Previous'
  id: 'Relation::LibOpt_UIGraphArc::LibOpt_UIGraphArcPoint::First.Name' value: 'First'
  id: 'Relation::LibOpt_UIGraphArc::LibOpt_UIGraphArcPoint::Last.Name' value: 'Last'
  id: 'Relation::LibOpt_UIGraphArc::LibOpt_UIGraphArcPoint::UIGraphArcPoint.Name' value: 'UIGraphArcPoint'
  id: 'Relation::LibOpt_UIGraphArc::LibOpt_UIGraphNode::Destination.Name' value: 'Destination'
  id: 'Relation::LibOpt_UIGraphArc::LibOpt_UIGraphNode::Origin.Name' value: 'Origin'
  id: 'Relation::LibOpt_UIGraphArcPoint::LibOpt_UIGraphArc::AsFirst.Name' value: 'AsFirst'
  id: 'Relation::LibOpt_UIGraphArcPoint::LibOpt_UIGraphArc::AsLast.Name' value: 'AsLast'
  id: 'Relation::LibOpt_UIGraphArcPoint::LibOpt_UIGraphArc::UIGraphArc.Name' value: 'UIGraphArc'
  id: 'Relation::LibOpt_UIGraphArcPoint::LibOpt_UIGraphArcPoint::Next.Name' value: 'Next'
  id: 'Relation::LibOpt_UIGraphArcPoint::LibOpt_UIGraphArcPoint::Previous.Name' value: 'Previous'
  id: 'Relation::LibOpt_UIGraphNode::LibOpt_Component::Component.Name' value: 'Component'
  id: 'Relation::LibOpt_UIGraphNode::LibOpt_UIGraph::UIGraph.Name' value: 'UIGraph'
  id: 'Relation::LibOpt_UIGraphNode::LibOpt_UIGraphArc::Incoming.Name' value: 'Incoming'
  id: 'Relation::LibOpt_UIGraphNode::LibOpt_UIGraphArc::Outgoing.Name' value: 'Outgoing'
  id: 'Relation::LibOpt_UIGraphNode::LibOpt_UIGraphNode::Next.Name' value: 'Next'
  id: 'Relation::LibOpt_UIGraphNode::LibOpt_UIGraphNode::Previous.Name' value: 'Previous'
  id: 'Relation::LibOpt_UIGraphNode::LibOpt_UIGraphRow::AsFirst.Name' value: 'AsFirst'
  id: 'Relation::LibOpt_UIGraphNode::LibOpt_UIGraphRow::AsLast.Name' value: 'AsLast'
  id: 'Relation::LibOpt_UIGraphNode::LibOpt_UIGraphRow::UIGraphRow.Name' value: 'UIGraphRow'
  id: 'Relation::LibOpt_UIGraphRow::LibOpt_UIGraph::AsFirst.Name' value: 'AsFirst'
  id: 'Relation::LibOpt_UIGraphRow::LibOpt_UIGraph::AsLast.Name' value: 'AsLast'
  id: 'Relation::LibOpt_UIGraphRow::LibOpt_UIGraph::UIGraph.Name' value: 'UIGraph'
  id: 'Relation::LibOpt_UIGraphRow::LibOpt_UIGraphNode::First.Name' value: 'First'
  id: 'Relation::LibOpt_UIGraphRow::LibOpt_UIGraphNode::Last.Name' value: 'Last'
  id: 'Relation::LibOpt_UIGraphRow::LibOpt_UIGraphNode::UIGraphNode.Name' value: 'UIGraphNode'
  id: 'Relation::LibOpt_UIGraphRow::LibOpt_UIGraphRow::Next.Name' value: 'Next'
  id: 'Relation::LibOpt_UIGraphRow::LibOpt_UIGraphRow::Previous.Name' value: 'Previous'
  id: 'Relation::LibOpt_UIOwner::LibOpt_UIConditionalType::UIConditionalType.Name' value: 'UIConditionalType'
  id: 'Relation::LibOpt_UIOwner::LibOpt_UIDataPoint::UIDataPoint.Description' value: 'The owning relation of the `LibOpt_UIDataPoint`.\n\nThe `LibOpt_UIDataPoint` is not intended to be created in a dataset, but only as shadow object in the client.\nThe `LibOpt_UIOwner` is the owner, so we can have a `LibOpt_UIOwner` object owned by a `DataHolder` on the client, that in turn owns multiple `LibOpt_UIDataPoints`.'
  id: 'Relation::LibOpt_UIOwner::LibOpt_UIDataPoint::UIDataPoint.Name' value: 'UIDataPoint'
  id: 'Relation::LibOpt_UIOwner::LibOpt_UIScopeTag::UIScopeTag.Name' value: 'UIScopeTag'
  id: 'Relation::LibOpt_UIOwner::LibOpt_UISnapshotAttribute::UISnapshotAttribute.Name' value: 'UISnapshotAttribute'
  id: 'Relation::LibOpt_UIScopeTag::LibOpt_UIOwner::UIOwner.Name' value: 'UIOwner'
  id: 'Relation::LibOpt_UISnapshotAttribute::LibOpt_Snapshot::Snapshot.Name' value: 'Snapshot'
  id: 'Relation::LibOpt_UISnapshotAttribute::LibOpt_UIOwner::UIOwner.Name' value: 'UIOwner'
  id: 'Type::LibOpt_AlgorithmStopwatch.Description' value: 'The `LibOpt_AlgorithmStopwatch` is used to time the execution of an `Algorithm`.\nThe `Start`, `Stop` and `Read` methods will respectively start the stopwatch, stop the stopwatch and return the measured time.\nThe value of the `LibOpt_AlgorithmStopwatch` will be stored in the `Algorithm`. This allows us to use the `LibOpt_AlgorithmStopwatch` within an async algorithm execution, like a `POAAlgorithm`.\nThe methods mentioned above require an identifier, so we can have multiple stopwatches, for example, one for the initialization, one for the execution and one for handling result.'
  id: 'Type::LibOpt_AlgorithmStopwatch.Name' value: 'LibOpt_AlgorithmStopwatch'
  id: 'Type::LibOpt_Analysis.Description' value: 'The closure object of an analysis.\nAn analysis object contains `LibOpt_AnalysisCorrelations`, `LibOpt_AnalysisFilters` and `LibOpt_UIAnalysisScopeElements`.\nThe `LibOpt_AnalysisCorrelations` show the snapshot attributes that are analyzed.\nThe `LibOpt_UIAnalysisScopeElements` show the scope elements that are analyzed. These live at the client side.\nBoth the `LibOpt_AnalysisCorrelations` and `LibOpt_UIAnalysisScopeElements` group and aggregate data from multiple snapshots.\nThe `LibOpt_AnalysisFilters` allow to filter some snapshots, so they are not in any of the groups and not aggregated. This allows more in-depth analysis.'
  id: 'Type::LibOpt_Analysis.Name' value: 'LibOpt_Analysis'
  id: 'Type::LibOpt_AnalysisAttribute.Description' value: 'This object represents a single attribute of a snapshot from the `LibOpt_Component`.\nThis groups `LibOpt_AnalysisSnapshotAttributes` that represent the same attribute.'
  id: 'Type::LibOpt_AnalysisAttribute.Name' value: 'LibOpt_AnalysisAttribute'
  id: 'Type::LibOpt_AnalysisCorrelation.Description' value: 'The correlation object combines two snapshot attributes together and shows statistics about these two.\nIn the TC a plot can be shown of the correlated attributes, together with the statistics.\nThe statistics concerning one snapshot attribute (Min, Median, Max, etc.) work on the snapshot attribute on the Y axis, unlike things like Covariance which use both X and Y axis.'
  id: 'Type::LibOpt_AnalysisCorrelation.Name' value: 'LibOpt_AnalysisCorrelation'
  id: 'Type::LibOpt_AnalysisCorrelationPoint.Description' value: 'A single correlation instance. This combines two snapshot attributes together; these snapshot attributes belong to the same iteration.\n\nThis object is used as the data on which the `LibOpt_AnalysisCorrelation` calculates and each element is also a dot in the chart in the thin client.'
  id: 'Type::LibOpt_AnalysisCorrelationPoint.Name' value: 'LibOpt_AnalysisCorrelationPoint'
  id: 'Type::LibOpt_AnalysisFilter.Description' value: 'A filter that filters certain snapshots out, such that they do not show up in the list of snapshots.'
  id: 'Type::LibOpt_AnalysisFilter.Name' value: 'LibOpt_AnalysisFilter'
  id: 'Type::LibOpt_AnalysisFilterAttribute.Description' value: "A filter that filters snapshots that are not in the iteration with a snapshot that has the specified attribute and value equation.\nSo, if `AttributeName` is 'Att', `Sense` is '<', `Value` is `42` and `Component` is `MyComponent`,\nthen all snapshots are filtered out which do not have a snapshot in its iteration that is created by the `MyComponent` component and have an attribute named `Att` whose value is lower than `42`."
  id: 'Type::LibOpt_AnalysisFilterAttribute.Name' value: 'LibOpt_AnalysisFilterAttribute'
  id: 'Type::LibOpt_AnalysisFilterBoolean.Description' value: 'An abstract type used for boolean operators like "and" and "or".'
  id: 'Type::LibOpt_AnalysisFilterBoolean.Name' value: 'LibOpt_AnalysisFilterBoolean'
  id: 'Type::LibOpt_AnalysisFilterBooleanAnd.Description' value: 'A filter that combines other filters: all its children need to return true.'
  id: 'Type::LibOpt_AnalysisFilterBooleanAnd.Name' value: 'LibOpt_AnalysisFilterBooleanAnd'
  id: 'Type::LibOpt_AnalysisFilterBooleanOr.Description' value: 'A filter that combines other filters: one of its children need to return true.'
  id: 'Type::LibOpt_AnalysisFilterBooleanOr.Name' value: 'LibOpt_AnalysisFilterBooleanOr'
  id: 'Type::LibOpt_AnalysisFilterPath.Description' value: 'A filter that returns true if the associated component is part of the iteration of the snapshot.'
  id: 'Type::LibOpt_AnalysisFilterPath.Name' value: 'LibOpt_AnalysisFilterPath'
  id: 'Type::LibOpt_AnalysisFilterScopeElement.Description' value: 'A snapshot filter that filters snapshots that do not have the given scope element as input or output (can be set with `AsInputScope`) and a specific `Tag` if `UseTag` is set.'
  id: 'Type::LibOpt_AnalysisFilterScopeElement.Name' value: 'LibOpt_AnalysisFilterScopeElement'
  id: 'Type::LibOpt_AnalysisSnapshot.Description' value: 'This type is an extension to the `LibOpt_SnapshotComponent`. That is: it has a 1:1 relation to `LibOpt_SnapshotComponent` and it is used to add additional functionality to the `LibOpt_SnapshotComponent`.\nAll analysis specific functionality is put on this object.'
  id: 'Type::LibOpt_AnalysisSnapshot.Name' value: 'LibOpt_AnalysisSnapshot'
  id: 'Type::LibOpt_AnalysisSnapshotAttribute.Description' value: 'This object represents a single attribute on a single snapshot.\nWhen analyzing a `LibOpt_Run`, a `LibOpt_AnalysisSnapshotAttribute` will be created for each attribute on each `LibOpt_Snapshot`.\nThis object contains the value of the attribute and is a N:M relation between the `LibOpt_AnalysisAttribute` to the `LibOpt_AnalysisSnapshot`.'
  id: 'Type::LibOpt_AnalysisSnapshotAttribute.Name' value: 'LibOpt_AnalysisSnapshotAttribute'
  id: 'Type::LibOpt_Anchor.Description' value: 'The `LibOpt_Anchor` class is used to store anchor-specific information about a `LibOpt_ScopeElementOnRun`.\nThe `LibOpt_AnchorPicker` can use the information on the `LibOpt_Anchor` to select an anchor.'
  id: 'Type::LibOpt_Anchor.Name' value: 'LibOpt_Anchor'
  id: 'Type::LibOpt_AnchorPicker.Description' value: 'The `LibOpt_AnchorPicker` is meant to select one `LibOpt_ScopeElement` from a set of `LibOpt_ScopeElements`.\nThe selected `LibOpt_ScopeElement` will then be sent to the `LibOpt_NeighborhoodCreator` to create a subpuzzle.\n\nWe expect the `LibOpt_AnchorPicker` to be subclassed for all required ways of selecting an anchor that are not out-of-the-box.'
  id: 'Type::LibOpt_AnchorPicker.Name' value: 'LibOpt_AnchorPicker'
  id: 'Type::LibOpt_AnchorPickerRandom.Description' value: 'The `LibOpt_AnchorPickerRandom` returns an anchor at random. Each `LibOpt_ScopeElement` has the same probability of being selected.'
  id: 'Type::LibOpt_AnchorPickerRandom.Name' value: 'LibOpt_AnchorPickerRandom'
  id: 'Type::LibOpt_AnchorPickerRoundRobin.Description' value: 'The `LibOpt_AnchorPickerRoundRobin` returns each anchor in a FIFO way; the `LibOpt_ScopeElement` that was selected the longest time ago will be selected.'
  id: 'Type::LibOpt_AnchorPickerRoundRobin.Name' value: 'LibOpt_AnchorPickerRoundRobin'
  id: 'Type::LibOpt_AnchorSet.Description' value: 'The `LibOpt_AnchorSet` returns a set of `LibOpt_ScopeElements` that can be selected as anchor\nThese `LibOpt_ScopeElements` will then be sent to the `LibOpt_AnchorPicker` to pick one of these.\n\nWe expect the `LibOpt_AnchorSet` to be subclassed for all required sets of anchors that are not out-of-the-box available.\nBefore subclassing, please have a look at the `LibOpt_AnchorSetFilter`. This may be a more appropriate type to subclass from.'
  id: 'Type::LibOpt_AnchorSet.Name' value: 'LibOpt_AnchorSet'
  id: 'Type::LibOpt_AnchorSetAll.Description' value: 'The `LibOpt_AnchorSetAll` marks all `LibOpt_ScopeElements` in the `LibOpt_Scope` as potential anchor.'
  id: 'Type::LibOpt_AnchorSetAll.Name' value: 'LibOpt_AnchorSetAll'
  id: 'Type::LibOpt_AnchorSetFilter.Description' value: 'The `LibOpt_AnchorSetFilter` marks a specific subset of `LibOpt_ScopeElements` in the `LibOpt_Scope` as potential anchor.\nThe specific subset can be determined in the `Filter` method per `LibOpt_ScopeElement`.\n\nWe expect the `LibOpt_AnchorSetFilter` to be subclassed for all required sets of anchors that are not out-of-the-box available and that can be filtered per scope element.'
  id: 'Type::LibOpt_AnchorSetFilter.Name' value: 'LibOpt_AnchorSetFilter'
  id: 'Type::LibOpt_AnchorSetType.Description' value: 'The `LibOpt_AnchorSetType` marks all `LibOpt_ScopeElements` as potential anchors, that have the same type as (or are derived from) the type with name `TypeName` attribute.'
  id: 'Type::LibOpt_AnchorSetType.Name' value: 'LibOpt_AnchorSetType'
  id: 'Type::LibOpt_AvailabilityChecker.Description' value: 'The `LibOpt_AvailabilityChecker` is used to determine if a given `LibOpt_LinkPriority` can be selected or not.\nThe `LibOpt_SwitchPriority` will choose the `LibOpt_LinkPriority` with the highest priority that has a `LibOpt_AvailabilityChecker` attached with a `CanBeChosen` method that returns true.\n\nWe expect the `LibOpt_AvailabilityChecker` to be subclassed for all uses for the `LibOpt_SwitchPriority` that are not defined out-of-the-box.'
  id: 'Type::LibOpt_AvailabilityChecker.Name' value: 'LibOpt_AvailabilityChecker'
  id: 'Type::LibOpt_AvailabilityCheckerAnchorSet.Description' value: 'A default `LibOpt_AvailabilityChecker` that returns true if the attached `LibOpt_AnchorSet` is not empty.'
  id: 'Type::LibOpt_AvailabilityCheckerAnchorSet.Name' value: 'LibOpt_AvailabilityCheckerAnchorSet'
  id: 'Type::LibOpt_AvailabilityCheckerBoolean.Description' value: 'A `LibOpt_AvailabilityChecker` that always returns true or false, depending on the value in the attribute `Value`.'
  id: 'Type::LibOpt_AvailabilityCheckerBoolean.Name' value: 'LibOpt_AvailabilityCheckerBoolean'
  id: 'Type::LibOpt_Beacon.Description' value: 'This type  is used to always find the one `LibOpt_Optimization` object in the dataset.'
  id: 'Type::LibOpt_Beacon.Name' value: 'LibOpt_Beacon'
  id: 'Type::LibOpt_Breakpoint.Description' value: 'The `LibOpt_Breakpoint` is a `LibOpt_BreakpointConditional` that always breaks.\nThe `Condition` method returns true no matter what.'
  id: 'Type::LibOpt_Breakpoint.Name' value: 'LibOpt_Breakpoint'
  id: 'Type::LibOpt_BreakpointConditional.Description' value: 'The `LibOpt_BreakpointConditional` allows the user to set a breakpoint in the execution of the components.\nWhen a `LibOpt_BreakpointConditional` is evaluated at a `LibOpt_BreakpointPosition` and the `Condition` method returns `true`, the execution of `LibOpt_Run` will be paused.\nWhen paused, a new `LibOpt_BreakpointEvent` will be instantiated.\nThe execution of the iteration resumes after the `LibOpt_BreakpointEvent` is released.\nA `LibOpt_BreakpointEvent` can be released by using the `LibOpt_BreakpointEvent.Continue` method, which can be triggered from the UI.'
  id: 'Type::LibOpt_BreakpointConditional.Name' value: 'LibOpt_BreakpointConditional'
  id: 'Type::LibOpt_BreakpointConditionalOnComponent.Description' value: 'An N:M relation between the `LibOpt_BreakpointConditional` and the `LibOpt_BreakpointPosition`.\nWhen a breakpoint is set, it is linked to all the `LibOpt_Runs`.  Every breakpoint should only link to at most 1 `LibOpt_BreakpointPosition` per `LibOpt_Run`.'
  id: 'Type::LibOpt_BreakpointConditionalOnComponent.Name' value: 'LibOpt_BreakpointConditionalOnComponent'
  id: 'Type::LibOpt_BreakpointEvent.Description' value: 'The `LibOpt_BreakpointEvent` is created to show at which point the component flow is paused by a `LibOpt_BreakpointConditional`.\nWhen the `LibOpt_BreakpointEvent` is released, the component flow resumes.\nReleasing a `LibOpt_BreakpointEvent` can be done by calling the `Continue` method.\nAdditionally, the `LibOpt_BreakpointEvent` can be temporarily released, either by calling the `ContinueComponent` or `ContinueStep` method.\nThese will execute a single component or until the next `LibOpt_BreakpointPosition` respectively.'
  id: 'Type::LibOpt_BreakpointEvent.Name' value: 'LibOpt_BreakpointEvent'
  id: 'Type::LibOpt_BreakpointPosition.Description' value: "Note: The `LibOpt_BreakpointPosition` name is deprecated. This type will be renamed to `LibOpt_BreakpointPosition` in LibOpt 3.0. We cannot rename this type right now because of upgradability reasons. \nAll variables, comments and documentation are already refering to the new name. \n\nThe `LibOpt_BreakpointPosition` represents a specific point in time during the execution of a component.\nThese component positions can be viewed in the 'Component positions' forms. \n\nWhen a `LibOpt_DatasetCopyConditional` is attached to a `LibOpt_BreakpointPosition` then the `LibOpt_DatasetCopyConditional.CreateCondition` method is evaluated when the `LibOpt_Run` reaches that component position.\nWhen the `LibOpt_DatasetCopyConditional.CreateCondition` method returns `true`, then current dataset is copied. \nSimilarly, when a `LibOpt_BreakpointConditional` is attached to a `LibOpt_BreakpointPosition` and when the `LibOpt_BreakpointConditional.Condition` method returns `true`, then the run is paused at that component position. \n   \nThe `LibOpt_Component.RegisterComponentPosition` method can be called to create a new `LibOpt_BreakpointPosition`."
  id: 'Type::LibOpt_BreakpointPosition.Name' value: 'LibOpt_BreakpointPosition'
  id: 'Type::LibOpt_Channel.Description' value: 'An object that allows communication between different components.\n\nCommunication can only happen in the same iteration. This means that components that can never be in the same iteration, will not be able to directly communicate with one another.'
  id: 'Type::LibOpt_Channel.Name' value: 'LibOpt_Channel'
  id: 'Type::LibOpt_ChannelNotify.Description' value: 'A N:M relation between `LibOpt_Channel` and `LibOpt_Link` to signal when an `Algorithm` needs to be created and deleted.'
  id: 'Type::LibOpt_ChannelNotify.Name' value: 'LibOpt_ChannelNotify'
  id: 'Type::LibOpt_ChannelReader.Description' value: 'An object that allows a component to read from a `LibOpt_Channel`.\nOnly components with a `LibOpt_ChannelReader` associated can read from the channel.\n\nDo not borrow a `LibOpt_ChannelReader` from another component, as this may result in problems.'
  id: 'Type::LibOpt_ChannelReader.Name' value: 'LibOpt_ChannelReader'
  id: 'Type::LibOpt_ChannelWriter.Description' value: 'An object that allows the component to write a message on a `LibOpt_Channel`.\nOnly components with a `LibOpt_ChannelWriter` associated can write to the channel.\n\nDo not borrow a `LibOpt_ChannelWriter` from another component, as this may result in problems.'
  id: 'Type::LibOpt_ChannelWriter.Name' value: 'LibOpt_ChannelWriter'
  id: 'Type::LibOpt_Component.Description' value: 'A `LibOpt_Component` is a building block of the optimizer. It contains an atomic operation (in the context of an optimizer), defined in the `Operation` method.\nExecuting a single `LibOpt_Component` is usually not very interesing, but by composing multiple `LibOpt_Components` together we can create desired behavior.\n\nWhen we run the `LibOpt_Component`, we create a `LibOpt_SnapshotComponent` using the `LibOpt_SnapshotComponent::Create` method.\nThen we call the `Operation` method.\nNote that we expect the implementation of this method to return a stream where the `Continue` method is called.'
  id: 'Type::LibOpt_Component.Name' value: 'LibOpt_Component'
  id: 'Type::LibOpt_ComponentConfiguration.Description' value: "The `LibOpt_ComponentConfiguration` object is an abstract class that can be used by any object that needs a specific configuration to work.\nFor example, if a setting cannot be negative, we cannot enforce this in the type system, but we can show a warning. This type allows us to write the warning.\n\nBy overriding the `GetConfigurationErrors` method, a new check can be created which checks if the object is correctly configured. Don't forget to call `super.GetConfigurationErrors`!"
  id: 'Type::LibOpt_ComponentConfiguration.Name' value: 'LibOpt_ComponentConfiguration'
  id: 'Type::LibOpt_ComponentParent.Description' value: 'The `LibOpt_ComponentParent` is an intermediate `LibOpt_Component` subclass.\nWe expect other components to subclass from this class.\nThe `LibOpt_ComponentParent` adds the functionality to have exactly one link (`LibOpt_LinkSingle`) to another component. Except for `LibOpt_Switches` this is often a desired superclass.'
  id: 'Type::LibOpt_ComponentParent.Name' value: 'LibOpt_ComponentParent'
  id: 'Type::LibOpt_ComponentParentTemp.Description' value: 'Temporary abstract type between `LibOpt_Component` and `LibOpt_ComponentParent` for upgradability / backwards compatibility support of this model that introduces multi-child iterators.\nIt defines the `Next` relation to a `LibOpt_LinkSingle`.\nThis type will be removed in an upcoming release and its `Next` relation put back on `LibOpt_ComponentParent`.'
  id: 'Type::LibOpt_ComponentParentTemp.Name' value: 'LibOpt_ComponentParentTemp'
  id: 'Type::LibOpt_Conditional.Description' value: "The base type of all conditionals. This type has 2 direct subtypes:\n- `LibOpt_BreakpointConditional`, which is a supertype for all breakpoint types.\n    These breakpoint types can be used to conditionally pause the optimizer during an optimizer run by attaching a `LibOpt_BreakpointConditional` object to a `LibOpt_BreakpointPosition`. \n- `LibOpt_DatasetCopyConditional`, which is a supertype for all dataset copy types. \n    These dataset copy types can be used to conditionally create dataset copies during an optimizer run by attaching a `LibOpt_DatasetCopyConditional` object to a `LibOpt_BreakpointPosition`. \nBreakpoints and dataset copies can be set from various points in the UI. They are most commonly set from the 'Component positions' form."
  id: 'Type::LibOpt_Conditional.Name' value: 'LibOpt_Conditional'
  id: 'Type::LibOpt_ConfigurationSettings.Description' value: 'This type contains static methods to work with the settings defined in the configuration utility.'
  id: 'Type::LibOpt_ConfigurationSettings.Name' value: 'LibOpt_ConfigurationSettings'
  id: 'Type::LibOpt_ControllerRun.Description' value: 'If the `LibOpt_OptimizerRunController` is enabled, then a new `LibOpt_ControllerRun` gets created for each new `LibOpt_Run` that is requested. \nWhen the `LibOpt_Run` gets started/finished/aborted, then the status of the `LibOpt_ControllerRun` is also updated.\nThe status of the `LibOpt_ControllerRun` is used by the `LibOpt_OptimizerRunController` to determine whether new `LibOpt_Runs` can start.'
  id: 'Type::LibOpt_ControllerRun.Name' value: 'LibOpt_ControllerRun'
  id: 'Type::LibOpt_CurrentTransaction.Name' value: 'LibOpt_CurrentTransaction'
  id: 'Type::LibOpt_DatasetCopyConditional.Description' value: "The subtypes of 'LibOpt_DatasetCopyConditional' can be used to conditionally create a copy of the current dataset during an optimizer run. This is done with the 'CreateCondition' method.\nThis copy can also be conditionally deleted during the optimizer run to save computational resources. See the 'DeleteCondition' method.\n\nThis type can be subclassed. New subclasses appear automatically in the form that opens when the 'Set conditional dataset copy' menu item is pressed. You may need to restart your TCE + TC.\nThis menu item can be found in the context menu of the component position form."
  id: 'Type::LibOpt_DatasetCopyConditional.Name' value: 'LibOpt_DatasetCopyConditional'
  id: 'Type::LibOpt_DatasetCopyConditionalNotSelectable.Description' value: "The `LibOpt_DatasetCopyConditional` types that are a subtype of this `LibOpt_DatasetCopyConditionalNotSelectable` type cannot be selected from the 'Select conditional type' dialog. \nThis dialog can be found by first opening the context menu of a `LibOpt_BreakpointPosition` and by then pressing the 'Set conditional dataset copy...' menu.\n\nYou are not expected to subclass this type, please consider subclassing `LibOpt_DatasetCopyConditional` instead."
  id: 'Type::LibOpt_DatasetCopyConditionalNotSelectable.Name' value: 'LibOpt_DatasetCopyConditionalNotSelectable'
  id: 'Type::LibOpt_DatasetCopyOnAnyDownstreamCopy.Description' value: "The dataset will be copied when the optimizer reaches this component position. This dataset copy will be deleted when all downstream dataset copies have been deleted (or when no downstream dataset copies exist). \nDataset copies count as 'downstream' when the dataset is copied on any downstream component or when the dataset is copied on this component after the `LibOpt_DatasetCopyOnAnyDownstreamCopy` dataset copy is created.  \nIn particular, dataset copies that are attached to any upstream 'Finalize' `LibOpt_BreakpointPositions` are not downstream dataset copies of the `LibOpt_DatasetCopyOnAnyDownstreamCopy` dataset copy, even though these dataset copies are created after the `LibOpt_DatasetCopyOnAnyDownstreamCopy` dataset copy is created.\nAlso, when a `LibOpt_DatasetCopyOnAnyDownstreamCopy` dataset copy is attached to the 'Continue' `LibOpt_BreakpointPosition`, then a dataset copy that is attached to the 'Initialize' `LibOpt_BreakpointPosition` of that component is not a downstream dataset copy.\n\nPlease don't subclass this type. This will break the unit tests."
  id: 'Type::LibOpt_DatasetCopyOnAnyDownstreamCopy.Name' value: 'LibOpt_DatasetCopyOnAnyDownstreamCopy'
  id: 'Type::LibOpt_DatasetCopyOnChangeRollbackKPI.Description' value: 'Please extend the `DeleteCondition` method before using this type! The dataset will be copied when the optimizer reaches this component position. This dataset copy will be deleted when the difference between the pre and post handle result KPI of this component (or the next component with a rollback KPI) is outside of the range that is specified in the `DeleteCondition` method. If the `DeleteCondition` method is not extended, then the dataset copy will always be deleted, unless no rollback KPI snapshot can be found.'
  id: 'Type::LibOpt_DatasetCopyOnChangeRollbackKPI.Name' value: 'LibOpt_DatasetCopyOnChangeRollbackKPI'
  id: 'Type::LibOpt_DatasetCopyOnRollbackOrError.Description' value: "The dataset will be copied when the optimizer reaches this component position. This dataset copy will be deleted when there is no rollback or error on this component or on any downstream components.\n\nPlease don't subclass this type. This will break the unit tests."
  id: 'Type::LibOpt_DatasetCopyOnRollbackOrError.Name' value: 'LibOpt_DatasetCopyOnRollbackOrError'
  id: 'Type::LibOpt_DatasetCopyUnconditional.Description' value: "The dataset will be copied when the optimizer reaches the component position to which this `LibOpt_DatasetCopyUnconditional` is attached. This dataset copy will not be automatically deleted by the optimizer.\n\nPlease don't subclass this type. This will break the unit tests."
  id: 'Type::LibOpt_DatasetCopyUnconditional.Name' value: 'LibOpt_DatasetCopyUnconditional'
  id: 'Type::LibOpt_DistributedMessage.Name' value: 'LibOpt_DistributedMessage'
  id: 'Type::LibOpt_DistributedMessageSnapshot.Name' value: 'LibOpt_DistributedMessageSnapshot'
  id: 'Type::LibOpt_Group.Description' value: 'A group to which a scope element can belong inside a scope.\n\nTypical use cases of this feature are:\n - Marking a scope element as the anchor in the subpuzzle.\n - Marking scope elements that may not be replanned, but only function as the boundaries of the subpuzzle.\n - Marking scope elements as required to be planned.'
  id: 'Type::LibOpt_Group.Name' value: 'LibOpt_Group'
  id: 'Type::LibOpt_Issue.Name' value: 'LibOpt_Issue'
  id: 'Type::LibOpt_Iteration.Name' value: 'LibOpt_Iteration'
  id: 'Type::LibOpt_IterationPart.Description' value: 'An object representing a part of an iteration.\nThis contains a set of snapshots that should be within one or more iterations.'
  id: 'Type::LibOpt_IterationPart.Name' value: 'LibOpt_IterationPart'
  id: 'Type::LibOpt_IterationPartNM.Description' value: 'An NM object used to link iteration parts together.'
  id: 'Type::LibOpt_IterationPartNM.Name' value: 'LibOpt_IterationPartNM'
  id: 'Type::LibOpt_IterationThread.Description' value: 'Helper object to show which components are executed in parallel'
  id: 'Type::LibOpt_IterationThread.Name' value: 'LibOpt_IterationThread'
  id: 'Type::LibOpt_Iterator.Description' value: "A `LibOpt_Iterator` is an intermediate `LibOpt_Component` subtype. \nWe expect other components to subtype from this type.\nA `LibOpt_Iterator` creates multiple `LibOpt_Tasks` for each `LibOpt_Task` it receives.\n\nSince this is an abstract type, the following behaviors are not specified on this level:\nIt is not specified whether these created `LibOpt_Tasks` are sent to the same component or to different ones.\nIt is not specified how many `LibOpt_Tasks` are created for each incoming `LibOpt_Task`.\nThe scopes of the created `LibOpt_Tasks` are not specified. They may be different from one another.\nIt is not specified whether the created `LibOpt_Tasks` are created to run concurrently.\n\nHow to subclass:\nWe've provided a lot of functionality already for you out-of-the-box. In most cases, the methods to override will be `StartIterations` and `Progress`.\nThe `StartIterations` need to contain a loop with the condition `this.CanStartIteration( context )` to see if an additional iteration can be spawned.\nIt is also advised to add an additional condition that may stop the loop, as you may otherwise create an iterator that never stops.\nIn the body of the loop you need to call `this.StartIteration( task, context )` or any of its similarly named methods.\nThe stream results of these methods need to be merged into a single stream and this stream should be returned.\n\nA generic example:\nresult := stream[JSON]::Success();\n\nwhile( this.MyCondition()\n       and this.CanStartIteration( context ) )\n{\n    result := result->Merge( this.StartIteration( task, context, scope ) );\n}\n\nreturn result;\n\nNote: this.MyCondition() is a method in this example that returns a boolean if the iterator should stop.\n\n`LibOpt_Iterator` is a subtype of `LibOpt_ComponentParentTemp` for backward compatibility reasons.\nThis will change in a future release. Model elements that are defined by `LibOpt_ComponentParentTemp` are not to be used by `LibOpt_Iterator` objects."
  id: 'Type::LibOpt_Iterator.Name' value: 'LibOpt_Iterator'
  id: 'Type::LibOpt_IteratorForEachLink.Description' value: "This iterator forks ingoing tasks to one per outgoing link.\nThe outgoing links are sorted, and tasks are created in order of this sorting. At most `MaxParallel` tasks are run at the same time. All created tasks work on the incoming task's scope.\n\nThere are two special cases worth pointing out:\n`MaxParallel` = 1 results in a sequencing behavior: a task for one link is only created once the task of the previous link has finished.\n`MaxParallel` >= #( outgoing links ) results in a parallelizer: each incoming task is instantly multiplied into one concurrent task per outgoing link."
  id: 'Type::LibOpt_IteratorForEachLink.Name' value: 'LibOpt_IteratorForEachLink'
  id: 'Type::LibOpt_IteratorForEachScope.Name' value: 'LibOpt_IteratorForEachScope'
  id: 'Type::LibOpt_IteratorParent.Description' value: 'A `LibOpt_IteratorParent` is an intermediate `LibOpt_Iterator` subtype.\nWe expect other components to subtype from this type.\nThe `LibOpt_IteratorParent` adds the functionality to have exactly one link (`LibOpt_LinkIteratorSingle`) to another component.'
  id: 'Type::LibOpt_IteratorParent.Name' value: 'LibOpt_IteratorParent'
  id: 'Type::LibOpt_IteratorScopeProvider.Name' value: 'LibOpt_IteratorScopeProvider'
  id: 'Type::LibOpt_IteratorScopeProviderPartition.Name' value: 'LibOpt_IteratorScopeProviderPartition'
  id: 'Type::LibOpt_IteratorUntil.Description' value: 'The `LibOpt_IteratorUntil` is a `LibOpt_Component` that repeats the `LibOpt_Task` it receives to the `LibOpt_Component` linked to it multiple times.\nThe `LibOpt_IteratorUntil` continues repeating the `LibOpt_Task` until its `LibOpt_Task` is aborted or the `LibOpt_StopCriterion` triggers.\nRepeating a `LibOpt_Task` means that a new `LibOpt_Task` will be created with the same `LibOpt_Scope` as the `LibOpt_Task` that is being repeated.\n\nThe `LibOpt_IteratorUntil` will continue repeating the `LibOpt_Task` concurrently. This means that while the `LibOpt_IteratorUntil` starts one iteration, the `LibOpt_IteratorUntil` can start another even though the first is not yet finished.\nThe setting `MaxParallel` will determine the maximum number of iterations that the `LibOpt_IteratorUntil` can have running concurrently.'
  id: 'Type::LibOpt_IteratorUntil.Name' value: 'LibOpt_IteratorUntil'
  id: 'Type::LibOpt_KPI.Description' value: 'The `LibOpt_KPI` object provides a mechanism for capturing the KPIs relevant to your optimizer.\nThis object could capture a single KPI or a set of KPIs aggregated together. That choice is up to you.\nThere are subclasses `LibOpt_KPIGlobal` and `LibOpt_KPILocal`. \nEach subclass has an intended purpose and should be used appropriately.'
  id: 'Type::LibOpt_KPI.Name' value: 'LibOpt_KPI'
  id: 'Type::LibOpt_KPIGlobal.Description' value: '`LibOpt_KPIGlobal` is a KPI that is defined for the global plan.\nThe `LibOpt_KPIGlobal.Capture` method does not have any arguments and expects the main planning object to be retrieved and used during execution.'
  id: 'Type::LibOpt_KPIGlobal.Name' value: 'LibOpt_KPIGlobal'
  id: 'Type::LibOpt_KPILocal.Description' value: '`LibOpt_KPILocal` is a KPI defined for a `LibOpt_Scope`.\nThe method `LibOpt_KPILocal.Capture` expects a `LibOpt_Task` to be passed in.\nThe `LibOpt_Task` will hold the `LibOpt_Scope` that the KPI will be calculated from.'
  id: 'Type::LibOpt_KPILocal.Name' value: 'LibOpt_KPILocal'
  id: 'Type::LibOpt_KPIOnRollbackKPI.Description' value: 'N:M object to connect `LibOpt_KPI` and `LibOpt_RollbackKPI`'
  id: 'Type::LibOpt_KPIOnRollbackKPI.Name' value: 'LibOpt_KPIOnRollbackKPI'
  id: 'Type::LibOpt_KPIOnRun.Description' value: 'N:M object that connects `LibOpt_KPIs` and a `LibOpt_Run` that will optimize those kpis'
  id: 'Type::LibOpt_KPIOnRun.Name' value: 'LibOpt_KPIOnRun'
  id: 'Type::LibOpt_Link.Description' value: 'The `LibOpt_Link` object links two `LibOpt_Components` together.\nEach `LibOpt_Link` contains a `LibOpt_TaskTransporter` that knows how the `LibOpt_Link` should be executed.'
  id: 'Type::LibOpt_Link.Name' value: 'LibOpt_Link'
  id: 'Type::LibOpt_LinkIteratorForEach.Description' value: 'An outgoing link of the `LibOpt_IteratorForEachLink` component.\nIt is linked to the `LibOpt_IteratorForEachLink` in a specific order; sorted procedurally.'
  id: 'Type::LibOpt_LinkIteratorForEach.Name' value: 'LibOpt_LinkIteratorForEach'
  id: 'Type::LibOpt_LinkIteratorSingle.Description' value: 'The `LibOpt_LinkIteratorSingle` is a `LibOpt_Link` that is used by the `LibOpt_IteratorParent`.\nThis is the only `LibOpt_Link` from a `LibOpt_IteratorParent`.\nMost `LibOpt_Iterators` will use the `LibOpt_LinkIteratorSingle` to connect to another `LibOpt_Component`, with the only exception known to be `LibOpt_IteratorForEachLinks`.'
  id: 'Type::LibOpt_LinkIteratorSingle.Name' value: 'LibOpt_LinkIteratorSingle'
  id: 'Type::LibOpt_LinkPriority.Description' value: 'The `LibOpt_LinkPriority` is a `LibOpt_Link` specific for the `LibOpt_SwitchPriority`.\nThe sequence in the `LibOpt_SwitchPriority` determines the priority of the `LibOpt_LinkPriority`.\nThe `LibOpt_AvailabilityChecker` linked to this type determines if the `LibOpt_LinkPriority` is available or not.\nThe `LibOpt_SwitchPriority` will always pick the `LibOpt_LinkPriority` with the highest priority that is available.'
  id: 'Type::LibOpt_LinkPriority.Name' value: 'LibOpt_LinkPriority'
  id: 'Type::LibOpt_LinkProbability.Description' value: 'The `LibOpt_LinkProbability` is a `LibOpt_Link` specific for the `LibOpt_SwitchProbability`.\nThe attribute `Probability` stores the probability of the link. This is declaratively calculated using the `Weight` attribute.\nThe `Probability` is calculated by dividing the `Weight` by the sum of the `Weight` attributes on all the `LibOpt_LinkProbabilities` of the `LibOpt_SwitchProbability`.'
  id: 'Type::LibOpt_LinkProbability.Name' value: 'LibOpt_LinkProbability'
  id: 'Type::LibOpt_LinkProbabilityDynamicWeight.Description' value: 'The `LibOpt_LinkProbabilityDynamicWeight` aims on making dynamic the Weight of a `LibOpt_LinkProbability`.\nThe method `GetWeightFactor` returns the factor to apply to the attribute WeightBase. This result will then override the link weight.'
  id: 'Type::LibOpt_LinkProbabilityDynamicWeight.Name' value: 'LibOpt_LinkProbabilityDynamicWeight'
  id: 'Type::LibOpt_LinkRoundRobin.Description' value: 'The `LibOpt_LinkRoundRobin` is a `LibOpt_Link` specific for the `LibOpt_SwitchRoundRobin`.\nIt is linked to the `LibOpt_SwitchRoundRobin` in a specific order; sorted procedurally.'
  id: 'Type::LibOpt_LinkRoundRobin.Name' value: 'LibOpt_LinkRoundRobin'
  id: 'Type::LibOpt_LinkSingle.Description' value: 'The `LibOpt_LinkSingle` is a `LibOpt_Link` that is used by the `LibOpt_ComponentParent`.\nThis is the only `LibOpt_Link` from a `LibOpt_ComponentParent`.\nMost `LibOpt_Components` will use the `LibOpt_LinkSingle` to connect to another `LibOpt_Component`, with the only exception known to be `LibOpt_Switches` and `LibOpt_IteratorForEachLinks`.'
  id: 'Type::LibOpt_LinkSingle.Name' value: 'LibOpt_LinkSingle'
  id: 'Type::LibOpt_LinkStart.Description' value: 'The `LibOpt_Link` that is used to start the components.\nThis link always points to the starting component.'
  id: 'Type::LibOpt_LinkStart.Name' value: 'LibOpt_LinkStart'
  id: 'Type::LibOpt_Message.Description' value: 'This is a helper type that helps in packing and unpacking a JSON message, so different types of messages can easily be distinguished.'
  id: 'Type::LibOpt_Message.Name' value: 'LibOpt_Message'
  id: 'Type::LibOpt_NeighborhoodCreator.Description' value: 'The `LibOpt_NeighborhoodCreator` creates a subpuzzle from the selected anchor and the original scope and returns it to the `LibOpt_SelectorAnchor`.\nThe `LibOpt_Scope` that is created by the `LibOpt_NeighborhoodCreator` will be sent by the `LibOpt_SelectorAnchor` to its next `LibOpt_Component`.\n\nWe expect the `LibOpt_NeighborhoodCreator` to be subclassed for all ways of neighborhood creation required that is not out-of-the-box available.'
  id: 'Type::LibOpt_NeighborhoodCreator.Name' value: 'LibOpt_NeighborhoodCreator'
  id: 'Type::LibOpt_Optimization.Description' value: 'The `LibOpt_Optimization` object is the root object of the optimizer components structure.\nThe `LibOpt_Optimization` type is expected to be subclassed to be able to add an owning relation between the subclass and their execution dataset(s) (for example `Company`).\nWe expect only 1 `LibOpt_Optimization` per dataset. The `LibOpt_Optimization` object contains the `LibOpt_Optimizers` and the `LibOpt_Runs`.\n631.3.0.0'
  id: 'Type::LibOpt_Optimization.Name' value: 'LibOpt_Optimization'
  id: 'Type::LibOpt_Optimizer.Description' value: 'The `LibOpt_Optimizer` creates a new `LibOpt_Run`, including the `LibOpt_Components` and their configuration.\nTo define a componentized optimizer, we need to subclass the `LibOpt_Optimizer` object and override the `CreateComponents` method.\nIn the `CreateComponents` method the optimizer component structure should be initialized.'
  id: 'Type::LibOpt_Optimizer.Name' value: 'LibOpt_Optimizer'
  id: 'Type::LibOpt_OptimizerRunController.Description' value: 'The `LibOpt_OptimizerRunController` can be used to limit the total number of ongoing `LibOpt_Runs` or to limit the number of threads being used by `LibOpt_Runs`.\n\nIt is recommended to always load the `LibOpt_OptimizerRunController` dataset on startup. You can do so by calling `LibOpt_OptimizerRunController::OnServerStartup( DatasetState::StandAloneStorage() )` in the server startup.'
  id: 'Type::LibOpt_OptimizerRunController.Name' value: 'LibOpt_OptimizerRunController'
  id: 'Type::LibOpt_RollbackKPI.Description' value: 'The `LibOpt_RollbackKPI` is an object which returns the KPI value. This can be any KPI value, as long as it is representable with Reals. The `GetKPI` method should be overridden to return this KPI value.\n\nThe KPI value is a `RealVector`. This allows specification of different KPI levels.\nKPI level 0 is the highest level, then level 1, 2 etc.\nThe rollback will be determined by comparing the KPI levels before the handle result and after the handle result.\nIf the highest KPI level that changed (had a different value) is improved, we do not rollback, if it got worse, we rollback.\n\nRollback is done in the `LibOpt_Suboptimizer.PreHandleResult` and `LibOpt_Suboptimizer.PostHandleResult` methods.'
  id: 'Type::LibOpt_RollbackKPI.Name' value: 'LibOpt_RollbackKPI'
  id: 'Type::LibOpt_RollbackKPIDefault.Description' value: 'A default rollback KPI. Uses `LibOpt_KPIs` to calculate values and determine rollbacks'
  id: 'Type::LibOpt_RollbackKPIDefault.Name' value: 'LibOpt_RollbackKPIDefault'
  id: 'Type::LibOpt_RollbackKPIEmpty.Description' value: 'This `LibOpt_RollbackKPI` returns no KPI.'
  id: 'Type::LibOpt_RollbackKPIEmpty.Name' value: 'LibOpt_RollbackKPIEmpty'
  id: 'Type::LibOpt_Run.Description' value: 'The `LibOpt_Run` object contains all the knowledge necessary to start the optimizer.\nEach time the optimizer is started, a new `LibOpt_Run` will be created containing all relevant data for this specific execution.\n\nThe `LibOpt_Component` that will be called as the first `LibOpt_Component` of the `LibOpt_Run` can be set using the `SetStartComponent` method.\nThe `LibOpt_Scope` that is sent to the `LibOpt_Component` that will be called as the first `LibOpt_Component` of the `LibOpt_Run` can be set using `SetStartScope`.\nUse the `Start` method to start the `LibOpt_Run`.'
  id: 'Type::LibOpt_Run.Name' value: 'LibOpt_Run'
  id: 'Type::LibOpt_RunContext.Description' value: 'The `LibOpt_RunContext` can be used to add shared information to components in the same `LibOpt_Run`.\nTo do so, subclass this type and add a 1:N relation for every component type.\n\nExample:\nComponent A and B want to share a setting and component B and C also want to share a setting.\nWe subclass `LibOpt_RunContext` in `LibOpt_RunContextAB` and `LibOpt_RunContextBC`.\nIn `LibOpt_RunContextAB` we create a 1:N relation to A and a 1:N relation to B.\nIn `LibOpt_RunContextBC` we create a 1:N relation to B and a 1:N relation to C.\nNow, on `LibOpt_RunContextAB` and `LibOpt_RunContextBC` we add the attributes we wanted to share.\nThen we must update the constructors of the components so it is clear that the components require this information.\nIn the constructor method for component A on the `LibOpt_Optimizer` subtype, we add the parameter `LibOpt_RunContextAB`.\nIn the constructor method for component B on the `LibOpt_Optimizer` subtype, we add the parameters `LibOpt_RunContextAB` and  `LibOpt_RunContextBC`.\nIn the constructor method for component C on the `LibOpt_Optimizer` subtype, we add the parameter `LibOpt_RunContextBC`.\nFinally we need to create an instance of the `LibOpt_RunContext` subtypes in the `LibOpt_Optimizer.CreateComponents` method in the dataset and provide it to the component constructor methods.\nYou can do so with `run.RunContext( relnew, MyRunContext );`. We advise you to also create a constructor method for this.\n\nNote: Use this pattern only when necessary. It is recommended to use attributes on the specific components instead of a `LibOpt_RunContext`.'
  id: 'Type::LibOpt_RunContext.Name' value: 'LibOpt_RunContext'
  id: 'Type::LibOpt_RunStatus.Description' value: 'This type contains the different statuses of the `LibOpt_Run`.'
  id: 'Type::LibOpt_RunStatus.Name' value: 'LibOpt_RunStatus'
  id: 'Type::LibOpt_Scope.Description' value: 'The `LibOpt_Scope` contains all the objects that can be touched by the optimizer. These objects need to be of type `LibOpt_ScopeElement`.\nThis means that if the planner selects a subset of orders, only this subset should be in the `LibOpt_Scope`.\nThe `LibOpt_Scope` object can change during an execution, for example, when a subpuzzle is selected.\nNote that this change should be implemented by creating a new `LibOpt_Scope` object with a subset of `LibOpt_ScopeElements` representing the subpuzzle.\n\nWe implement the methods Add, Contains and Copy to make it easier to work with the Scope object.\n\nIn case an existing `LibOpt_Scope` that is being used by one or more `LibOpt_Components` should be updated, the `LibOpt_ScopeElement::Transform` static method should be called.\nWe strongly advice against using the `LibOpt_ScopeElement::Transform` method, as this makes the execution of the optimizer less transparent.\nHowever, we realize there are good reasons to do so, for example, when an order is split or two orders are merged, the same needs to happen to the `LibOpt_ScopeElements`.'
  id: 'Type::LibOpt_Scope.Name' value: 'LibOpt_Scope'
  id: 'Type::LibOpt_ScopeElement.Description' value: 'The `LibOpt_ScopeElement` is the object that is part of the `LibOpt_Scope`.\nA subclass is expected for each plan element, resource or combi type, together with a relation between the subclass and the plan element, resource or combi.\n\nThe attribute `Identifier` should be set to a `String` that makes it easy for the user to identify his/her plan element, resource or combi.\nAdditionally, more details can be added in the `Details` attribute.'
  id: 'Type::LibOpt_ScopeElement.Name' value: 'LibOpt_ScopeElement'
  id: 'Type::LibOpt_ScopeElementDeleted.Description' value: 'When the `LibOpt_Run.DebugScope` attribute is `true`, then a new `LibOpt_ScopeElementDeleted` will be created for each `LibOpt_ScopeElement` that is deleted.\nThe value of the `LibOpt_ScopeElement.Identifier` and `LibOpt_ScopeElement.Details` attributes are copied to this `LibOpt_ScopeElementDeleted`. \nThis allows you to easily debug the `LibOpt_Scope`, as it will remain as it was.'
  id: 'Type::LibOpt_ScopeElementDeleted.Name' value: 'LibOpt_ScopeElementDeleted'
  id: 'Type::LibOpt_ScopeElementOnRun.Description' value: 'An N:M relation between `LibOpt_ScopeElement` and `LibOpt_Run`.\n\nYou can use this to add additional information. By default these objects are not created. Make sure to execute `LibOpt_ScopeElement.OnRunOrCreate` if you do want to create one.'
  id: 'Type::LibOpt_ScopeElementOnRun.Name' value: 'LibOpt_ScopeElementOnRun'
  id: 'Type::LibOpt_ScopeElementOnScope.Description' value: 'The N:M relation between `LibOpt_Scope` and `LibOpt_ScopeElement`.\n\nIf a `LibOpt_ScopeElement` is deleted, all its `LibOpt_ScopeElementOnScope` will also be deleted, except if the `LibOpt_Run.DebugScope` attribute is `true`.\nIn that case a new `LibOpt_ScopeElementDeleted` will be created to represent the deleted `LibOpt_ScopeElement`.\nThe `LibOpt_ScopeElementOnScopes` related to the deleted `LibOpt_ScopeElement` will relate to this new `LibOpt_ScopeElementDeleted`.'
  id: 'Type::LibOpt_ScopeElementOnScope.Name' value: 'LibOpt_ScopeElementOnScope'
  id: 'Type::LibOpt_ScopeElementOnScopeDEPRECATED.Description' value: 'The old N:M relation between `LibOpt_Scope` and `LibOpt_ScopeElement`. This should not be used anymore.'
  id: 'Type::LibOpt_ScopeElementOnScopeDEPRECATED.Name' value: 'LibOpt_ScopeElementOnScopeDEPRECATED'
  id: 'Type::LibOpt_ScopeFat.Name' value: 'LibOpt_ScopeFat'
  id: 'Type::LibOpt_ScopeShared.Description' value: 'Part of the N:M relation between `LibOpt_ScopeElement` and `LibOpt_ScopeThin`.\nThis object groups multiple `LibOpt_ScopeElements` that are in the same `LibOpt_ScopeThins`.'
  id: 'Type::LibOpt_ScopeShared.Name' value: 'LibOpt_ScopeShared'
  id: 'Type::LibOpt_ScopeShared32.Description' value: 'This `LibOpt_ScopeShared` is optimized for use with less than or equal to 32 scopes in the dataset.\nThis distinction exists to get the last drop of performance out.\n\nThis works only up to 32 scopes, as the intset used is using a single `Number`.'
  id: 'Type::LibOpt_ScopeShared32.Name' value: 'LibOpt_ScopeShared32'
  id: 'Type::LibOpt_ScopeSharedOnScope.Description' value: 'The N:M relation between the `LibOpt_ScopeShared` and the `LibOpt_ScopeThin`.'
  id: 'Type::LibOpt_ScopeSharedOnScope.Name' value: 'LibOpt_ScopeSharedOnScope'
  id: 'Type::LibOpt_ScopeSharedVector.Description' value: 'This `LibOpt_ScopeShared` is optimized for use with more than 32 scopes in the dataset.\nThis is a bit slower than `LibOpt_ScopeShared32`, but more generic.'
  id: 'Type::LibOpt_ScopeSharedVector.Name' value: 'LibOpt_ScopeSharedVector'
  id: 'Type::LibOpt_ScopeThin.Description' value: 'A `LibOpt_Scope` that is optimized for performance. Use this in production.\nThe performance of the `LibOpt_ScopeThin` is linked to the amount of `LibOpt_ScopeThin` that live in the dataset.\nMake sure this is as low as possible.'
  id: 'Type::LibOpt_ScopeThin.Name' value: 'LibOpt_ScopeThin'
  id: 'Type::LibOpt_Selector.Description' value: 'The `LibOpt_Selector` is used to shrink the `LibOpt_Scope`.\nThe input `LibOpt_Scope` is different from the output `LibOpt_Scope`, but the output `LibOpt_Scope` is expected to be a subset of the input `LibOpt_Scope`.\n\nWe expect the `LibOpt_Selector` to be subclassed for any specific way of shrinking a `LibOpt_Scope` that is necessary and cannot be captured in an out-of-the-box implementation.\nThe `Operation` method should be overridden.'
  id: 'Type::LibOpt_Selector.Name' value: 'LibOpt_Selector'
  id: 'Type::LibOpt_SelectorAnchor.Description' value: 'This is a `LibOpt_Selector` that first selects an anchor `LibOpt_ScopeElement` from the `LibOpt_Scope`, using the `LibOpt_AnchorSet` and the `LibOpt_AnchorPicker` objects.\nThen it creates a neighborhood (a subpuzzle) using the `LibOpt_NeighborhoodCreator` object.'
  id: 'Type::LibOpt_SelectorAnchor.Name' value: 'LibOpt_SelectorAnchor'
  id: 'Type::LibOpt_SelectorAnchorBase.Description' value: 'The `LibOpt_SelectorAnchorBase` type is provided so users can subclass it and create their own approaches for scope creation while still using an an anchor and neighborhood.\nThis base type has relations to `LibOpt_AnchorPicker`, `LibOpt_AnchorSet`, and `LibOpt_NeighborhoodCreator`.\n\nIf you are looking for the standard anchor and neighborhood functionality it is type `LibOpt_SelectorAnchor`.'
  id: 'Type::LibOpt_SelectorAnchorBase.Name' value: 'LibOpt_SelectorAnchorBase'
  id: 'Type::LibOpt_Settings.Description' value: 'This is the base class for all settings.\nSubclass this class and add your own attributes. The UI will automatically be updated according to your attributes.'
  id: 'Type::LibOpt_Settings.Name' value: 'LibOpt_Settings'
  id: 'Type::LibOpt_Snapshot.Description' value: 'The `LibOpt_Snapshot` contains information that is meant to aid the process of debugging the execution of a `LibOpt_Run`.\nFor example, it should store information on decisions that are made by a `LibOpt_Component`.\nIt always contains a timestamp.\n\nA `LibOpt_Snapshot` can be encoded into JSON and decoded from JSON using the `Serialize` and `Deserialize` methods respectively.\nIf a subclass of the `LibOpt_Snapshot` contains an additional non-owning relation, these methods should be overridden to also encode/decode this relation.'
  id: 'Type::LibOpt_Snapshot.Name' value: 'LibOpt_Snapshot'
  id: 'Type::LibOpt_SnapshotAlgorithm.Description' value: 'This `LibOpt_Snapshot` stores general information of an `Algorithm` execution, like the duration of the different states of an algorithm (initialization, solving and handling results).'
  id: 'Type::LibOpt_SnapshotAlgorithm.Name' value: 'LibOpt_SnapshotAlgorithm'
  id: 'Type::LibOpt_SnapshotCapacity.Description' value: 'Capacity to determine how many components are running simultaneously'
  id: 'Type::LibOpt_SnapshotCapacity.Name' value: 'LibOpt_SnapshotCapacity'
  id: 'Type::LibOpt_SnapshotCapacityElement.Description' value: 'Element of the LibOpt_SnapshotCapacity'
  id: 'Type::LibOpt_SnapshotCapacityElement.Name' value: 'LibOpt_SnapshotCapacityElement'
  id: 'Type::LibOpt_SnapshotComponent.Description' value: 'Each time a `LibOpt_Component` is executed, a new `LibOpt_SnapshotComponent` is created.\nA `LibOpt_SnapshotComponent` contains valuable debug information:\n\n- The name, type and relation to the component executed.\n- The time the component was called and the time the component finished.\n- The input and output scope (if the `LibOpt_Run.DebugScope` attribute is `true`)\n\nIf the input `LibOpt_Scope` is stored (when the `LibOpt_Run.DebugScope` attribute is `true`), a new `LibOpt_Run` can be started using the `LibOpt_Component` and `LibOpt_Scope` associated with this `LibOpt_SnapshotComponent`.'
  id: 'Type::LibOpt_SnapshotComponent.Name' value: 'LibOpt_SnapshotComponent'
  id: 'Type::LibOpt_SnapshotError.Description' value: 'This is a `LibOpt_Snapshot` used to store `Exceptions` and `QuillErrors` thrown during execution of the `LibOpt_Run` and its `LibOpt_Components`.'
  id: 'Type::LibOpt_SnapshotError.Name' value: 'LibOpt_SnapshotError'
  id: 'Type::LibOpt_SnapshotGP.Description' value: 'This `LibOpt_Snapshot` stores information of a `GraphProgram` execution.'
  id: 'Type::LibOpt_SnapshotGP.Name' value: 'LibOpt_SnapshotGP'
  id: 'Type::LibOpt_SnapshotInfo.Description' value: 'This is a `LibOpt_Snapshot` used to write some info message.\nIt can be used to replace "info( ... )" and see the message appear in the snapshot list.'
  id: 'Type::LibOpt_SnapshotInfo.Name' value: 'LibOpt_SnapshotInfo'
  id: 'Type::LibOpt_SnapshotKPI.Description' value: 'This is a `LibOpt_Snapshot` used to store information from the `LibOpt_RollbackKPI`.\nWe expect different instances for the initial KPIs and the post handle result KPIs.\n\nWe expect this type to be subclassed if additional KPIs are to be stored as well.\nFor example, to also store the total cost, the total virtual cost, the total unplanned cost etc.\nNote there is a standard implementation called `LibOpt_SnapshotKPIDefault` which stores only the `RollbackKPI` in case no other KPIs need to be stored.'
  id: 'Type::LibOpt_SnapshotKPI.Name' value: 'LibOpt_SnapshotKPI'
  id: 'Type::LibOpt_SnapshotKPIDefault.Description' value: 'A default implementation of the `LibOpt_SnapshotKPI`. This does not contain anything more than the `LibOpt_SnapshotKPI`, however it is no longer abstract.'
  id: 'Type::LibOpt_SnapshotKPIDefault.Name' value: 'LibOpt_SnapshotKPIDefault'
  id: 'Type::LibOpt_SnapshotKPIPart.Description' value: "A 'sub snapshot' of a `LibOpt_SnapshotKPI` that stores the value of a single KPI."
  id: 'Type::LibOpt_SnapshotKPIPart.Name' value: 'LibOpt_SnapshotKPIPart'
  id: 'Type::LibOpt_SnapshotLogEntry.Description' value: 'This is a `LibOpt_Snapshot` specifically designed for storing logging data.\nExamples are debug information, errors and warnings.'
  id: 'Type::LibOpt_SnapshotLogEntry.Name' value: 'LibOpt_SnapshotLogEntry'
  id: 'Type::LibOpt_SnapshotMP.Description' value: 'This `LibOpt_Snapshot` stores information of a `MathematicalProgram` execution.'
  id: 'Type::LibOpt_SnapshotMP.Name' value: 'LibOpt_SnapshotMP'
  id: 'Type::LibOpt_SnapshotOptimizerRunController.Description' value: 'Snapshot that shows that the `LibOpt_Run` is either waiting for approval from the `LibOpt_OptimizerRunController` or that the `LibOpt_Run` received approval.'
  id: 'Type::LibOpt_SnapshotOptimizerRunController.Name' value: 'LibOpt_SnapshotOptimizerRunController'
  id: 'Type::LibOpt_SnapshotPOA.Description' value: 'This `LibOpt_Snapshot` stores information of a `POAAlgorithm` execution.'
  id: 'Type::LibOpt_SnapshotPOA.Name' value: 'LibOpt_SnapshotPOA'
  id: 'Type::LibOpt_SnapshotPOASolution.Description' value: 'This `LibOpt_Snapshot` stores the information of a specific `POARun`.'
  id: 'Type::LibOpt_SnapshotPOASolution.Name' value: 'LibOpt_SnapshotPOASolution'
  id: 'Type::LibOpt_SnapshotReplannable.Description' value: 'An intermediary abstract type for snapshots that can be replanned on the dataset.'
  id: 'Type::LibOpt_SnapshotReplannable.Name' value: 'LibOpt_SnapshotReplannable'
  id: 'Type::LibOpt_SnapshotReplannableCopyDataset.Description' value: 'This `LibOpt_Snapshot` stores information about the dataset copies that have been created during a run. \nThe context menu of these snapshots can also be used to manage the dataset copies.\n\nEach created dataset copy corresponds to exactly 1 `LibOpt_SnapshotReplannableCopyDataset` snapshot.'
  id: 'Type::LibOpt_SnapshotReplannableCopyDataset.Name' value: 'LibOpt_SnapshotReplannableCopyDataset'
  id: 'Type::LibOpt_SnapshotResult.Description' value: 'A snapshot to signal the result of a component.'
  id: 'Type::LibOpt_SnapshotResult.Name' value: 'LibOpt_SnapshotResult'
  id: 'Type::LibOpt_SnapshotSelectorAnchor.Description' value: 'This `LibOpt_Snapshot` stores information on the selected anchor of the `LibOpt_SelectorAnchor`.'
  id: 'Type::LibOpt_SnapshotSelectorAnchor.Name' value: 'LibOpt_SnapshotSelectorAnchor'
  id: 'Type::LibOpt_SnapshotSuboptimizer.Description' value: 'This `LibOpt_Snapshot` stores general information of a `LibOpt_Suboptimizer` execution, like the improvement of the rollback KPI and whether a rollback occurred.'
  id: 'Type::LibOpt_SnapshotSuboptimizer.Name' value: 'LibOpt_SnapshotSuboptimizer'
  id: 'Type::LibOpt_SnapshotSwitch.Description' value: 'This `LibOpt_Snapshot` contains which `LibOpt_Link` was selected in the `LibOpt_Switch`'
  id: 'Type::LibOpt_SnapshotSwitch.Name' value: 'LibOpt_SnapshotSwitch'
  id: 'Type::LibOpt_SnapshotWarning.Description' value: 'This `LibOpt_Snapshot` is used to warn the user of some unexpected behavior or data that is found.\nWe expect the run to continue.'
  id: 'Type::LibOpt_SnapshotWarning.Name' value: 'LibOpt_SnapshotWarning'
  id: 'Type::LibOpt_Statistic.Description' value: "This is the base class for all statistics.\n\nA `LibOpt_Statistic` object collects a specific value from multiple elements (the element type differs for each statistic, but it's usually a snapshot).\nFrom the collection of values, some common statistics are calculated and stored on this object.\nBased on the statistics, `LibOpt_Issues` are created to highlight potential issues for the values recorded.\n\nThere are a few out-of-the-box statistics available.\nIf you have a specific statistic to add, subclass from `LibOpt_Statistic`, then\n1. Override the *abstract* functions and methods.\n2. Extend the `LibOpt_Run.CreateStatisticsAndIssues` method."
  id: 'Type::LibOpt_Statistic.Name' value: 'LibOpt_Statistic'
  id: 'Type::LibOpt_StatisticError.Description' value: 'This `LibOpt_Statistic` is meant to count the occurences of `LibOpt_SnapshotErrors` with the same `LibOpt_Snapshot.Details` for a particular `LibOpt_Component` in each `LibOpt_Iteration` of `LibOpt_Run`.'
  id: 'Type::LibOpt_StatisticError.Name' value: 'LibOpt_StatisticError'
  id: 'Type::LibOpt_StatisticLogEntry.Description' value: 'This `LibOpt_Statistic` is meant to count the occurences of `LibOpt_SnapshotLogEntrys` with a common `LibOpt_SnapshotLogEntry.Details` message for a particular `LibOpt_Component` in each `LibOpt_Iteration` of `LibOpt_Run`.\nThe aforementioned `LibOpt_SnapshotLogEntry.Details` message is stored on the `LogEntryDetails` attribute of this `LibOpt_StatisticLogEntry` type.\n\nSubclasses of this object are created to count the occurences for different types of `LibOpt_SnapshotLogEntry`.'
  id: 'Type::LibOpt_StatisticLogEntry.Name' value: 'LibOpt_StatisticLogEntry'
  id: 'Type::LibOpt_StatisticScopeElement.Description' value: 'This `LibOpt_Statistic` stores values about `LibOpt_ScopeElements` related to a `LibOpt_Suboptimizer`.\nSubclasses of this object are created to collect values about different aspects of the `LibOpt_ScopeElements`.'
  id: 'Type::LibOpt_StatisticScopeElement.Name' value: 'LibOpt_StatisticScopeElement'
  id: 'Type::LibOpt_StatisticScopeElementInput.Description' value: 'This `LibOpt_StatisticScopeElement` stores information on the frequency in input `LibOpt_Scopes` of `LibOpt_ScopeElements` related to a `LibOpt_Suboptimizer`, and generates `LibOpt_Issues` based on the outliers as a threshold.'
  id: 'Type::LibOpt_StatisticScopeElementInput.Name' value: 'LibOpt_StatisticScopeElementInput'
  id: 'Type::LibOpt_StatisticScopeElementNoImprovement.Description' value: 'This `LibOpt_StatisticScopeElement` stores information on the frequency of no improvement of `LibOpt_ScopeElements` related to a `LibOpt_Suboptimizer`, and generates `LibOpt_Issues` based on the outliers as a threshold.'
  id: 'Type::LibOpt_StatisticScopeElementNoImprovement.Name' value: 'LibOpt_StatisticScopeElementNoImprovement'
  id: 'Type::LibOpt_StatisticScopeElementRollback.Description' value: 'This `LibOpt_StatisticScopeElement` stores information on the rollback frequency of `LibOpt_ScopeElements` related to a `LibOpt_Suboptimizer`, and generates `LibOpt_Issues` based on the outliers as a threshold.'
  id: 'Type::LibOpt_StatisticScopeElementRollback.Name' value: 'LibOpt_StatisticScopeElementRollback'
  id: 'Type::LibOpt_StatisticSuboptimizer.Description' value: 'This `LibOpt_Statistic` contains values pertaining to a `LibOpt_Suboptimizer`.\nSubclasses of this object are created to contain values about different aspects of the `LibOpt_Suboptimizer`.'
  id: 'Type::LibOpt_StatisticSuboptimizer.Name' value: 'LibOpt_StatisticSuboptimizer'
  id: 'Type::LibOpt_StatisticSuboptimizerKPIImprovement.Description' value: 'This `LibOpt_StatisticSuboptimizer` is used to contain the KPI improvements of the `LibOpt_Suboptimizer`.'
  id: 'Type::LibOpt_StatisticSuboptimizerKPIImprovement.Name' value: 'LibOpt_StatisticSuboptimizerKPIImprovement'
  id: 'Type::LibOpt_StatisticSuboptimizerMP.Description' value: 'This `LibOpt_Statistic` stores values about `LibOpt_SnapshotMPs` related to a `LibOpt_Suboptimizer`.\nSubclasses of this object are created to collect values about different aspects of the `LibOpt_SnapshotMPs`.'
  id: 'Type::LibOpt_StatisticSuboptimizerMP.Name' value: 'LibOpt_StatisticSuboptimizerMP'
  id: 'Type::LibOpt_StatisticSuboptimizerMPInfeasible.Description' value: 'This `LibOpt_StatisticSuboptimizerMP` stores information on the `LibOpt_SnapshotMP.IsFeasible` values of `LibOpt_SnapshotMPs` of a `LibOpt_SuboptimizerMP`.\nA `LibOpt_Issue` is generated when the `LibOpt_SnapshotMPs` is not feasible.'
  id: 'Type::LibOpt_StatisticSuboptimizerMPInfeasible.Name' value: 'LibOpt_StatisticSuboptimizerMPInfeasible'
  id: 'Type::LibOpt_StatisticSuboptimizerMPKappa.Description' value: 'This `LibOpt_StatisticSuboptimizerMP` is used to collect the `LibOpt_SnapshotMP.Kappa` of `LibOpt_SnapshotMPs` of a `LibOpt_SuboptimizerMP`.\nA `LibOpt_Issue` is generated based on thresholds defined on `UpperThreshold` and `LowerThreshold`.'
  id: 'Type::LibOpt_StatisticSuboptimizerMPKappa.Name' value: 'LibOpt_StatisticSuboptimizerMPKappa'
  id: 'Type::LibOpt_StatisticSuboptimizerMPRelativeGap.Description' value: 'This `LibOpt_StatisticSuboptimizerMP` is used to collect the `LibOpt_SnapshotMP.RelativeGap` (converted to percentage) of all goal levels of `LibOpt_SnapshotMPs` of a `LibOpt_SuboptimizerMP`.\nA `LibOpt_Issue` is generated based on thresholds defined on `UpperThreshold` and `LowerThreshold`.'
  id: 'Type::LibOpt_StatisticSuboptimizerMPRelativeGap.Name' value: 'LibOpt_StatisticSuboptimizerMPRelativeGap'
  id: 'Type::LibOpt_StatisticSuboptimizerRollback.Description' value: 'This `LibOpt_StatisticSuboptimizer` is used to contain the rollback information of the `LibOpt_Suboptimizer` of the statistic.'
  id: 'Type::LibOpt_StatisticSuboptimizerRollback.Name' value: 'LibOpt_StatisticSuboptimizerRollback'
  id: 'Type::LibOpt_StatisticSummary.Description' value: 'A helper object type that is declaratively instantiated by a `LibOpt_Statistic` to hold "summary statistics" of the values it collects.\n\nExamples of "summary statistics" include:\n- `Average`, `Median`, `StandardDeviation`, `Range`, etc.'
  id: 'Type::LibOpt_StatisticSummary.Name' value: 'LibOpt_StatisticSummary'
  id: 'Type::LibOpt_StatisticTime.Description' value: 'This `LibOpt_Statistic` is meant to contain values about `LibOpt_Component` and `LibOpt_Run` relevant to time/duration.\nSubclasses of this object are created to contain values about different aspects of time-related values.'
  id: 'Type::LibOpt_StatisticTime.Name' value: 'LibOpt_StatisticTime'
  id: 'Type::LibOpt_StatisticTimeSuboptimizer.Description' value: 'This `LibOpt_StatisticTime` is meant to contain time-related values about `LibOpt_Suboptimizers` in an `Algorithm` execution.\nSubclasses of this object are created to contain values about different aspects of the algorithm durations.'
  id: 'Type::LibOpt_StatisticTimeSuboptimizer.Name' value: 'LibOpt_StatisticTimeSuboptimizer'
  id: 'Type::LibOpt_StatisticTimeSuboptimizerHandleResult.Description' value: 'This `LibOpt_StatisticTimeSuboptimizer` stores the "Handle Result" durations as a percentage of the total algorithm duration per iteration.\nA `LibOpt_Issue` is generated based on thresholds defined on `UpperThreshold` and `LowerThreshold`.'
  id: 'Type::LibOpt_StatisticTimeSuboptimizerHandleResult.Name' value: 'LibOpt_StatisticTimeSuboptimizerHandleResult'
  id: 'Type::LibOpt_StatisticTimeSuboptimizerInitialize.Description' value: 'This `LibOpt_StatisticTimeSuboptimizer` stores the "Initialize" durations as a percentage of the total algorithm duration per iteration.\nA `LibOpt_Issue` is generated based on thresholds defined on `UpperThreshold` and `LowerThreshold`.'
  id: 'Type::LibOpt_StatisticTimeSuboptimizerInitialize.Name' value: 'LibOpt_StatisticTimeSuboptimizerInitialize'
  id: 'Type::LibOpt_StatisticTimeSuboptimizerSolve.Description' value: 'This `LibOpt_StatisticTimeSuboptimizer` stores the "Solve" durations as a percentage of the total algorithm duration per iteration.\nA `LibOpt_Issue` is generated based on thresholds defined on `UpperThreshold` and `LowerThreshold`.'
  id: 'Type::LibOpt_StatisticTimeSuboptimizerSolve.Name' value: 'LibOpt_StatisticTimeSuboptimizerSolve'
  id: 'Type::LibOpt_StatisticTimeTotal.Description' value: 'This `LibOpt_StatisticTime` stores the `TotalDuration` durations of the `LibOpt_Component` as a percentage of the total component duration per iteration.\nThe `TotalDuration` values are aggregated based on hierarchy as defined by the Parent-Child relation.\n\nA `LibOpt_Issue` is generated based on thresholds defined on `UpperThreshold` and `LowerThreshold`.'
  id: 'Type::LibOpt_StatisticTimeTotal.Name' value: 'LibOpt_StatisticTimeTotal'
  id: 'Type::LibOpt_StatisticWarning.Description' value: 'This `LibOpt_Statistic` is meant to count the occurences of `LibOpt_SnapshotWarnings` with the same `LibOpt_SnapshotWarning.Details` for a particular `LibOpt_Component` in each `LibOpt_Iteration` of `LibOpt_Run`.'
  id: 'Type::LibOpt_StatisticWarning.Name' value: 'LibOpt_StatisticWarning'
  id: 'Type::LibOpt_StopCriterion.Description' value: 'The `LibOpt_StopCriterion` is used by the `LibOpt_Iterator` to find out when to stop creating more iterations.\nWhen the `ShouldStop` method returns true, the `LibOpt_Iterator` will abort all Tasks.\n\nIn case a more gentle approach is necessary, the `CanStartIteration` method can be used. Each time the `LibOpt_Iterator` tries to create a new iteration, it checks this method to find out if this is allowed.\nIf the `CanStartIteration` returns false, no new iterations will be created, but no `LibOpt_Tasks` will be aborted.\n\nFinally, the `Progress` method returns a value between 0 and 1 signifying the progress of the `LibOpt_Iterator`. Zero means the `LibOpt_Iterator` is starting, one means the `LibOpt_Iterator` is finished.\n\nWe expect the `LibOpt_StopCriterionDefault` subclass is sufficient for most needs and if more features are required, the `LibOpt_StopCriterion` should be subclassed.'
  id: 'Type::LibOpt_StopCriterion.Name' value: 'LibOpt_StopCriterion'
  id: 'Type::LibOpt_StopCriterionContinuous.Description' value: 'This type will never stop the `LibOpt_Iterator`.\n\nThis signals that it is a conscious choice to make the optimizer continuous.'
  id: 'Type::LibOpt_StopCriterionContinuous.Name' value: 'LibOpt_StopCriterionContinuous'
  id: 'Type::LibOpt_StopCriterionDefault.Description' value: 'This `LibOpt_StopCriterion` will be used most often. It allows the `LibOpt_Iterator` to stop when one of these happen:\n - The duration of the `LibOpt_Run` is more than `MaxDurationGlobal`\n - The duration of the `LibOpt_Iterator` is more than `MaxDurationLocal`\n - The number of iterations is more than `MaxIterations`'
  id: 'Type::LibOpt_StopCriterionDefault.Name' value: 'LibOpt_StopCriterionDefault'
  id: 'Type::LibOpt_StopCriterionDefaultBase.Description' value: 'This is a subclassable `LibOpt_StopCriterion` that comes with the most common stop criteria.\nSubclass `LibOpt_StopCriterionDefault` is the implemented version of this subclass that is used by the library itself.'
  id: 'Type::LibOpt_StopCriterionDefaultBase.Name' value: 'LibOpt_StopCriterionDefaultBase'
  id: 'Type::LibOpt_StoredAlgorithm.Description' value: 'When an algorithm is stored, then a `LibOpt_StoredAlgorithm` object is created to keep track of that stored algorithm. \nWhen the `LibOpt_StoredAlgorithm` object is deleted, then also the corresponding stored algorithm is deleted (if it still exists).\nNote: if a dataset is copied, then the same `LibOpt_StoredAlgorithm` object is part of 2 datasets. \nTherefore, if Dataset 1 deletes the `LibOpt_StoredAlgorithm`, then the `LibOpt_StoredAlgorithm` of Dataset 2 will no longer be linked to any stored algorithm.\nFor a global overview of all stored datasets, please load the `LibOpt_StoredAlgorithmManager`.'
  id: 'Type::LibOpt_StoredAlgorithm.Name' value: 'LibOpt_StoredAlgorithm'
  id: 'Type::LibOpt_StoredAlgorithmGlobal.Description' value: 'The global equivalent of `LibOpt_StoredAlgorithm`.\nWhen a `LibOpt_StoredAlgorithm` is created or deleted in any dataset, then this dataset informs the `LibOpt_StoredAlgorithmManager` about this.\nThe `LibOpt_StoredAlgorithmManager` then also creates or deletes its `LibOpt_StoredAlgorithm`. \n\nEach `LibOpt_StoredAlgorithmGlobal` object corresponds to exactly 1 stored algorithm and each stored algorithm to exactly 1 `LibOpt_StoredAlgorithmGlobal`.'
  id: 'Type::LibOpt_StoredAlgorithmGlobal.Name' value: 'LibOpt_StoredAlgorithmGlobal'
  id: 'Type::LibOpt_StoredAlgorithmManager.Description' value: 'With the `LibOpt_StoredAlgorithmManager` you can manage all stored algorithms in your application.\n\nNote: Only stored algorithms that are created using the `LibOpt_StoredAlgorithm` type will show up in the manager.'
  id: 'Type::LibOpt_StoredAlgorithmManager.Name' value: 'LibOpt_StoredAlgorithmManager'
  id: 'Type::LibOpt_Suboptimizer.Description' value: 'This `LibOpt_Component` is at the heart of optimization.\nThis is where the real optimization happens. This is the `LibOpt_Component` that starts a Quintiq `Algorithm`, for example a `MathematicalProgram` or a `POAAlgorithm`.\nAlso non Quintiq `Algorithms` fit, like greedy solutions and the vehicle routing plugin.\n\nFor both the `MathematicalProgram` and `POA` algorithms there are specific subclasses. The correct subclass of `LibOpt_Suboptimizer` that fits with the required algorithm should be used as a base class.\nIn case no default subclass exists, one should subclass from the `LibOpt_Suboptimizer` type.'
  id: 'Type::LibOpt_Suboptimizer.Name' value: 'LibOpt_Suboptimizer'
  id: 'Type::LibOpt_SuboptimizerAlgorithm.Description' value: 'A `LibOpt_Suboptimizer` subclass specifically for suboptimizers with `Algorithms`.'
  id: 'Type::LibOpt_SuboptimizerAlgorithm.Name' value: 'LibOpt_SuboptimizerAlgorithm'
  id: 'Type::LibOpt_SuboptimizerGP.Description' value: 'This `LibOpt_Suboptimizer` is specific for the `GraphProgram`.\n\nCreating the `GraphProgram` and handling its result can be done in `Initialize` and `HandleResult` respectively.\nThese methods are expected to be overridden.'
  id: 'Type::LibOpt_SuboptimizerGP.Name' value: 'LibOpt_SuboptimizerGP'
  id: 'Type::LibOpt_SuboptimizerMP.Description' value: 'This `LibOpt_Suboptimizer` is specific for the `MathematicalProgram`.\n\nCreating the `MathematicalProgram` and handling its result can be done in `Initialize` and `HandleResult` respectively.\nThese methods are expected to be overridden.'
  id: 'Type::LibOpt_SuboptimizerMP.Name' value: 'LibOpt_SuboptimizerMP'
  id: 'Type::LibOpt_SuboptimizerPOA.Description' value: 'This `LibOpt_Suboptimizer` is specific for `POAAlgorithm`.\n\nCreating the `POAAlgorithm`, executing the strategy and handling its result can be done in `Initialize`, `ExecuteStrategy` and `HandleResult` respectively.\nThese methods are expected to be overridden.'
  id: 'Type::LibOpt_SuboptimizerPOA.Name' value: 'LibOpt_SuboptimizerPOA'
  id: 'Type::LibOpt_SuboptimizerScopeElement.Description' value: 'The N-M object between `LibOpt_Suboptimizer` and `LibOpt_ScopeElement` to indicate that the latter is "relevant" for the former, in the sense that the scope element "potentially can" be used in the suboptimizer\'s input `LibOpt_Scope`.'
  id: 'Type::LibOpt_SuboptimizerScopeElement.Name' value: 'LibOpt_SuboptimizerScopeElement'
  id: 'Type::LibOpt_Switch.Description' value: 'The `LibOpt_Switch` is a `LibOpt_Component` that is used to branch.\nA `LibOpt_Switch` can have multiple `LibOpt_Links` and will choose one according to its defined behavior.\n\nIf neither of the existing subclasses suffice, we expect a subclass from `LibOpt_Switch` to implement the required switching behavior.'
  id: 'Type::LibOpt_Switch.Name' value: 'LibOpt_Switch'
  id: 'Type::LibOpt_SwitchPriority.Description' value: 'This `LibOpt_Switch` branches using a priority structure.\nEach of its `LibOpt_Links` (with type `LibOpt_LinkPriority`) are given a priority and a `LibOpt_AvailabilityChecker` object.\nThis `LibOpt_Switch` selects the link with the highest priority which has a `LibOpt_AvailabilityChecker` that returns true.\nThe priority is determined by the order of the `LibOpt_LinkPriorities`'
  id: 'Type::LibOpt_SwitchPriority.Name' value: 'LibOpt_SwitchPriority'
  id: 'Type::LibOpt_SwitchProbability.Description' value: 'This `LibOpt_Switch` selects the next branch by using `LibOpt_LinkProbabilities`. There are several branches connected to this `LibOpt_SwitchProbability`. Each branch has its own `LibOpt_LinkProbability`.\nEach `LibOpt_LinkProbability` has a `LibOpt_LinkProbability.Weight`. \nThe `LibOpt_LinkProbability.Probability` attribute is is calculated by dividing the `LibOpt_LinkProbability.Weight` attribute by the sum of the `LibOpt_LinkProbability.Weight` attributes of all the `LibOpt_LinkProbabilities`.\nThe `LibOpt_SwitchProbability` randomly selects one of its `LibOpt_LinkProbabilities` by using the `LibOpt_LinkProbability.Probability` attribute.'
  id: 'Type::LibOpt_SwitchProbability.Name' value: 'LibOpt_SwitchProbability'
  id: 'Type::LibOpt_SwitchRoundRobin.Description' value: 'This `LibOpt_Switch` branches using a FIFO approach.\nEach of its `LibOpt_Links` (with type `LibOpt_LinkRoundRobin`) are in a particular order.\nThe first time the `LibOpt_SwitchRoundRobin` is executed, the first `LibOpt_LinkRoundRobin` will be returned.\nThe second time, the second `LibOpt_LinkRoundRobin`, the third time the third `LibOpt_LinkRoundRobin` etc.\nIf the Nth `LibOpt_LinkRoundRobin` does not exist, because we have fewer `LibOpt_LinkRoundRobins`, we start again at the first `LibOpt_LinkRoundRobin`.'
  id: 'Type::LibOpt_SwitchRoundRobin.Name' value: 'LibOpt_SwitchRoundRobin'
  id: 'Type::LibOpt_Task.Description' value: 'Every time a `LibOpt_Component` is called, a new `LibOpt_Task` object is created.\nThe `LibOpt_Task` is the message passed to the `LibOpt_Component` telling it what to do.\nThe `LibOpt_Task` contains a relation to the `LibOpt_Scope` the `LibOpt_Component` is supposed to optimize on. \nThe `LibOpt_Scope` is not owned, since we also want to be able to store the `LibOpt_Scope` in a `LibOpt_Snapshot`, when the `LibOpt_Task` is completed.\n\nA `LibOpt_Task` can be aborted by calling the `Abort` method.\n`LibOpt_Components` that get an aborted `LibOpt_Task` do not start their `LibOpt_Component.Operation` method.\nIf the `LibOpt_Component.Operation` is in progress while the `LibOpt_Task` is aborted, the `LibOpt_Component` can choose to either finish it or revert all changes (if any).\nThe preferred way is to revert all changes, this needs to be implemented per component. If no change has been made, the `CanContinue` method on `LibOpt_Task` can be called to check if the task can continue to execute.\nThis method will check if the `LibOpt_Task` is aborted and if so stop the current transaction.\nNote that this check is automatically done for the `LibOpt_Component.Operation` method and that this only needs to be done manually for other methods that are called reactively from the `LibOpt_Component.Operation` method.\nSubtasks of an aborted `LibOpt_Task` will automatically be aborted.\n\nEach `LibOpt_Task` can have a `LibOpt_SnapshotComponent` attached. The `LibOpt_Component` can use this `LibOpt_SnapshotComponent` to write information about its execution.\n\nEach `LibOpt_Task` can have a `LibOpt_TaskContext`. This is an object in which the `LibOpt_Component` can store information about the current execution, if this is difficult to do otherwise.\n\nWhen deleting a `LibOpt_Task`, the `LibOpt_Component.OnFinalize` method of the component the task is linked to is triggered. This way cleanup can never be forgotten.'
  id: 'Type::LibOpt_Task.Name' value: 'LibOpt_Task'
  id: 'Type::LibOpt_TaskContext.Description' value: 'The `LibOpt_TaskContext` can be subclassed for a specific `LibOpt_Component`. It allows the `LibOpt_Component` to store additional information on the `LibOpt_Task`.\nThis allows us to store information on the execution of the `LibOpt_Task`, which can be useful in case this cannot be stored in the execution of the `LibOpt_Component` itself.\n\nAn implementation of this is used for the `LibOpt_Iterator`.'
  id: 'Type::LibOpt_TaskContext.Name' value: 'LibOpt_TaskContext'
  id: 'Type::LibOpt_TaskContextIterator.Description' value: 'This `LibOpt_TaskContext` stores information on the number of iterations that have been executed and the number of subtasks that are currently running in the `LibOpt_Iterator`.'
  id: 'Type::LibOpt_TaskContextIterator.Name' value: 'LibOpt_TaskContextIterator'
  id: 'Type::LibOpt_TaskTransporter.Description' value: 'The `LibOpt_TaskTransporter` is the object that sends a `LibOpt_Task` to a `LibOpt_Component`.\nThe `LibOpt_Link` it is attached to contains the information about which `LibOpt_Component` is supposed to receive the `LibOpt_Task`.\nThe `LibOpt_TaskTransporter` allows for different behavior when sending a `LibOpt_Task`.\nFor example, we can send it to the `LibOpt_Component` in a new transaction, or we send it in the same transaction.'
  id: 'Type::LibOpt_TaskTransporter.Name' value: 'LibOpt_TaskTransporter'
  id: 'Type::LibOpt_TaskTransporterDistributed.Name' value: 'LibOpt_TaskTransporterDistributed'
  id: 'Type::LibOpt_TaskTransporterOneTransaction.Description' value: 'This `LibOpt_TaskTransporter` executes the next `LibOpt_Component` in the same transaction as the previous `LibOpt_Component`.'
  id: 'Type::LibOpt_TaskTransporterOneTransaction.Name' value: 'LibOpt_TaskTransporterOneTransaction'
  id: 'Type::LibOpt_TaskTransporterReactive.Description' value: 'A `LibOpt_TaskTransporter` is owned by a `LibOpt_Link`. The `LibOpt_Link` links the previous `LibOpt_Component` to the next `LibOpt_Component` by using the `LibOpt_Link.Destination` relation.\nThe `LibOpt_Link` also creates a new `LibOpt_Task` for the next `LibOpt_Component`. This `LibOpt_Task` is forwarded to the `LibOpt_TaskTransporterReactive` .\n\nThe `LibOpt_TaskTransporterReactive::SendWithoutFinalize` method reactively executes the next `LibOpt_Component` by using the `LibOpt_Task`.\nThis means that the `LibOpt_Component` will be executed in a new transaction.'
  id: 'Type::LibOpt_TaskTransporterReactive.Name' value: 'LibOpt_TaskTransporterReactive'
  id: 'Type::LibOpt_Transformer.Description' value: 'The `LibOpt_Transformer` takes a `LibOpt_Scope` and returns a new `LibOpt_Scope` containing different `LibOpt_ScopeElements`.\nHowever, both `LibOpt_Scopes` do represent the same functional scope.\n\nAn example of this would be a `LibOpt_Scope` containing a `Company` object, being transformed in a `LibOpt_Scope` that contains all `Orders` and `Paperrolls` attached to the `Company` object.\n\nWe expect a subclass of `LibOpt_Transformer` when a different representation of the scope is required.'
  id: 'Type::LibOpt_Transformer.Name' value: 'LibOpt_Transformer'
  id: 'Type::LibOpt_UIAnalysisScopeElement.Description' value: 'This type represents a scope element that can be analyzed. It contains attributes for the number of times it is included in the input scope and in the output scope of the selected `LibOpt_Components`.\nThese objects live client side, as the attributes are updated according to the selected tags and components.'
  id: 'Type::LibOpt_UIAnalysisScopeElement.Name' value: 'LibOpt_UIAnalysisScopeElement'
  id: 'Type::LibOpt_UIConditionalType.Description' value: "This type represents a conditional type (so a breakpoint type or a dataset copy type) that can be instantiated. It contains attributes for the name and description of the defined conditional type.\nThis type is only used client side to allow you to create a breakpoint or dataset copy with the 'Set conditional breakpoint...' or the 'Set conditional dataset copy...' context menu items in the 'Component positions' form.\nAn instance is created for all non-abstract breakpoint/dataset copy types that are defined in the model, \nexcept for the the `LibOpt_Breakpoint` type and all subtypes of the `LibOpt_DatasetCopyConditionalNotSelectable` type."
  id: 'Type::LibOpt_UIConditionalType.Name' value: 'LibOpt_UIConditionalType'
  id: 'Type::LibOpt_UIDataPoint.Description' value: 'A type representing a 2-dimensional data point. This can be used to plot values on X- and Y-axes.\n\nThis object is not intended to be instantiated within a dataset (on the editor side). This is only meant to be created as a shadow object in the client.'
  id: 'Type::LibOpt_UIDataPoint.Name' value: 'LibOpt_UIDataPoint'
  id: 'Type::LibOpt_UIGraph.Description' value: 'The object containing the visual of the component graph.\n\nThis type is not meant to be public, but due to a limitation in the Designer it is currently public. When this limitation is resolved, this type will be accessible to module only.'
  id: 'Type::LibOpt_UIGraph.Name' value: 'LibOpt_UIGraph'
  id: 'Type::LibOpt_UIGraphArc.Description' value: 'The object that represents an arc between 2 nodes.\n\nThis type is not meant to be public, but due to a limitation in the Designer it is currently public. When this limitation is resolved, this type will be accessible to module only.'
  id: 'Type::LibOpt_UIGraphArc.Name' value: 'LibOpt_UIGraphArc'
  id: 'Type::LibOpt_UIGraphArcPoint.Description' value: 'The sequence of `LibOpt_UIGraphArcPoints` is used to position the `LibOpt_UIGraphArc`.\n\nThis type is not meant to be public, but due to a limitation in the Designer it is currently public. When this limitation is resolved, this type will be accessible to module only.'
  id: 'Type::LibOpt_UIGraphArcPoint.Name' value: 'LibOpt_UIGraphArcPoint'
  id: 'Type::LibOpt_UIGraphNode.Description' value: 'This type represents a node in the visualized graph.\n\nThis type is not meant to be public, but due to a limitation in the Designer it is currently public. When this limitation is resolved, this type will be accessible to module only.'
  id: 'Type::LibOpt_UIGraphNode.Name' value: 'LibOpt_UIGraphNode'
  id: 'Type::LibOpt_UIGraphRow.Description' value: 'This type represents a layer within the layered graph drawing.\n\nThis type is not meant to be public, but due to a limitation in the Designer it is currently public. When this limitation is resolved, this type will be accessible to module only.'
  id: 'Type::LibOpt_UIGraphRow.Name' value: 'LibOpt_UIGraphRow'
  id: 'Type::LibOpt_UIOwner.Description' value: 'This is a type that is used to own multiple shadow objects in the thin client.\nThis solves the issue that a DataHolder cannot own multiple shadow objects.'
  id: 'Type::LibOpt_UIOwner.Name' value: 'LibOpt_UIOwner'
  id: 'Type::LibOpt_UIScopeTag.Description' value: 'An object used to visualize tags in the client. These objects are client side and get populated by the result of the `LibOpt_ScopeElementOnScope::Tags` static method.'
  id: 'Type::LibOpt_UIScopeTag.Name' value: 'LibOpt_UIScopeTag'
  id: 'Type::LibOpt_UISnapshotAttribute.Description' value: 'This exposes the different attributes on a snapshot.\nThis is only used client side to allow you to select the attributes you want.\nEach instance corresponds to one attribute on a snapshot.'
  id: 'Type::LibOpt_UISnapshotAttribute.Name' value: 'LibOpt_UISnapshotAttribute'
  id: 'Type::LibOpt_Utility.Description' value: 'A utility class containing useful methods that do not belong to a single class.\nThis can be used throughout your project.'
  id: 'Type::LibOpt_Utility.Name' value: 'LibOpt_Utility'
}