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
|
/*
* Copyright (C) 2013-2015, 2019 by the Konclude Developer Team.
*
* This file is part of the reasoning system Konclude.
* For details and support, see <http://konclude.com/>.
*
* Konclude is free software: you can redistribute it and/or modify
* it under the terms of version 3 of the GNU Lesser General Public
* License (LGPLv3) as published by the Free Software Foundation.
*
* Konclude is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU (Lesser) General Public License for more details.
*
* You should have received a copy of the GNU (Lesser) General Public
* License along with Konclude. If not, see <http://www.gnu.org/licenses/>.
*
*/
#include "CReasonerConfigurationGroup.h"
namespace Konclude {
namespace Control {
namespace Command {
CReasonerConfigurationGroup::CReasonerConfigurationGroup() {
// Konclude reasoner configurations
addConfigProperty(new CConfigDescription("Konclude.Version.Major",
"Major version of Konclude.",
new CIntegerConfigType(CKoncludeInfo::getKoncludeMajorVersionNumber())),
new CIntegerConfigType(CKoncludeInfo::getKoncludeMajorVersionNumber()));
addConfigProperty(new CConfigDescription("Konclude.Version.Minor",
"Minor version of Konclude.",
new CIntegerConfigType(CKoncludeInfo::getKoncludeMinorVersionNumber())),
new CIntegerConfigType(CKoncludeInfo::getKoncludeMinorVersionNumber()));
addConfigProperty(new CConfigDescription("Konclude.Version.Build",
"Build of Konclude.",
new CIntegerConfigType(CKoncludeInfo::getKoncludeBuildVersionNumber())),
new CIntegerConfigType(CKoncludeInfo::getKoncludeBuildVersionNumber()));
addConfigProperty(new CConfigDescription("Konclude.Name",
"Name of Konclude.",
new CStringConfigType(CKoncludeInfo::getKoncludeName())),
new CStringConfigType(CKoncludeInfo::getKoncludeName()));
addConfigProperty(new CConfigDescription("Konclude.Description",
"Description of Konclude.",
new CStringConfigType(CKoncludeInfo::getKoncludeDescription())),
new CStringConfigType(CKoncludeInfo::getKoncludeDescription()));
addConfigProperty(new CConfigDescription("Konclude.Execution.CommanderManager",
"Commander Manager.",
new CCommanderManagerConfigType(0)));
addConfigProperty(new CConfigDescription("Konclude.Execution.ReasonerManager",
"Reasoner Manager.",
new CReasonerManagerConfigType(0)));
addConfigProperty(new CConfigDescription("Konclude.Execution.ClassificationManager",
"Classification Manager.",
new CClassificationManagerConfigType(0)));
addConfigProperty(new CConfigDescription("Konclude.Execution.OntologyRevisionManager",
"Ontology Revision Manager.",
new COntologyRevisionManagerConfigType(0)));
addConfigProperty(new CConfigDescription("Konclude.Execution.DefaultReasonerManager",
"The Reasoner Manager that is loaded by default.",
new CStringConfigType(KONCLUDE_DEFAULTREASONERMANAGER)),
new CStringConfigType(KONCLUDE_DEFAULTREASONERMANAGER));
addConfigProperty(new CConfigDescription("Konclude.Execution.CalculationManager",
"Determines which Calculation Manager will be used for calculation. Value can be 'Konclude.Calculation.Calculator.ConcurrentTaskCalculationManager'.",
new CStringConfigType(KONCLUDE_DEFAULTCALCULATIONMANAGER)),
new CStringConfigType(KONCLUDE_DEFAULTCALCULATIONMANAGER));
addConfigProperty(new CConfigDescription("Konclude.Logging.MinLoggingLevel",
"Minimum logging level.",
new CIntegerConfigType(0)),
new CIntegerConfigType(0));
addConfigProperty(new CConfigDescription("Konclude.Logging.MaxLogMessageCount",
"Maximum number of log messages that are kept by the logger.",
new CIntegerConfigType(-1)),
new CIntegerConfigType(-1));
// Parallelisation configurations
addConfigProperty(new CConfigDescription("Konclude.Calculation.ProcessorCount",
"Number of Processor-Threads that are used for task based reasoning.",
new CStringConfigType("1")),
new CStringConfigType("1"));
addConfigProperty(new CConfigDescription("Konclude.Calculation.AdaptThreadPoolSizeProcessorCount",
"Determines whether the size of the Qt default thread pool is adapted to the processor count.",
new CBooleanConfigType(true)),
new CBooleanConfigType(true));
addConfigProperty(new CConfigDescription("Konclude.Calculation.BlockingThreadPoolThreadsCount",
"Determines the number of threads that are blocked from the default thread pool.",
new CIntegerConfigType(1)),
new CIntegerConfigType(1));
addConfigProperty(new CConfigDescription("Konclude.Calculation.UniqueNameAssumption",
"Determines whether the reasoner treats each individual with distinct name as different of each other.",
new CBooleanConfigType(false)),
new CBooleanConfigType(false));
addConfigProperty(new CConfigDescription("Konclude.Calculation.Memory.AllocationLimitation",
"Determines whether the reasoner uses memory limits for the calculation process.",
new CBooleanConfigType(false)),
new CBooleanConfigType(false));
addConfigProperty(new CConfigDescription("Konclude.Calculation.Memory.MaximumAllocationSize",
"Configures the memory limit for the calculation.",
new CIntegerConfigType(1024*1024*1800)),
new CIntegerConfigType(1024*1024*1800));
addConfigProperty(new CConfigDescription("Konclude.Calculation.Memory.CriticalAllocationSize",
"Configures the critical memory limit for the calculation.",
new CIntegerConfigType(1024*1024*1200)),
new CIntegerConfigType(1024*1024*1200));
addConfigProperty(new CConfigDescription("Konclude.Calculation.Memory.IncreaseAllocationSize",
"Sets the memory allocation increasing size for the calculation.",
new CIntegerConfigType(1024*1024*512)),
new CIntegerConfigType(1024*1024*512));
addConfigProperty(new CConfigDescription("Konclude.Calculation.DatatypeReasoning",
"Determines whether datatype reasoning is activated.",
new CBooleanConfigType(true)),
new CBooleanConfigType(true));
addConfigProperty(new CConfigDescription("Konclude.Calculation.MaximumRecursiveProcessingConceptCount",
"Determines the maximum recursion for the processing of added concepts in completion graphs with tableau expansion rules.",
new CIntegerConfigType(200)),
new CIntegerConfigType(200));
// Processing configurations
addConfigProperty(new CConfigDescription("Konclude.Calculation.Optimization.Backjumping",
"Determines whether the reasoner performs dependency directed backjumping/cancellation.",
new CBooleanConfigType(true)),
new CBooleanConfigType(true));
addConfigProperty(new CConfigDescription("Konclude.Calculation.Optimization.UnsatisfiableCacheRetrieval",
"Determines whether the reasoner uses unsatisfiable cache retrievals for calculation.",
new CBooleanConfigType(true)),
new CBooleanConfigType(true));
addConfigProperty(new CConfigDescription("Konclude.Calculation.Optimization.SatisfiableCacheRetrieval",
"Determines whether the reasoner uses satisfiable cache retrievals for calculation.",
new CBooleanConfigType(true)),
new CBooleanConfigType(true));
addConfigProperty(new CConfigDescription("Konclude.Calculation.Optimization.UnsatisfiableCacheSingleLevelWriting",
"Determines whether the reasoner writes single individual level clashes to unsatisfiable cache.",
new CBooleanConfigType(true)),
new CBooleanConfigType(true));
addConfigProperty(new CConfigDescription("Konclude.Calculation.Optimization.UnsatisfiableCacheTestingConceptWriting",
"Determines whether the reasoner writes unsatisfiability tested concepts to unsatisfiable cache.",
new CBooleanConfigType(true)),
new CBooleanConfigType(true));
addConfigProperty(new CConfigDescription("Konclude.Calculation.Optimization.SatisfiableCacheSingleLevelWriting",
"Determines whether the reasoner writes single individual level satisfiable to satisfiable cache.",
new CBooleanConfigType(true)),
new CBooleanConfigType(true));
addConfigProperty(new CConfigDescription("Konclude.Calculation.Optimization.DependencyTracking",
"Determines whether the reasoner performs dependency tracking.",
new CBooleanConfigType(true)),
new CBooleanConfigType(true));
addConfigProperty(new CConfigDescription("Konclude.Calculation.Optimization.ProxyIndividuals",
"Determines whether the reasoner uses proxy individuals.",
new CBooleanConfigType(true)),
new CBooleanConfigType(true));
addConfigProperty(new CConfigDescription("Konclude.Calculation.Optimization.MinimizedMergingBranches",
"Determines whether the reasoner minimizes merging branches.",
new CBooleanConfigType(true)),
new CBooleanConfigType(true));
addConfigProperty(new CConfigDescription("Konclude.Calculation.Optimization.ProcessedIndividualNodePropagation",
"Determines whether the reasoner propagates the individual node complete processed flags to successors.",
new CBooleanConfigType(false)),
new CBooleanConfigType(false));
addConfigProperty(new CConfigDescription("Konclude.Calculation.Optimization.IndividualNodeIDPriorization",
"Determines whether the reasoner uses the individual node IDs to prioritize the individual node processing queue.",
new CBooleanConfigType(true)),
new CBooleanConfigType(true));
addConfigProperty(new CConfigDescription("Konclude.Calculation.Optimization.StrictIndividualNodeProcessingOrder",
"Determines whether the reasoner processes only one individual node at one time.",
new CBooleanConfigType(true)),
new CBooleanConfigType(true));
addConfigProperty(new CConfigDescription("Konclude.Calculation.Optimization.BranchTriggering",
"Determines whether the reasoner uses triggers to delay and avoid branches.",
new CBooleanConfigType(true)),
new CBooleanConfigType(true));
addConfigProperty(new CConfigDescription("Konclude.Calculation.Optimization.SemanticBranching",
"Determines whether the reasoner uses semantic branching.",
new CBooleanConfigType(false)),
new CBooleanConfigType(false));
addConfigProperty(new CConfigDescription("Konclude.Calculation.Optimization.AtomicSemanticBranching",
"Determines whether the reasoner uses semantic branching for atomic concepts that has no additional effort.",
new CBooleanConfigType(true)),
new CBooleanConfigType(true));
addConfigProperty(new CConfigDescription("Konclude.Calculation.Optimization.AnywhereCoreConceptCandidateHashBlockingSearch",
"Determines whether the reasoner assists the anywhere blocking search with a candidate hash for marked core concepts.",
new CBooleanConfigType(true)),
new CBooleanConfigType(true));
addConfigProperty(new CConfigDescription("Konclude.Calculation.Optimization.AnywhereCandidateHashBlockingSearch",
"Determines whether the reasoner assists the anywhere blocking search with a candidate hash.",
new CBooleanConfigType(false)),
new CBooleanConfigType(false));
addConfigProperty(new CConfigDescription("Konclude.Calculation.Optimization.AnywhereBlockingSearch",
"Determines whether the reasoner uses an anywhere blocking search.",
new CBooleanConfigType(false)),
new CBooleanConfigType(false));
addConfigProperty(new CConfigDescription("Konclude.Calculation.Optimization.AncestorBlockingSearch",
"Determines whether the reasoner uses an ancestor blocking search.",
new CBooleanConfigType(false)),
new CBooleanConfigType(false));
addConfigProperty(new CConfigDescription("Konclude.Calculation.Optimization.PairwiseEqualSetBlockingTest",
"Determines whether the reasoner checks blocking with pairwise equal concept set tests.",
new CBooleanConfigType(false)),
new CBooleanConfigType(false));
addConfigProperty(new CConfigDescription("Konclude.Calculation.Optimization.EqualSetBlockingTest",
"Determines whether the reasoner checks blocking with equal concept set tests.",
new CBooleanConfigType(false)),
new CBooleanConfigType(false));
addConfigProperty(new CConfigDescription("Konclude.Calculation.Optimization.SubSetBlockingTest",
"Determines whether the reasoner checks blocking with sub concept set tests.",
new CBooleanConfigType(false)),
new CBooleanConfigType(false));
addConfigProperty(new CConfigDescription("Konclude.Calculation.Optimization.OptimizedBlockingTest",
"Determines whether the reasoner checks blocking with optimized blocking tests.",
new CBooleanConfigType(true)),
new CBooleanConfigType(true));
addConfigProperty(new CConfigDescription("Konclude.Calculation.Optimization.DirectRulePreprocessing",
"Determines whether the reasoner is direct preprocessing some rules.",
new CBooleanConfigType(true)),
new CBooleanConfigType(true));
addConfigProperty(new CConfigDescription("Konclude.Calculation.Optimization.LazyNewMergingNominalCreation",
"Determines whether the reasoner generates new nominals with the NN-rule as late as possible to avoid superfluous branches.",
new CBooleanConfigType(true)),
new CBooleanConfigType(true));
addConfigProperty(new CConfigDescription("Konclude.Calculation.Optimization.ConsistenceRestrictedNonStrictProcessing",
"Determines whether the reasoner generates the deterministic part of the consistence model with non strict individual node processing order.",
new CBooleanConfigType(true)),
new CBooleanConfigType(true));
addConfigProperty(new CConfigDescription("Konclude.Calculation.Optimization.SatisfiableExpansionCacheRetrieval",
"Determines whether the reasoner checks for cached nodes in the satisfiable expansion cache.",
new CBooleanConfigType(true)),
new CBooleanConfigType(true));
addConfigProperty(new CConfigDescription("Konclude.Calculation.Optimization.SatisfiableExpansionCacheConceptExpansion",
"Determines whether the reasoner is expanding nodes with the satisfiable expansion cache.",
new CBooleanConfigType(true)),
new CBooleanConfigType(true));
addConfigProperty(new CConfigDescription("Konclude.Calculation.Optimization.SatisfiableExpansionCacheSatisfiableBlocking",
"Determines whether the reasoner blocks processing for satisfiable cached nodes and successor nodes.",
new CBooleanConfigType(true)),
new CBooleanConfigType(true));
addConfigProperty(new CConfigDescription("Konclude.Calculation.Optimization.SatisfiableExpansionCacheWriting",
"Determines whether the reasoner writes satisfiable nodes to satisfiable expansion cache.",
new CBooleanConfigType(true)),
new CBooleanConfigType(true));
addConfigProperty(new CConfigDescription("Konclude.Calculation.Optimization.SignatureMirroringBlocking",
"Determines whether the reasoner can block nodes by mirroring other nodes.",
new CBooleanConfigType(true)),
new CBooleanConfigType(true));
addConfigProperty(new CConfigDescription("Konclude.Calculation.Optimization.SignatureSaving",
"Determines whether the reasoner writes nodes concept set signatures into hash.",
new CBooleanConfigType(true)),
new CBooleanConfigType(true));
addConfigProperty(new CConfigDescription("Konclude.Calculation.Optimization.ANDConceptSkipping",
"Determines whether the reasoner can skip adding AND concepts to individual nodes.",
new CBooleanConfigType(false)),
new CBooleanConfigType(false));
addConfigProperty(new CConfigDescription("Konclude.Calculation.Optimization.CompletionGraphCaching",
"Determines whether the reasoner can use the generated completion graph in the persistence check to block unnecessary individual node processing.",
new CBooleanConfigType(true)),
new CBooleanConfigType(true));
addConfigProperty(new CConfigDescription("Konclude.Calculation.Optimization.DelayedCompletionGraphCachingReactivation",
"Determines whether the reactivation of completion graph cached nodes is delayed.",
new CBooleanConfigType(false)),
new CBooleanConfigType(false));
addConfigProperty(new CConfigDescription("Konclude.Calculation.Optimization.AvoidRepeatedIndividualProcessing",
"Determines whether the reprocessing of nodes for individuals is avoided if nominals do not occur in the ontology and tests do not directly refers to individuals.",
new CBooleanConfigType(true)),
new CBooleanConfigType(true));
addConfigProperty(new CConfigDescription("Konclude.Calculation.Optimization.ForceNodesRecreationForRepeatedIndividualProcessing",
"Determines whether for the repeated reprocessing of individuals new nodes are created.",
new CBooleanConfigType(true)),
new CBooleanConfigType(true));
addConfigProperty(new CConfigDescription("Konclude.Calculation.Optimization.CompletionGraphReuseCachingRetrieval",
"Determines whether the reasoner queries the completion graph reuse cache for compatible entries.",
new CBooleanConfigType(true)),
new CBooleanConfigType(true));
addConfigProperty(new CConfigDescription("Konclude.Calculation.Optimization.CompletionGraphDeterministicReuse",
"Determines whether the reasoner is allowed to reuse deterministic completion graph reuse cache entries.",
new CBooleanConfigType(true)),
new CBooleanConfigType(true));
addConfigProperty(new CConfigDescription("Konclude.Calculation.Optimization.CompletionGraphNonDeterministicReuse",
"Determines whether the reasoner is allowed to reuse non-deterministic completion graph reuse cache entries.",
new CBooleanConfigType(false)),
new CBooleanConfigType(false));
addConfigProperty(new CConfigDescription("Konclude.Calculation.Optimization.UnsatisfiableCachingFullDependency",
"Determines whether the reasoner experimentally uses for the unsatisfiable caching additional all dependencies of all constructs of the unsatisfiable node.",
new CBooleanConfigType(false)),
new CBooleanConfigType(false));
addConfigProperty(new CConfigDescription("Konclude.Calculation.Optimization.UnsatisfiableCachingFullSignature",
"Determines whether the reasoner experimentally uses for the unsatisfiable caching additional the unsatisfiable node signatures for retrieval.",
new CBooleanConfigType(false)),
new CBooleanConfigType(false));
addConfigProperty(new CConfigDescription("Konclude.Calculation.Optimization.PairwiseMerging",
"Determines whether the reasoner experimentally uses the naive pairwise merging approach.",
new CBooleanConfigType(false)),
new CBooleanConfigType(false));
addConfigProperty(new CConfigDescription("Konclude.Calculation.Optimization.SaturationPiling",
"Determines whether the reasoner experimentally uses piling individual nodes for saturation.",
new CBooleanConfigType(true)),
new CBooleanConfigType(true));
addConfigProperty(new CConfigDescription("Konclude.Calculation.Optimization.RepresentativePropagation",
"Determines whether the reasoner propagates representatives instead of sets of variable mappings.",
new CBooleanConfigType(true)),
new CBooleanConfigType(true));
addConfigProperty(new CConfigDescription("Konclude.Calculation.Optimization.IndividualsBackendCacheLoading",
"Determines whether the reasoner loads data for individuals from backend cache.",
new CBooleanConfigType(true)),
new CBooleanConfigType(true));
addConfigProperty(new CConfigDescription("Konclude.Calculation.Optimization.BackendCriticalNeighbourExpansionLimitation",
"Determines whether the amount of individuals loaded from the backend cache into the local completion graph is limited (even if expansion to corresponding neighbours is required).",
new CBooleanConfigType(true)),
new CBooleanConfigType(true));
addConfigProperty(new CConfigDescription("Konclude.Calculation.Optimization.BackendCriticalNeighbourRepresentativeExpansionDelaying",
"Determines whether neighbours are representatively expanded or delayed until the representatively expanded individual has a processing that is not only related to concepts.",
new CBooleanConfigType(true)),
new CBooleanConfigType(true));
addConfigProperty(new CConfigDescription("Konclude.Calculation.Optimization.BackendExpansionLimitReachedReuseActivation",
"Determines whether expansion reuse is activated once the expansion limit has been reached.",
new CBooleanConfigType(true)),
new CBooleanConfigType(true));
addConfigProperty(new CConfigDescription("Konclude.Calculation.Optimization.BackendExpansionReuseActivationNeighbourIndividualCount",
"Determines the threshold of (possible) neighbour individuals where the dynamic backend reuse is activated.",
new CIntegerConfigType(1)),
new CIntegerConfigType(1));
addConfigProperty(new CConfigDescription("Konclude.Calculation.Optimization.BackendExpansionReuseActivationSameIndividualCount",
"Determines the threshold of (possible) same individuals where the dynamic backend reuse is activated.",
new CIntegerConfigType(1)),
new CIntegerConfigType(1));
addConfigProperty(new CConfigDescription("Konclude.Calculation.Optimization.BackendCriticalNeighbourExpansionReusing",
"Determines whether non-deterministic consequences stored in the backend cache are reused for expanding the local completion graph.",
new CBooleanConfigType(false)),
new CBooleanConfigType(false));
addConfigProperty(new CConfigDescription("Konclude.Calculation.Optimization.BackendExpandDeterministicallyMergedHandledNeighbours",
"Determines whether deterministically merged handled individuals are expanded as neighbours in completion graphs.",
new CBooleanConfigType(true)),
new CBooleanConfigType(true));
addConfigProperty(new CConfigDescription("Konclude.Calculation.Optimization.BackendCriticalCardinalityCheckingNeighbourExpansionRepresentativeCounting",
"Determines whether the representative neighbour individuals are counted for a more precise critical cardinality checking for determining whether an expansion is required from the backend.",
new CBooleanConfigType(false)),
new CBooleanConfigType(false));
addConfigProperty(new CConfigDescription("Konclude.Calculation.Optimization.BackendCriticalNeighbourExpansionLateDynamicReusing",
"Determines whether non-deterministic consequences stored in the backend cache are reused for expanding the local completion graph if certain conditions are satisfied (which check whether reuse could save many further expansions).",
new CBooleanConfigType(true)),
new CBooleanConfigType(true));
addConfigProperty(new CConfigDescription("Konclude.Calculation.Optimization.BackendCriticalNeighbourExpansionLimit",
"The limit to how many (neighbour) individuals from the backend cache the local completion graph can be expanded.",
new CIntegerConfigType(15000)),
new CIntegerConfigType(15000));
addConfigProperty(new CConfigDescription("Konclude.Calculation.Optimization.BackendCriticalNeighbourExpansionPriorityReductionCount",
"The number of expansion individuals from the backend cache for which any further expansion is prioritized down.",
new CIntegerConfigType(12000)),
new CIntegerConfigType(12000));
addConfigProperty(new CConfigDescription("Konclude.Calculation.Optimization.BackendCriticalNeighbourDirectExpansionLimit",
"The number of neighbour individuals that can be directly expanded.",
new CIntegerConfigType(10)),
new CIntegerConfigType(10));
addConfigProperty(new CConfigDescription("Konclude.Calculation.Optimization.BackendCriticalNeighbourDirectExpansionOverCriticalReductionSize",
"The reduction size for directly expanding neighbour individuals if a critical amount of neighbours has been integrated (-1 for immediate reduction to 0).",
new CIntegerConfigType(-1)),
new CIntegerConfigType(-1));
addConfigProperty(new CConfigDescription("Konclude.Calculation.Optimization.BackendCriticalNeighbourExpansionIndividualsBatchSize",
"The number of neighbour individuals that can be expanded in one batch.",
new CIntegerConfigType(3)),
new CIntegerConfigType(3));
addConfigProperty(new CConfigDescription("Konclude.Calculation.Optimization.BackendCriticalNeighbourExpansionRolesBatchSize",
"The number of different neighbour types that can be expanded in one batch.",
new CIntegerConfigType(5)),
new CIntegerConfigType(5));
addConfigProperty(new CConfigDescription("Konclude.Calculation.Optimization.BackendDelayedSameLabelInitializationCopying",
"Determines whether the initialization of individual nodes is delayed (if they have the same label as already existing ones) and their consequences are copied (if possible).",
new CBooleanConfigType(true)),
new CBooleanConfigType(true));
addConfigProperty(new CConfigDescription("Konclude.Calculation.Optimization.BackendOnlyDeterministicRepresentativeIndividualDataConsideration",
"Determines whether only deterministic representative individual data is considered for expansion.",
new CBooleanConfigType(true)),
new CBooleanConfigType(true));
addConfigProperty(new CConfigDescription("Konclude.Calculation.Optimization.SuccessorConceptSaturationExpansion",
"Determines whether the reasoner using saturated concepts for expanding newly created successor nodes.",
new CBooleanConfigType(true)),
new CBooleanConfigType(true));
addConfigProperty(new CConfigDescription("Konclude.Calculation.Optimization.SaturationCaching",
"Determines whether the reasoner using saturated concepts for caching.",
new CBooleanConfigType(true)),
new CBooleanConfigType(true));
addConfigProperty(new CConfigDescription("Konclude.Calculation.Optimization.SaturationCriticalConceptTesting",
"Determines whether the reasoner tests critical concepts after the saturation.",
new CBooleanConfigType(true)),
new CBooleanConfigType(true));
addConfigProperty(new CConfigDescription("Konclude.Calculation.Optimization.SaturationDirectCriticalToInsufficient",
"Determines whether the reasoner directly marks nodes with critical concepts as insufficiently saturated.",
new CBooleanConfigType(false)),
new CBooleanConfigType(false));
addConfigProperty(new CConfigDescription("Konclude.Calculation.Optimization.SaturationSuccessorExtension",
"Determines whether successors are extended in the saturation with concepts that are propagated into successor directions.",
new CBooleanConfigType(true)),
new CBooleanConfigType(true));
addConfigProperty(new CConfigDescription("Konclude.Calculation.Optimization.SaturationReferredNodeManyConceptCount",
"The number of concepts for which referred nodes are identified to have many concepts.",
new CIntegerConfigType(500)),
new CIntegerConfigType(500));
addConfigProperty(new CConfigDescription("Konclude.Calculation.Optimization.SaturationManyConceptReferredNodeCountProcessLimit",
"The number of referred nodes with many concept for which saturation is not performed.",
new CIntegerConfigType(2)),
new CIntegerConfigType(2));
addConfigProperty(new CConfigDescription("Konclude.Calculation.Optimization.SaturationReferredNodeConceptCountProcessLimit",
"The number of concepts of the referred nodes for which saturation is not performed.",
new CIntegerConfigType(1500)),
new CIntegerConfigType(1500));
addConfigProperty(new CConfigDescription("Konclude.Calculation.Optimization.SaturationReferredNodeUnprocessedCountProcessLimit",
"The number of unprocessed referred nodes for which saturation is not performed.",
new CIntegerConfigType(1)),
new CIntegerConfigType(1));
addConfigProperty(new CConfigDescription("Konclude.Calculation.Optimization.SaturationReferredNodeCheckingDepth",
"The recursive checking depth for referred nodes for saturation.",
new CIntegerConfigType(5)),
new CIntegerConfigType(5));
addConfigProperty(new CConfigDescription("Konclude.Calculation.Optimization.ForceManyConceptNodeSaturation",
"Determines whether saturation is enforced even if there are many concepts.",
new CBooleanConfigType(true)),
new CBooleanConfigType(true));
addConfigProperty(new CConfigDescription("Konclude.Calculation.Optimization.NominalSaturationCachingByNodeReactivation",
"Determines whether the reasoner using saturated concepts with connections to nominals for caching with reactivation.",
new CBooleanConfigType(true)),
new CBooleanConfigType(true));
addConfigProperty(new CConfigDescription("Konclude.Calculation.Optimization.NominalSaturation",
"Determines whether the reasoner uses the completion graph from the consistency test to improve the saturation of concept that have a connection to nominals.",
new CBooleanConfigType(true)),
new CBooleanConfigType(true));
addConfigProperty(new CConfigDescription("Konclude.Calculation.Optimization.SaturationExpansionSatisfiabilityCacheWriting",
"Determines whether the reasoner caches expansions and satisfiability for saturated nodes.",
new CBooleanConfigType(true)),
new CBooleanConfigType(true));
addConfigProperty(new CConfigDescription("Konclude.Calculation.Optimization.SaturationExpansionSatisfiabilityCacheCount",
"Determines how many expansions are cached by the reasoner for each saturated nodes.",
new CIntegerConfigType(1)),
new CIntegerConfigType(1));
addConfigProperty(new CConfigDescription("Konclude.Calculation.Optimization.SaturationUnsatisfiabilityCacheWriting",
"Determines whether the reasoner caches and propagates unsatisfiability for saturated nodes.",
new CBooleanConfigType(true)),
new CBooleanConfigType(true));
addConfigProperty(new CConfigDescription("Konclude.Calculation.Optimization.EquivalentAlternativesSaturationMerging",
"Determinses whether model merging with the saturation for alternatives of equivalent candidate concepts is used to prune possible subsumers.",
new CBooleanConfigType(true)),
new CBooleanConfigType(true));
addConfigProperty(new CConfigDescription("Konclude.Calculation.Optimization.ConceptSaturation",
"Determinses whether concepts are saturated for the assisting of the tableau algorithm.",
new CBooleanConfigType(true)),
new CBooleanConfigType(true));
addConfigProperty(new CConfigDescription("Konclude.Calculation.Optimization.IndividualSaturation",
"Determines whether individual are saturated.",
new CBooleanConfigType(true)),
new CBooleanConfigType(true));
addConfigProperty(new CConfigDescription("Konclude.Calculation.Optimization.ComputedTypesCaching",
"Determines whether computed types are cached for reusing in other tests.",
new CBooleanConfigType(true)),
new CBooleanConfigType(true));
addConfigProperty(new CConfigDescription("Konclude.Calculation.Optimization.ConstructionIndividualNodeMerging",
"Determines whether constructed individual nodes are merged into nominal nodes.",
new CBooleanConfigType(false)),
new CBooleanConfigType(false));
addConfigProperty(new CConfigDescription("Konclude.Cache.RepresentativeBackendCache.LateIndividualLabelAssociationIndexing",
"Specifies whether the individual label association is indexed (in parallel) after all individual data is written to the cache.",
new CBooleanConfigType(true)),
new CBooleanConfigType(true));
addConfigProperty(new CConfigDescription("Konclude.Cache.RepresentativeBackendCache.WaitIndividualLabelAssociationIndexed",
"Specifies whether the cache is blocked until individual label association indexing is finished.",
new CBooleanConfigType(true)),
new CBooleanConfigType(true));
addConfigProperty(new CConfigDescription("Konclude.Cache.RepresentativeBackendCache.LogStorageStatistics",
"Specifies whether storage statistics are logged.",
new CBooleanConfigType(false)),
new CBooleanConfigType(false));
addConfigProperty(new CConfigDescription("Konclude.Cache.RepresentativeBackendCache.ThreadedUpdateSynchronization",
"Specifies whether the backend cached is updated via a designated thread.",
new CBooleanConfigType(true)),
new CBooleanConfigType(true));
addConfigProperty(new CConfigDescription("Konclude.Cache.RepresentativeBackendCache.PendingWriteDataLimit",
"Specifies the limit for the pending write data events (-1 for unlimited).",
new CIntegerConfigType(-1)),
new CIntegerConfigType(-1));
addConfigProperty(new CConfigDescription("Konclude.Cache.RepresentativeBackendCache.IncrementUpdateIdForDeterministicSameAsCompletion",
"Specifies whether the update id is incremented for an individual association data if the deterministically same individuals are internally updated.",
new CBooleanConfigType(true)),
new CBooleanConfigType(true));
addConfigProperty(new CConfigDescription("Konclude.Cache.RepresentativeBackendCache.MinRequiredDeterministicSameMergedHandledInstallationPossiblitiesForNeighbourCompletion",
"Specifies the minimum required number of deterministically same merges handling installation possibilities to perform the neighbour completion.",
new CIntegerConfigType(1)),
new CIntegerConfigType(1));
addConfigProperty(new CConfigDescription("Konclude.Cache.RepresentativeBackendCache.UnchangedDeterministicSameMergeUpdatesForDeterministicSameNeighbourCompletion",
"Specifies the number of updates for an individual association data without merges until the neighbour completion is performed.",
new CIntegerConfigType(1)),
new CIntegerConfigType(1));
addConfigProperty(new CConfigDescription("Konclude.Cache.RepresentativeBackendCache.TryingDeterministicSameMergedHandlingInstallationDifferenceCount",
"Specifies the difference of (new) deterministically same merges handling installation possibilities, where neighbour completion is tried even if the update is incompatible.",
new CIntegerConfigType(-1)),
new CIntegerConfigType(-1));
addConfigProperty(new CConfigDescription("Konclude.Cache.RepresentativeBackendCache.BasicPrecomputationModeActivationUpdateMergesPercentRatio",
"Specifies the ratio of merged to updated individual data at which the basic precomputation mode is activated, where the expansion is based on the first individual association data.",
new CIntegerConfigType(5)),
new CIntegerConfigType(5));
addConfigProperty(new CConfigDescription("Konclude.Cache.RepresentativeBackendCache.MaxIncompletelyHandledIndividualsRetrievalCount",
"Specifies the maximum number of incompletely handled individuals retrievals until the association data is completed (-1 for no maximum).",
new CIntegerConfigType(-1)),
new CIntegerConfigType(-1));
addConfigProperty(new CConfigDescription("Konclude.Cache.RepresentativeBackendCache.MaxCacheDataUpdateWritingCount",
"Specifies the maximum number of cache updates until the association data is completed (-1 for no maximum).",
new CIntegerConfigType(-1)),
new CIntegerConfigType(-1));
addConfigProperty(new CConfigDescription("Konclude.Cache.RepresentativeBackendCache.RejectingUpdateIncompatibleIndividualAssociationsRatio",
"Specifies the ratio of incompatible individual association changes to all association changes for rejecting the integration of a cache update.",
new CDoubleConfigType(1.)),
new CDoubleConfigType(1.));
addConfigProperty(new CConfigDescription("Konclude.Cache.RepresentativeBackendCache.RejectingUpdateIncompatiblePropagationCuttedIndividualLinkedNeighbourRatio",
"Specifies the ratio of neighbour links of incompatible individual associations with propagation cuts to all individuals for rejecting the integration of a cache update.",
new CDoubleConfigType(1.)),
new CDoubleConfigType(1.));
addConfigProperty(new CConfigDescription("Konclude.Cache.RepresentativeBackendCache.RejectingUpdateIncompatiblePropagationCuttedIndividualLinkedNeighbourCount",
"Specifies the number of neighbour links of incompatible individual associations with propagation cuts to all individuals for rejecting the integration of a cache update.",
new CIntegerConfigType(-1)),
new CIntegerConfigType(-1));
addConfigProperty(new CConfigDescription("Konclude.Cache.RepresentativeBackendCache.SlotUpdateWaitingIncreaseMaximumCount",
"Specifies the maximum update waiting count until the reader/writer slots are updated.",
new CIntegerConfigType(20)),
new CIntegerConfigType(20));
addConfigProperty(new CConfigDescription("Konclude.Cache.RepresentativeBackendCache.InterpretUnchangedLabelsAsCompatibleIndividualAssociationUpdates",
"Determines whether an update for an individual association data is interpreted as compatible (even if update ids do not match) if the labels do not differ.",
new CBooleanConfigType(false)),
new CBooleanConfigType(false));
addConfigProperty(new CConfigDescription("Konclude.Cache.SatisfiableExpander.InitialMemoryLevelForIncreaseRequiredSignatureReferenceCount",
"Specifies the initial memory level for which the required signature references for the creation of cache entries is increased.",
new CIntegerConfigType(200*1024*1024)),
new CIntegerConfigType(200*1024*1024));
addConfigProperty(new CConfigDescription("Konclude.Cache.SatisfiableExpander.NextMemoryLevelIncreaseForIncreaseRequiredSignatureReferenceCount",
"Specifies the increase for the next memory level for which the required signature references is increased.",
new CIntegerConfigType(100*1024*1024)),
new CIntegerConfigType(100*1024*1024));
addConfigProperty(new CConfigDescription("Konclude.Cache.SatisfiableExpander.InitialRequiredSignatureReferenceCount",
"Specifies the initial required signature references count.",
new CIntegerConfigType(1)),
new CIntegerConfigType(1));
addConfigProperty(new CConfigDescription("Konclude.Cache.SatisfiableExpander.RequiredSignatureReferenceCountIncrease",
"Specifies the increase for the required signature references count.",
new CIntegerConfigType(1)),
new CIntegerConfigType(1));
addConfigProperty(new CConfigDescription("Konclude.Calculation.Optimization.BlockingTestsIgnoringCompletionGraphCachedNonBlockedNodes",
"Determines whether blocking tests are performed for nodes that are present in the cached completion graph and are not blocked in it.",
new CBooleanConfigType(true)),
new CBooleanConfigType(true));
addConfigProperty(new CConfigDescription("Konclude.Calculation.Optimization.AllowBackendNeighbourExpansionBlocking",
"Determines whether the expansion to neighbour nodes/individuals is blocked if the expansion is clear w.r.t. the backend.",
new CBooleanConfigType(true)),
new CBooleanConfigType(true));
addConfigProperty(new CConfigDescription("Konclude.Calculation.Optimization.AllowBackendSuccessorExpansionBlocking",
"Determines whether the expansion to blockable successor nodes is blocked in completion graphs if the expansion is clear w.r.t. the backend.",
new CBooleanConfigType(true)),
new CBooleanConfigType(true));
addConfigProperty(new CConfigDescription("Konclude.Calculation.Optimization.NewMergingsBackendOnlyInferringNeighbourExpansion",
"Determines whether only (possibly) inferring neighbours are expanded into the local completion graph for new (deterministic) mergings of individuals.",
new CBooleanConfigType(true)),
new CBooleanConfigType(true));
addConfigProperty(new CConfigDescription("Konclude.Calculation.Optimization.OccurrenceStatisticsCollecting",
"Determines whether the occurrence statistics are collected while building completion/saturation graph for consistency checking.",
new CBooleanConfigType(true)),
new CBooleanConfigType(true));
// Preprocessing configurations
addConfigProperty(new CConfigDescription("Konclude.Calculation.Preprocessing.TripleEncodedAssertionsIndexing.IndividualDataConvertion",
"Determines whether the triple encoded assertions are converted to individual data.",
new CBooleanConfigType(true)),
new CBooleanConfigType(true));
addConfigProperty(new CConfigDescription("Konclude.Calculation.Preprocessing.TripleEncodedAssertionsIndexing.ConcurrentIndividualDataConvertion",
"Determines whether the triple encoded assertions are concurrently converted to individual data.",
new CBooleanConfigType(true)),
new CBooleanConfigType(true));
addConfigProperty(new CConfigDescription("Konclude.Calculation.Preprocessing.TripleEncodedAssertionsIndexing.DeleteTriplesDataAfterIndexing",
"Determines whether the triples data is deleted after the indexing.",
new CBooleanConfigType(false)),
new CBooleanConfigType(false));
addConfigProperty(new CConfigDescription("Konclude.Calculation.Preprocessing.TripleEncodedAssertionsIndexing.ExternalTriplesDatabaseCaching",
"Determines whether the indexing data is stored in an external database.",
new CBooleanConfigType(false)),
new CBooleanConfigType(false));
addConfigProperty(new CConfigDescription("Konclude.Calculation.Preprocessing.TripleEncodedAssertionsIndexing.ExternalTriplesDatabaseCaching.DSNConfig",
"The DSN config for the external triples database for caching ABox individuals indexing data.",
new CStringConfigType("")),
new CStringConfigType("dsn='VirtuosoTest',user='dba',password='dba'"));
addConfigProperty(new CConfigDescription("Konclude.Calculation.Preprocessing.TripleEncodedAssertionsIndexing.ExternalTriplesDatabaseCaching.TriplesDatabaseName",
"The name of the external triples database for caching ABox individuals indexing data.",
new CStringConfigType("http://Konclude.com/ReasoningData/$PercentEncodedKnowledgeBaseName/ABoxIndexingCache")),
new CStringConfigType("http://Konclude.com/ReasoningData/$PercentEncodedKnowledgeBaseName/ABoxIndexingCache"));
addConfigProperty(new CConfigDescription("Konclude.Calculation.Preprocessing.TripleEncodedAssertionsIndexing.ExternalTriplesDatabaseCaching.CacheSize",
"Specifies the size of the cache for indexing data of ABox individuals.",
new CIntegerConfigType(1500000)),
new CIntegerConfigType(1500000));
addConfigProperty(new CConfigDescription("Konclude.Calculation.Preprocessing.TripleEncodedAssertionsIndexing.ExternalTriplesDatabaseCaching.ClearAtInit",
"Determines whether the external database is cleared on initializing the ABox individuals indexing cache, i.e., all present triples are rmoved.",
new CBooleanConfigType(true)),
new CBooleanConfigType(true));
addConfigProperty(new CConfigDescription("Konclude.Calculation.Preprocessing.ForceInverseRoleCreation",
"Determines whether the creation of inverse roles is forced.",
new CBooleanConfigType(true)),
new CBooleanConfigType(true));
addConfigProperty(new CConfigDescription("Konclude.Calculation.Preprocessing",
"Determines whether the ontology is preprocessed. Will disable all preprocessing steps.",
new CBooleanConfigType(true)),
new CBooleanConfigType(true));
addConfigProperty(new CConfigDescription("Konclude.Calculation.Preprocessing.NegationNormalization",
"Determines whether the ontology is preprocessed with the essential negation normalization.",
new CBooleanConfigType(true)),
new CBooleanConfigType(true));
addConfigProperty(new CConfigDescription("Konclude.Calculation.Preprocessing.BranchTriggerExtraction",
"Determines whether the branch triggers are generated in preprocessing phase.",
new CBooleanConfigType(true)),
new CBooleanConfigType(true));
addConfigProperty(new CConfigDescription("Konclude.Calculation.Preprocessing.LexicalNormalization",
"Determines whether the ontology is preprocessed with lexical normalization.",
new CBooleanConfigType(true)),
new CBooleanConfigType(true));
addConfigProperty(new CConfigDescription("Konclude.Calculation.Preprocessing.RoleChainAutomataTransformation",
"Determines whether the ontology is preprocessed with role chain automata transformation.",
new CBooleanConfigType(true)),
new CBooleanConfigType(true));
addConfigProperty(new CConfigDescription("Konclude.Calculation.Preprocessing.GCIAbsorption.TriggeredImplicationBinaryGCIAbsorption",
"Determines whether the ontology is preprocessed with general concept axioms (GCI) absorption into triggered binary implications.",
new CBooleanConfigType(true)),
new CBooleanConfigType(true));
addConfigProperty(new CConfigDescription("Konclude.Calculation.Preprocessing.SubroleTransformation",
"Determines whether the ontology is preprocessed with subrole transformation.",
new CBooleanConfigType(true)),
new CBooleanConfigType(true));
addConfigProperty(new CConfigDescription("Konclude.Calculation.Preprocessing.DatatypeNormalizer",
"Determines whether the ontology is preprocessed with datatype normalization.",
new CBooleanConfigType(true)),
new CBooleanConfigType(true));
addConfigProperty(new CConfigDescription("Konclude.Calculation.Preprocessing.DataLiteralValueNormalizer",
"Determines whether the ontology is preprocessed with data literal value normalization.",
new CBooleanConfigType(true)),
new CBooleanConfigType(true));
addConfigProperty(new CConfigDescription("Konclude.Calculation.Preprocessing.OntologyAssignmentTransformation",
"Determines whether the ontology is preprocessed with ontology assignment transformation.",
new CBooleanConfigType(true)),
new CBooleanConfigType(true));
addConfigProperty(new CConfigDescription("Konclude.Calculation.Preprocessing.OntologyMappingUpdate",
"Determines whether the ontology is preprocessed with ontology mapping update.",
new CBooleanConfigType(true)),
new CBooleanConfigType(true));
addConfigProperty(new CConfigDescription("Konclude.Calculation.Preprocessing.ProcessingDataExtender",
"Determines whether the ontology is extended with processing data.",
new CBooleanConfigType(true)),
new CBooleanConfigType(true));
addConfigProperty(new CConfigDescription("Konclude.Calculation.Preprocessing.ReverseRoleAssertionGeneration",
"Determines whether reverse role assertions are generated.",
new CBooleanConfigType(true)),
new CBooleanConfigType(true));
addConfigProperty(new CConfigDescription("Konclude.Calculation.Preprocessing.OntologyStructureInspection",
"Determines whether the ontology is preprocessed with ontology structure inspection.",
new CBooleanConfigType(true)),
new CBooleanConfigType(true));
addConfigProperty(new CConfigDescription("Konclude.Calculation.Preprocessing.CheckingOntologyConsistency",
"Determines whether in the preprocessing phase the ontology consistency is checked.",
new CBooleanConfigType(true)),
new CBooleanConfigType(true));
addConfigProperty(new CConfigDescription("Konclude.Calculation.Preprocessing.OntologyPrecomputation",
"Determines whether in the preprocessing phase the ontology consistency is checked and starts some other precomputations.",
new CBooleanConfigType(true)),
new CBooleanConfigType(true));
addConfigProperty(new CConfigDescription("Konclude.Calculation.Preprocessing.CoreConceptCyclesPrecomputation",
"Determines whether in the preprocessing phase the core concept cycles are precomputated.",
new CBooleanConfigType(true)),
new CBooleanConfigType(true));
addConfigProperty(new CConfigDescription("Konclude.Calculation.Preprocessing.CoreConceptCyclesExtraction",
"Determines whether in the preprocessing phase the core concept cycles are extracted from the ontology.",
new CBooleanConfigType(true)),
new CBooleanConfigType(true));
addConfigProperty(new CConfigDescription("Konclude.Calculation.Preprocessing.CoreBlockingConceptMarking",
"Determines whether in the preprocessing phase some concepts are marked as core blocking concepts.",
new CBooleanConfigType(true)),
new CBooleanConfigType(true));
addConfigProperty(new CConfigDescription("Konclude.Calculation.Preprocessing.DisjunctionToImplicationAbsorption",
"Determines whether in the preprocessing phase disjunctions are absorbed to implications.",
new CBooleanConfigType(false)),
new CBooleanConfigType(false));
addConfigProperty(new CConfigDescription("Konclude.Calculation.Preprocessing.DisjunctionToImplicationAbsorptionByExistingTriggers",
"Determines whether in the preprocessing phase disjunctions are absorbed to implications with existing triggers.",
new CBooleanConfigType(true)),
new CBooleanConfigType(true));
addConfigProperty(new CConfigDescription("Konclude.Calculation.Preprocessing.EquivalentDefinitionToSubclassImplicationAbsorption",
"Determines whether in the preprocessing phase equivalent defined concepts are absorbed to subclasses and implications.",
new CBooleanConfigType(true)),
new CBooleanConfigType(true));
addConfigProperty(new CConfigDescription("Konclude.Calculation.Preprocessing.PartialEquivalentDefinitionToCandidatesAbsorption",
"Determines whether in the preprocessing phase equivalent defined concepts are partially absorbed to candidates.",
new CBooleanConfigType(true)),
new CBooleanConfigType(true));
addConfigProperty(new CConfigDescription("Konclude.Calculation.Preprocessing.PartialDisjunctionAbsorption",
"Determines whether in the preprocessing phase disjunctions are partially.",
new CBooleanConfigType(true)),
new CBooleanConfigType(true));
addConfigProperty(new CConfigDescription("Konclude.Calculation.Preprocessing.CardinalityQualificationTriggerAbsorption",
"Determines whether in the preprocessing phase the qualification concepts of cardinality restrictions are absorbed to candidates.",
new CBooleanConfigType(true)),
new CBooleanConfigType(true));
addConfigProperty(new CConfigDescription("Konclude.Calculation.Preprocessing.CardinalityQualificationTriggerPartialAbsorption",
"Determines whether in the preprocessing phase the qualification concepts of cardinality restrictions are partially absorbed to candidates.",
new CBooleanConfigType(true)),
new CBooleanConfigType(true));
addConfigProperty(new CConfigDescription("Konclude.Calculation.Preprocessing.CardinalityQualificationTriggerOnlyPositiveAbsorption",
"Determines whether in the preprocessing phase the qualification concepts of cardinality restrictions are only absorbed if they occur positive.",
new CBooleanConfigType(false)),
new CBooleanConfigType(false));
addConfigProperty(new CConfigDescription("Konclude.Calculation.Preprocessing.AssuranceSatisfactionAbsorption",
"Determines whether an (additional) assurance-based satisfaction absorption is used for GCIs.",
new CBooleanConfigType(true)),
new CBooleanConfigType(true));
addConfigProperty(new CConfigDescription("Konclude.Calculation.Preprocessing.PartialGCIImplicationAbsorption",
"Determines whether in the preprocessing phase GCIs are partially absorbed.",
new CBooleanConfigType(true)),
new CBooleanConfigType(true));
addConfigProperty(new CConfigDescription("Konclude.Calculation.Preprocessing.CommonDisjunctConceptExtraction",
"Determines whether in the preprocessing phase common disjunct concepts are extracted, so they can be added before branching.",
new CBooleanConfigType(true)),
new CBooleanConfigType(true));
addConfigProperty(new CConfigDescription("Konclude.Calculation.Preprocessing.DisjunctSorting",
"Determines whether the disjuncts in disjunctions are sorted.",
new CBooleanConfigType(true)),
new CBooleanConfigType(true));
addConfigProperty(new CConfigDescription("Konclude.Calculation.Preprocessing.BranchingStatisticsExtender",
"Determines whether the concepts are extended by branch statistics.",
new CBooleanConfigType(true)),
new CBooleanConfigType(true));
addConfigProperty(new CConfigDescription("Konclude.Calculation.Preprocessing.NominalSchemaTemplateExtraction",
"Determines whether in the preprocessing phase nominal schema templates are extracted.",
new CBooleanConfigType(true)),
new CBooleanConfigType(true));
addConfigProperty(new CConfigDescription("Konclude.Calculation.Preprocessing.NominalSchemaGrounding",
"Determines whether in the preprocessing phase axioms with nominal schemas are grounded.",
new CBooleanConfigType(true)),
new CBooleanConfigType(true));
addConfigProperty(new CConfigDescription("Konclude.Calculation.Preprocessing.FullNominalSchemaGrounding",
"Determines whether in the preprocessing phase axioms with nominal schemas are fully grounded.",
new CBooleanConfigType(false)),
new CBooleanConfigType(false));
addConfigProperty(new CConfigDescription("Konclude.Calculation.Preprocessing.AbsorbableNominalSchemaGrounding",
"Determines whether in the preprocessing phase axioms with absorbable nominal schemas are grounded.",
new CBooleanConfigType(false)),
new CBooleanConfigType(false));
addConfigProperty(new CConfigDescription("Konclude.Calculation.Preprocessing.NominalSchemaPathPreabsorption",
"Determines whether in the preprocessing phase absorbed axioms with nominal schemas are extended by backward chaining with the propagation of binding candidates.",
new CBooleanConfigType(true)),
new CBooleanConfigType(true));
addConfigProperty(new CConfigDescription("Konclude.Calculation.Preprocessing.NominalSchemaBackPropagation",
"Determines whether in the preprocessing phase absorbed axioms with nominal schemas are extended by basic backward chaining.",
new CBooleanConfigType(true)),
new CBooleanConfigType(true));
addConfigProperty(new CConfigDescription("Konclude.Calculation.Preprocessing.ExtractPropagationIntoCreationDirection",
"Determines whether in the preprocessing phase all concepts with a possibly propagation into the creation direction are identified.",
new CBooleanConfigType(true)),
new CBooleanConfigType(true));
addConfigProperty(new CConfigDescription("Konclude.Calculation.Preprocessing.RelevantConceptRoleMarker",
"Determines whether in the preprocessing phase all concepts and roles that are relevant for inferences are marked.",
new CBooleanConfigType(false)),
new CBooleanConfigType(false));
addConfigProperty(new CConfigDescription("Konclude.Calculation.Preprocessing.DatatypeAbsorption",
"Determines whether datatypes are absorbed.",
new CBooleanConfigType(true)),
new CBooleanConfigType(true));
addConfigProperty(new CConfigDescription("Konclude.Calculation.Preprocessing.CoreConceptCyclesExtraction.SkipForELFragment",
"Determines whether the extraction of core concept cycles is skipped for EL ontologies.",
new CBooleanConfigType(false)),
new CBooleanConfigType(false));
addConfigProperty(new CConfigDescription("Konclude.Calculation.Preprocessing.ExtractPropagationIntoCreationDirection.SkipForELFragment",
"Determines whether the extraction of propagation in creation direction is skipped for EL ontologies.",
new CBooleanConfigType(true)),
new CBooleanConfigType(true));
addConfigProperty(new CConfigDescription("Konclude.Calculation.Preprocessing.CoreBlockingConceptMarking.SkipForELFragment",
"Determines whether the marking of core concepts is skipped for EL ontologies.",
new CBooleanConfigType(true)),
new CBooleanConfigType(true));
addConfigProperty(new CConfigDescription("Konclude.Calculation.Preprocessing.ProcessingDataExtender.SkipForELFragment",
"Determines whether the extension with processing data is skipped for EL ontologies.",
new CBooleanConfigType(true)),
new CBooleanConfigType(true));
addConfigProperty(new CConfigDescription("Konclude.Calculation.Preprocessing.CommonDisjunctConceptExtraction.SkipForELFragment",
"Determines whether the extraction of common disjunct concepts is skipped for EL ontologies.",
new CBooleanConfigType(true)),
new CBooleanConfigType(true));
addConfigProperty(new CConfigDescription("Konclude.Calculation.Preprocessing.LexicalNormalization.SkipForELFragment",
"Determines whether the lexical normalization is skipped for EL ontologies.",
new CBooleanConfigType(true)),
new CBooleanConfigType(true));
addConfigProperty(new CConfigDescription("Konclude.Calculation.Preprocessing.BranchTriggerExtraction.SkipForELFragment",
"Determines whether the extraction of branch triggers is skipped for EL ontologies.",
new CBooleanConfigType(true)),
new CBooleanConfigType(true));
addConfigProperty(new CConfigDescription("Konclude.Calculation.Preprocessing.DisjunctSorting.SkipForELFragment",
"Determines whether the sorting of disjunctions is skipped for EL ontologies.",
new CBooleanConfigType(true)),
new CBooleanConfigType(true));
addConfigProperty(new CConfigDescription("Konclude.Calculation.Preprocessing.BranchingStatisticsExtender.SkipForELFragment",
"Determines whether the extensions of concepts by branch statistics is skipped for EL ontologies.",
new CBooleanConfigType(true)),
new CBooleanConfigType(true));
// Precomputation configurations
addConfigProperty(new CConfigDescription("Konclude.Calculation.Precomputation.TotalPrecomputor.ExpansionPropagationCutIndividualsPrecompuationSizeReductionFactor",
"Determines the reduction factor for propagation cuts for the individual precomputation size.",
new CDoubleConfigType(0.01)),
new CDoubleConfigType(0.01));
addConfigProperty(new CConfigDescription("Konclude.Calculation.Precomputation.TotalPrecomputor.ExpansionPropagationCutIndividualsPrecompuationSizeReductionRecoveryFactor",
"Determines the recovery factor for the reduction for propagation cuts for the individual precomputation size.",
new CDoubleConfigType(0.0005)),
new CDoubleConfigType(0.0005));
addConfigProperty(new CConfigDescription("Konclude.Calculation.Precomputation.TotalPrecomputor.ExpansionPropagationCutIndividualsPrecompuationSizeMaximumReductionFactor",
"Determines the maximum reduction factor for propagation cuts for the individual precomputation size.",
new CDoubleConfigType(0.90)),
new CDoubleConfigType(0.90));
addConfigProperty(new CConfigDescription("Konclude.Calculation.Precomputation.TotalPrecomputor.MaximumParallelCalculationCount",
"Determines the maximum number of calculation jobs that are created at the same time.",
new CIntegerConfigType(200)),
((CConfigData*)nullptr));
addConfigProperty(new CConfigDescription("Konclude.Calculation.Precomputation.TotalPrecomputor.MaximumBatchJobCreationCount",
"Determines how many calculation jobs are created in one batch.",
new CIntegerConfigType(20)),
new CIntegerConfigType(20));
addConfigProperty(new CConfigDescription("Konclude.Calculation.Precomputation.TotalPrecomputor.MultipliedUnitsParallelCalculationCount",
"Determines how many calculation jobs are created.",
new CIntegerConfigType(20)),
new CIntegerConfigType(20));
addConfigProperty(new CConfigDescription("Konclude.Calculation.Precomputation.TotalPrecomputor.IndividualsHandlingCountOntologySizeIncreaseFactor",
"Determines the ontology size for which the individuals handling count (for saturation and precomputation) is increased.",
new CIntegerConfigType(500000)),
new CIntegerConfigType(500000));
addConfigProperty(new CConfigDescription("Konclude.Calculation.Precomputation.TotalPrecomputor.IndividualsHandlingCountOntologySizeMaxIncreaseFactor",
"Determines the maximum factor by which the individuals handling count (for saturation and precomputation) is increased.",
new CIntegerConfigType(-1)),
new CIntegerConfigType(-1));
addConfigProperty(new CConfigDescription("Konclude.Calculation.Precomputation.TotalPrecomputor.BasicPrecompuationSubsequentIndividualLimitReductionInitializationFactor",
"Determines the reduction factor for the individual precomputation size limit for the first tests after the basic precomputation mode has finished.",
new CDoubleConfigType(0.005)),
new CDoubleConfigType(0.005));
addConfigProperty(new CConfigDescription("Konclude.Calculation.Precomputation.TotalPrecomputor.BasicPrecompuationSubsequentIndividualLimitReductionIncreasingFactor",
"Determines how the reduction factor for the individual precomputation size limit after the basic precomputation mode is increased.",
new CDoubleConfigType(1.01)),
new CDoubleConfigType(1.01));
addConfigProperty(new CConfigDescription("Konclude.Calculation.Precomputation.TotalPrecomputor.BasicPrecompuationParallelizationInitializationFactor",
"Determines the reduction factor for the parallelization of the individual precomputation after the basic precomputation mode has finished.",
new CDoubleConfigType(1)),
new CDoubleConfigType(1));
addConfigProperty(new CConfigDescription("Konclude.Calculation.Precomputation.TotalPrecomputor.BasicPrecompuationParallelizationIncreasingFactor",
"Determines how the reduction factor for the parallelization of the individual precomputation after the basic precomputation mode is increased.",
new CDoubleConfigType(1.01)),
new CDoubleConfigType(1.01));
addConfigProperty(new CConfigDescription("Konclude.Calculation.Precomputation.TotalPrecomputor.IndividualsSaturationSize",
"Determines how many individuals are saturated together.",
new CIntegerConfigType(3000)),
new CIntegerConfigType(3000));
addConfigProperty(new CConfigDescription("Konclude.Calculation.Precomputation.TotalPrecomputor.IndividualsPrecompuationSize",
"Determines how many individuals are precomputed together.",
new CIntegerConfigType(1500)),
new CIntegerConfigType(1500));
addConfigProperty(new CConfigDescription("Konclude.Calculation.Precomputation.TotalPrecomputor.PrecompuationRequiredIndividualRetrievalSize",
"Determines how many individuals are retrieved from backend cache for precompuation.",
new CIntegerConfigType(200000)),
new CIntegerConfigType(200000));
addConfigProperty(new CConfigDescription("Konclude.Calculation.Precomputation.TotalPrecomputor.PrecompuationRequiredIndividualRetrievalThresholdPercent",
"Determines the threshold (in percent) when the next individuals are retrieved from backend cache for precompuation.",
new CIntegerConfigType(50)),
new CIntegerConfigType(50));
addConfigProperty(new CConfigDescription("Konclude.Calculation.Precomputation.TotalPrecomputor.IndividualsPrecompuationLimitIncreasingFactorPercent",
"Determines the factor (in percent) that is used to increase the individual precomputation limit.",
new CIntegerConfigType(101)),
new CIntegerConfigType(101));
addConfigProperty(new CConfigDescription("Konclude.Calculation.Precomputation.ForceFullCompletionGraphConstruction",
"Determines whether the construction of a completion graph is enforced for the consistency check.",
new CBooleanConfigType(false)),
new CBooleanConfigType(false));
addConfigProperty(new CConfigDescription("Konclude.Calculation.Precomputation.ConditionalFullCompletionGraphConstruction",
"Determines whether a full completion graph is constructed for the consistency check if certain conditions are satisfied (i.e., if one SuggestionCondition but no ExclusionCondition is satisfied).",
new CBooleanConfigType(true)),
new CBooleanConfigType(true));
addConfigProperty(new CConfigDescription("Konclude.Calculation.Precomputation.FullCompletionGraphConstruction.ExclusionCondition.MaximumIndividualLimit",
"Specifies the maximum number of individual for which a full completion graph can be constructed.",
new CIntegerConfigType(300000)),
new CIntegerConfigType(300000));
addConfigProperty(new CConfigDescription("Konclude.Calculation.Precomputation.FullCompletionGraphConstruction.SuggestionCondition.MaximumIndividualLimit",
"Specifies the number of individual for which a full completion graph should be constructed.",
new CIntegerConfigType(10000)),
new CIntegerConfigType(10000));
addConfigProperty(new CConfigDescription("Konclude.Calculation.Precomputation.FullCompletionGraphConstruction.ExclusionCondition.MaximumIndividualConceptRatio",
"Specifies the maximum ratio (in percent) between individuals and concepts with which a full completion graph can be constructed.",
new CIntegerConfigType(5000)),
new CIntegerConfigType(5000));
addConfigProperty(new CConfigDescription("Konclude.Calculation.Precomputation.FullCompletionGraphConstruction.SuggestionCondition.MaximumIndividualConceptRatio",
"Specifies the maximum ratio between individuals and concepts with which a full completion graph should be constructed.",
new CIntegerConfigType(500)),
new CIntegerConfigType(500));
addConfigProperty(new CConfigDescription("Konclude.Calculation.Precomputation.CollectProcessStatistics",
"Determines whether calculation statistics for created tasks are collected.",
new CBooleanConfigType(false)),
new CBooleanConfigType(false));
addConfigProperty(new CConfigDescription("Konclude.Calculation.Precomputation.TrivialConsistencyChecking",
"Determines whether consistency is pretested by analysing the axioms and expressions in the ontology.",
new CBooleanConfigType(true)),
new CBooleanConfigType(true));
// Classification configurations
addConfigProperty(new CConfigDescription("Konclude.Calculation.Classification.Classifier",
"Determines which subsumption classifier is used for classification. Value can be 'Konclude.Calculation.Classification.Classifier.BruteForceClassifier' or 'Konclude.Calculation.Classification.Classifier.EnhancedTraversalClassifier' or 'Konclude.Calculation.Classification.Classifier.OptimizedSubClassClassifier' or 'Konclude.Calculation.Classification.Classifier.ExperimentalEnhancedTraversalClassifier' or 'Konclude.Calculation.Classification.Classifier.OptimizedKPSetClassClassifier'.",
new CStringConfigType("Konclude.Calculation.Classification.Classifier.OptimizedKPSetClassClassifier")),
new CStringConfigType("Konclude.Calculation.Classification.Classifier.OptimizedKPSetClassClassifier"));
addConfigProperty(new CConfigDescription("Konclude.Calculation.Classification.PruneSubsumptionRelations",
"Determines whether unnecessary calculations for ontology classification are pruned.",
new CBooleanConfigType(true)),
new CBooleanConfigType(true));
addConfigProperty(new CConfigDescription("Konclude.Calculation.Classification.TransitiveReduction.AddAllPredecessors",
"Determines whether all predecessors are added to the hierarchy nodes in the transitive reduction.",
new CBooleanConfigType(true)),
new CBooleanConfigType(true));
addConfigProperty(new CConfigDescription("Konclude.Calculation.Classification.DerivateSubsumptionRelations",
"Determines whether unnecessary calculations for ontology classification are derrived.",
new CBooleanConfigType(true)),
new CBooleanConfigType(true));
addConfigProperty(new CConfigDescription("Konclude.Calculation.Classification.PseudoModelSubsumptionMerging",
"Determines whether subsumption relations are calculated with pseudo model merging for classification.",
new CBooleanConfigType(false)),
new CBooleanConfigType(false));
addConfigProperty(new CConfigDescription("Konclude.Calculation.Classification.PseudoModelSubsumptionMerging.MaximumFastPseudoModelMergingDepth",
"Determines how depth the pseudo models are merged for a fast foregoing subsumption check.",
new CIntegerConfigType(-1)),
new CIntegerConfigType(-1));
addConfigProperty(new CConfigDescription("Konclude.Calculation.Classification.MaximumParallelSubsumptionCalculationCount",
"Determines how many subsumption calculation jobs are created per classifier.",
new CIntegerConfigType(1)),
new CIntegerConfigType(1));
addConfigProperty(new CConfigDescription("Konclude.Calculation.Classification.PseudoModelSubsumptionMerging.DirectMerging",
"Determines whether subsumption relations are calculated with direct pseudo model merging for classification. The config 'Konclude.Calculation.Classification.PseudoModelSubsumptionMerging' must be also activated.",
new CBooleanConfigType(false)),
new CBooleanConfigType(false));
addConfigProperty(new CConfigDescription("Konclude.Calculation.Classification.PseudoModelSubsumptionMerging.ProofMerging",
"Determines whether subsumption relations are calculated with proof pseudo model merging for classification. The config 'Konclude.Calculation.Classification.PseudoModelSubsumptionMerging' must be also activated.",
new CBooleanConfigType(false)),
new CBooleanConfigType(false));
addConfigProperty(new CConfigDescription("Konclude.Calculation.Classification.ObviousSubsumptionCalculation",
"Determines whether obvious subsumption relations are calculated.",
new CBooleanConfigType(true)),
new CBooleanConfigType(true));
addConfigProperty(new CConfigDescription("Konclude.Calculation.Classification.SatisfiableSubsumptionExtraction",
"Determines whether subsumption relations are extracted while satisfiable tests.",
new CBooleanConfigType(true)),
new CBooleanConfigType(true));
addConfigProperty(new CConfigDescription("Konclude.Calculation.Classification.AutomatedOptimizedClassifierSelection",
"Determines whether an optimized classifier is choosen automatically when possible.",
new CBooleanConfigType(true)),
new CBooleanConfigType(true));
addConfigProperty(new CConfigDescription("Konclude.Calculation.Classification.ForceCompleteSatisfiableTest",
"Determines whether satisfiable tests are executed for each concept independent from the result of other satisfiable tests.",
new CBooleanConfigType(false)),
new CBooleanConfigType(false));
addConfigProperty(new CConfigDescription("Konclude.Calculation.Classification.TaxonomySubsumptionCalculationSponsor",
"Determines whether the subsumption calculation sponsor is checked for each subsumption calculation.",
new CBooleanConfigType(false)),
new CBooleanConfigType(false));
addConfigProperty(new CConfigDescription("Konclude.Calculation.Classification.TaxonomySatisfiableCalculationSponsor",
"Determines whether the satisfiable calculation sponsor is checked for each satisfiable calculation.",
new CBooleanConfigType(false)),
new CBooleanConfigType(false));
addConfigProperty(new CConfigDescription("Konclude.Calculation.Classification.ConsecutivelyConstructedSatisfiableTests",
"Determines whether for the satisfiable calculation a previous satisfiable calculation is extended.",
new CBooleanConfigType(false)),
new CBooleanConfigType(false));
addConfigProperty(new CConfigDescription("Konclude.Calculation.Classification.SubclassConsideration",
"Determines whether any subclass optimization is used.",
new CBooleanConfigType(true)),
new CBooleanConfigType(true));
addConfigProperty(new CConfigDescription("Konclude.Calculation.Classification.SubclassConsideration.SubclassSubsummingCheck",
"Determines whether subclass relations are considered.",
new CBooleanConfigType(true)),
new CBooleanConfigType(true));
addConfigProperty(new CConfigDescription("Konclude.Calculation.Classification.SubclassConsideration.SubclassSubsummingCheck.PseudoModelGenerationSupport",
"Determines whether pseudo models are inspected for generating possible subclass relations. Requires the config 'Konclude.Calculation.Classification.SubclassConsideration' for the possible subclass generation.",
new CBooleanConfigType(false)),
new CBooleanConfigType(false));
addConfigProperty(new CConfigDescription("Konclude.Calculation.Classification.SubclassConsideration.SubclassIdentifierPossiblePredecessorOccurCheck",
"Determines whether deterministic subclass occurrences in satisfiable classes are used to derivate non subsumptions.",
new CBooleanConfigType(true)),
new CBooleanConfigType(true));
addConfigProperty(new CConfigDescription("Konclude.Calculation.Classification.SubclassConsideration.PossibleSubclassSubsummingOccurCheck",
"Uses non-deterministic occured identifier in satisfiable tests for restricting possible subsumptions.",
new CBooleanConfigType(true)),
new CBooleanConfigType(true));
addConfigProperty(new CConfigDescription("Konclude.Calculation.Classification.CollectProcessStatistics",
"Determines whether the statistics for building the model are collected for the classification.",
new CBooleanConfigType(false)),
new CBooleanConfigType(false));
addConfigProperty(new CConfigDescription("Konclude.Calculation.Classification.OptimizedSubClassSubsumptionClassifier.MaximumParallelSatisfiableCalculationCount",
"Determines how many satisfiable calculation jobs are created per classifier at one time.",
new CIntegerConfigType(1)),
((CConfigData*)nullptr));
addConfigProperty(new CConfigDescription("Konclude.Calculation.Classification.OptimizedSubClassSubsumptionClassifier.MultipliedUnitsParallelSatisfiableCalculationCount",
"Determines how many subsumption calculation jobs are created per classifier.",
new CIntegerConfigType(8)),
new CIntegerConfigType(8));
addConfigProperty(new CConfigDescription("Konclude.Calculation.Classification.OptimizedKPSetClassSubsumptionClassifier.MaximumParallelSatisfiableCalculationCount",
"Determines how many satisfiable calculation jobs are created per classifier at one time.",
new CIntegerConfigType(1)),
((CConfigData*)nullptr));
addConfigProperty(new CConfigDescription("Konclude.Calculation.Classification.OptimizedKPSetClassSubsumptionClassifier.MultipliedUnitsParallelSatisfiableCalculationCount",
"Determines how many subsumption calculation jobs are created per classifier.",
new CIntegerConfigType(8)),
new CIntegerConfigType(8));
addConfigProperty(new CConfigDescription("Konclude.Calculation.Classification.OptimizedKPSetClassSubsumptionClassifier.ParallelSatisfiableCalculationCreationFactor",
"Determines the factor where the classifier starts to create new calculation jobs.",
new CIntegerConfigType(600)),
new CIntegerConfigType(600));
addConfigProperty(new CConfigDescription("Konclude.Calculation.Classification.SaturationSubsumerExtraction",
"Determines whether the subsumption relations are extracted from the saturation.",
new CBooleanConfigType(true)),
new CBooleanConfigType(true));
addConfigProperty(new CConfigDescription("Konclude.Calculation.Classification.IndividualDependenceTracking",
"Determines whether dependent individuals are tracked for classification.",
new CBooleanConfigType(false)),
new CBooleanConfigType(false));
addConfigProperty(new CConfigDescription("Konclude.Calculation.Realization.OptimizedKPSetOntologyConceptRealizer.MaximumParallelTestingCalculationCount",
"Determines how many calculation jobs are maximally created per realizer at one time.",
new CIntegerConfigType(200)),
((CConfigData*)nullptr));
addConfigProperty(new CConfigDescription("Konclude.Calculation.Realization.OptimizedKPSetOntologyConceptRealizer.MultipliedUnitsParallelTestingCalculationCount",
"Determines how many calculation jobs are created per realizer.",
new CIntegerConfigType(8)),
new CIntegerConfigType(8));
addConfigProperty(new CConfigDescription("Konclude.Calculation.Realization.OptimizedKPSetOntologyConceptRealizer.PossibleInstanceConceptsUpfrontMerging",
"Determines whether a merging of possible instances with the to be checked concept should be tried upfront.",
new CBooleanConfigType(true)),
new CBooleanConfigType(true));
addConfigProperty(new CConfigDescription("Konclude.Calculation.Realization.OptimizedKPSetOntologyConceptRealizer.PossibleInstanceIndividualsAfterwardsMerging",
"Determines whether the reasoner should try to merge other possible instances into the checked concept instance.",
new CBooleanConfigType(true)),
new CBooleanConfigType(true));
addConfigProperty(new CConfigDescription("Konclude.Calculation.Realization.OptimizedKPSetOntologyConceptRealizer.PossibleInstanceIndividualsAfterwardsMergingOnlyWithSameRepresentativeLabel",
"Determines whether the reasoner should only provide individuals with same representative labels for the afterwards possible instance merging.",
new CBooleanConfigType(false)),
new CBooleanConfigType(false));
addConfigProperty(new CConfigDescription("Konclude.Calculation.Realization.OptimizedKPSetOntologyConceptRealizer.AlternatePossibleConceptInstanceTestingItemsOnCalculations",
"Determines whether possible concept instance testing is alternated for the concepts.",
new CBooleanConfigType(true)),
new CBooleanConfigType(true));
addConfigProperty(new CConfigDescription("Konclude.Calculation.Realization.OptimizedKPSetOntologyConceptRealizer.PossibleInstanceIndividualsAfterwardsMergingProvidingCount",
"Determines how many individuals are provided for merging possible instances after instance checking (negative numbers are interpreted as infinite).",
new CIntegerConfigType(-1)),
new CIntegerConfigType(-1));
addConfigProperty(new CConfigDescription("Konclude.Calculation.Realization.OptimizedKPSetOntologyConceptRealizer.PossibleInstanceIndividualsAfterwardsMergingMaximumAttemptCount",
"Determines how often it can be tried to merge another possible instance individual into the result of the currently checked concept instance.",
new CIntegerConfigType(3)),
new CIntegerConfigType(3));
addConfigProperty(new CConfigDescription("Konclude.Calculation.Realization.OptimizedKPSetOntologyConceptRealizer.PossibleInstanceIndividualsAfterwardsMergingMinimumCount",
"Determines how the minimum number of remaining instance tests for using the possible instance individual afterwards merging.",
new CIntegerConfigType(10)),
new CIntegerConfigType(10));
addConfigProperty(new CConfigDescription("Konclude.Calculation.Realization.NonDeterministicCachedCompletionGraphContinuationPropagationTests",
"Determines whether the non-deterministic derived completion graph that is cached from the consistency check is used for the propagation tests (e.g., for propagating marker concepts for role realization).",
new CBooleanConfigType(true)),
new CBooleanConfigType(true));
addConfigProperty(new CConfigDescription("Konclude.Calculation.Realization.RealizePrecomputation.SameIndividuals",
"Determines whether same individuals are precomputed if realization is requested.",
new CBooleanConfigType(true)),
new CBooleanConfigType(true));
addConfigProperty(new CConfigDescription("Konclude.Calculation.Realization.RealizePrecomputation.ConceptInstances",
"Determines whether concept instances are precomputed if realization is requested.",
new CBooleanConfigType(true)),
new CBooleanConfigType(true));
addConfigProperty(new CConfigDescription("Konclude.Calculation.Realization.RealizePrecomputation.RoleInstances",
"Determines whether role instances are precomputed if realization is requested.",
new CBooleanConfigType(false)),
new CBooleanConfigType(false));
addConfigProperty(new CConfigDescription("Konclude.Calculation.Realization.IndividualDependenceTracking",
"Determines whether dependent individuals are tracked for realization.",
new CBooleanConfigType(false)),
new CBooleanConfigType(false));
addConfigProperty(new CConfigDescription("Konclude.Calculation.Realization.PossibleAssertionsCollecting",
"Determines whether possible assertions are collected for realization.",
new CBooleanConfigType(false)),
new CBooleanConfigType(false));
addConfigProperty(new CConfigDescription("Konclude.Calculation.Realization.ExtraConsistencyTesting",
"Determines whether a separate consistency test is performed for realization.",
new CBooleanConfigType(false)),
new CBooleanConfigType(false));
addConfigProperty(new CConfigDescription("Konclude.Calculation.Realization.ConccurrentItemInitializationVectorSize",
"Determines the size of the vector for tasks for concurrently initializing realization items.",
new CIntegerConfigType(200)),
new CIntegerConfigType(200));
addConfigProperty(new CConfigDescription("Konclude.Calculation.Realization.ConcurrentIndividualPossibleConceptInstantiationInitialization",
"Determines whether individual items are initialized concurrently.",
new CBooleanConfigType(true)),
new CBooleanConfigType(true));
addConfigProperty(new CConfigDescription("Konclude.Calculation.Querying.ComplexQueryingSupport",
"Determines whether the ontology is prepared for complex querying.",
new CBooleanConfigType(true)),
new CBooleanConfigType(true));
addConfigProperty(new CConfigDescription("Konclude.Ontology.Revision.BuildAfterModification",
"Determines whether an ontology is automatically build after modification.",
new CBooleanConfigType(false)),
new CBooleanConfigType(false));
addConfigProperty(new CConfigDescription("Konclude.Ontology.Revision.PreprocessAfterModification",
"Determines whether an ontology is automatically preprocess after modification.",
new CBooleanConfigType(false)),
new CBooleanConfigType(false));
addConfigProperty(new CConfigDescription("Konclude.Ontology.Revision.ConsistencyPrecomputationAfterModification",
"Determines whether an ontology is automatically test consistency after modification.",
new CBooleanConfigType(false)),
new CBooleanConfigType(false));
addConfigProperty(new CConfigDescription("Konclude.Ontology.Revision.CyclesPrecomputationAfterModification",
"Determines whether an ontology is automatically test consistency after modification.",
new CBooleanConfigType(false)),
new CBooleanConfigType(false));
addConfigProperty(new CConfigDescription("Konclude.Ontology.Revision.ClassifyAfterModification",
"Determines whether an ontology is automatically classified after modification.",
new CBooleanConfigType(false)),
new CBooleanConfigType(false));
addConfigProperty(new CConfigDescription("Konclude.Ontology.Revision.IncrementalRebuild",
"Determines whether an ontology is incrementally rebuild.",
new CBooleanConfigType(false)),
new CBooleanConfigType(false));
addConfigProperty(new CConfigDescription("Konclude.Ontology.Revision.BasementResolveKBName",
"Determines which knowledge bases is used as basement for the creation of new knowledge bases.",
new CStringConfigType("")),
new CStringConfigType(""));
addConfigProperty(new CConfigDescription("Konclude.Persistence.OntologyRevisionPersistencer",
"Determines the persistencer for ontology revisions.",
new CStringConfigType("")),
new CStringConfigType(""));
addConfigProperty(new CConfigDescription("Konclude.Persistence.OntologyRevisionPersistencer.LoadingFileEnding",
"Determines the file ending that is used for loading.",
new CStringConfigType(".*")),
new CStringConfigType(".*"));
addConfigProperty(new CConfigDescription("Konclude.Persistence.OntologyRevisionPersistencer.KeepingVersionsLimit",
"Determines how many old versions are kept for a persisted knowledge base.",
new CIntegerConfigType(-1)),
new CIntegerConfigType(-1));
addConfigProperty(new CConfigDescription("Konclude.Persistence.DirectoryOWL2XMLFilePersistencer.BaseDirectory",
"Determines the directory where the DirectoryOWL2XMLFilePersistencer persists the ontologies.",
new CStringConfigType("./Data/Ontologies/Persistence/")),
new CStringConfigType("./Data/Ontologies/Persistence/"));
addConfigProperty(new CConfigDescription("Konclude.Persistence.DirectoryOWL2XMLFilePersistencer.WritingFileEnding",
"Determines the file ending for the DirectoryOWL2XMLFilePersistencer.",
new CStringConfigType(".owl.xml")),
new CStringConfigType(".owl.xml"));
addConfigProperty(new CConfigDescription("Konclude.Persistence.DirectoryOWLRDFFilePersistencer.BaseDirectory",
"Determines the directory where the DirectoryOWLRDFFilePersistencer persists the ontologies.",
new CStringConfigType("./Data/Ontologies/Persistence/")),
new CStringConfigType("./Data/Ontologies/Persistence/"));
addConfigProperty(new CConfigDescription("Konclude.Persistence.DirectoryOWLRDFFilePersistencer.SerializationFormat",
"Determines the file format (e.g., rdfxml, turtle, ntriples) with which the DirectoryOWLRDFFilePersistencer persists the ontologies.",
new CStringConfigType("turtle")),
new CStringConfigType("turtle"));
addConfigProperty(new CConfigDescription("Konclude.Persistence.DirectoryOWLRDFFilePersistencer.WritingFileEnding",
"Determines the file ending for the DirectoryOWLRDFFilePersistencer.",
new CStringConfigType(".ttl")),
new CStringConfigType(".ttl"));
addConfigProperty(new CConfigDescription("Konclude.Persistence.RedlandExternalTriplesDSNOnlyWritingPersistencer.DSNConfig",
"The DSN config for the external triples database for persisting knowledge bases.",
new CStringConfigType("")),
new CStringConfigType("dsn='VirtuosoTest',user='dba',password='dba'"));
addConfigProperty(new CConfigDescription("Konclude.Persistence.RedlandExternalTriplesDSNOnlyWritingPersistencer.TriplesDatabaseName",
"The name of the external triples database for persisting knowledge bases.",
new CStringConfigType("http://Konclude.com/KnowledgeBaseData/Persistence/$PercentEncodedKnowledgeBaseName")),
new CStringConfigType("http://Konclude.com/KnowledgeBaseData/Persistence/$PercentEncodedKnowledgeBaseName"));
addConfigProperty(new CConfigDescription("Konclude.Persistence.RedlandExternalTriplesDSNOnlyWritingPersistencer.InitialLoading",
"Determines whether triples from the external triples database are loaded before persisting new versions.",
new CBooleanConfigType(true)),
new CBooleanConfigType(true));
addConfigProperty(new CConfigDescription("Konclude.Persistence.RedlandExternalTriplesDSNOnlyWritingPersistencer.DirectFullTriplesLoading",
"Determines whether triples from the external triples database are completely loaded into the reasoner and stored via redland memory hashes.",
new CBooleanConfigType(false)),
new CBooleanConfigType(false));
addConfigProperty(new CConfigDescription("Konclude.Persistence.RedlandExternalTriplesSPARQLServicePersistencer.ServiceAddress",
"The SPARQL service address that is used for persisting knowledge bases.",
new CStringConfigType("")),
new CStringConfigType("http://localhost:8890/sparql"));
addConfigProperty(new CConfigDescription("Konclude.Persistence.RedlandExternalTriplesSPARQLServicePersistencer.CheckingQueryTemplate",
"The query template string that is used to check whether there exists a persisted version of the knowledge bases.",
new CStringConfigType("SELECT * FROM NAMED <http://Konclude.com/KnowledgeBaseData/Persistence/$PercentEncodedKnowledgeBaseName>\r\n{\r\n?s ?p ?o .\r\n}\r\nLIMIT 1")),
new CStringConfigType("SELECT * FROM NAMED <http://Konclude.com/KnowledgeBaseData/Persistence/$PercentEncodedKnowledgeBaseName>\r\n{\r\n?s ?p ?o .\r\n}\r\nLIMIT 1"));
addConfigProperty(new CConfigDescription("Konclude.Persistence.RedlandExternalTriplesSPARQLServicePersistencer.LoadingQueryTemplate",
"The query template string that is used to load a persisted version of the knowledge bases.",
new CStringConfigType("SELECT * FROM NAMED <http://Konclude.com/KnowledgeBaseData/Persistence/$PercentEncodedKnowledgeBaseName>\r\n{\r\n?s ?p ?o .\r\n}\r\nLIMIT $LoadingLimit OFFSET $LoadingOffset")),
new CStringConfigType("SELECT * FROM NAMED <http://Konclude.com/KnowledgeBaseData/Persistence/$PercentEncodedKnowledgeBaseName>\r\n{\r\n?s ?p ?o .\r\n}\r\nLIMIT $LoadingLimit OFFSET $LoadingOffset"));
addConfigProperty(new CConfigDescription("Konclude.Persistence.RedlandExternalTriplesSPARQLServicePersistencer.PersistingQueryTemplate",
"The query template string that is used to persist a version of the knowledge bases.",
new CStringConfigType("$PrefixesString\r\nINSERT {\r\n GRAPH <http://Konclude.com/KnowledgeBaseData/Persistence/$PercentEncodedKnowledgeBaseName>\r\n{\r\n$TriplesString\r\n}\r\n}")),
new CStringConfigType("$PrefixesString\r\nINSERT {\r\n GRAPH <http://Konclude.com/KnowledgeBaseData/Persistence/$PercentEncodedKnowledgeBaseName>\r\n{\r\n$TriplesString\r\n}\r\n}"));
addConfigProperty(new CConfigDescription("Konclude.Persistence.RedlandExternalTriplesSPARQLServicePersistencer.DeletingQueryTemplate",
"The query template string that is used to delete the persisted version of a knowledge bases.",
new CStringConfigType("DROP GRAPH <http://Konclude.com/KnowledgeBaseData/Persistence/$PercentEncodedKnowledgeBaseName>")),
new CStringConfigType("DROP GRAPH <http://Konclude.com/KnowledgeBaseData/Persistence/$PercentEncodedKnowledgeBaseName>"));
addConfigProperty(new CConfigDescription("Konclude.Persistence.RedlandExternalTriplesSPARQLServicePersistencer.CreatingQueryTemplate",
"The query template string that is used to create a triple database for persisting a knowledge bases.",
new CStringConfigType("CREATE GRAPH <http://Konclude.com/KnowledgeBaseData/Persistence/$PercentEncodedKnowledgeBaseName>")),
new CStringConfigType("CREATE GRAPH <http://Konclude.com/KnowledgeBaseData/Persistence/$PercentEncodedKnowledgeBaseName>"));
addConfigProperty(new CConfigDescription("Konclude.Persistence.RedlandExternalTriplesSPARQLServicePersistencer.TriplesDatabaseName",
"The name of the external triples database for persisting knowledge bases.",
new CStringConfigType("http://Konclude.com/KnowledgeBaseData/Persistence/$PercentEncodedKnowledgeBaseName")),
new CStringConfigType("http://Konclude.com/KnowledgeBaseData/Persistence/$PercentEncodedKnowledgeBaseName"));
addConfigProperty(new CConfigDescription("Konclude.Persistence.RedlandExternalTriplesSPARQLServicePersistencer.InitialLoading",
"Determines whether triples from the external triples database are loaded before persisting new versions.",
new CBooleanConfigType(true)),
new CBooleanConfigType(true));
addConfigProperty(new CConfigDescription("Konclude.Persistence.RedlandExternalTriplesSPARQLServicePersistencer.PersistingStepSize",
"Determines whether how many triples are persisted with one query.",
new CIntegerConfigType(1000)),
new CIntegerConfigType(1000));
addConfigProperty(new CConfigDescription("Konclude.Persistence.RedlandExternalTriplesSPARQLServicePersistencer.LoadingLimitSize",
"Determines whether how many triples are loaded with one query.",
new CIntegerConfigType(10000)),
new CIntegerConfigType(10000));
addConfigProperty(new CConfigDescription("Konclude.Persistence.RedlandExternalTriplesSPARQLServicePersistencer.HTTPPostFormEncodedPersisting",
"Determines whether HTTP Post requests (with application/x-wwww-form-encoded content types) are used for persisting knowledge bases (instead of URL encoding the SPARQL Update queries via Redland Rasqal).",
new CBooleanConfigType(true)),
new CBooleanConfigType(true));
addConfigProperty(new CConfigDescription("Konclude.Persistence.MultiPersistencer.PersisterList",
"The list of names of the used persistencers.",
new CStringListConfigType("Konclude.Persistence.RedlandExternalTriplesSPARQLServicePersistencer\tKonclude.Persistence.DirectoryOWLRDFFilePersistencer")),
new CStringListConfigType("Konclude.Persistence.RedlandExternalTriplesSPARQLServicePersistencer\tKonclude.Persistence.DirectoryOWLRDFFilePersistencer"));
addConfigProperty(new CConfigDescription("Konclude.Query.Statistics.CollectStatistics",
"Determines whether statistics are collected for queries.",
new CBooleanConfigType(false)),
new CBooleanConfigType(false));
addConfigProperty(new CConfigDescription("Konclude.Query.Statistics.CollectCalculationStatistics",
"Determines whether statistics about calculations are collected.",
new CBooleanConfigType(false)),
new CBooleanConfigType(false));
addConfigProperty(new CConfigDescription("Konclude.Query.Statistics.CollectProcessingStepsStatistics",
"Determines whether statistics about processing steps are collected.",
new CBooleanConfigType(false)),
new CBooleanConfigType(false));
addConfigProperty(new CConfigDescription("Konclude.Answering.DefaultComplexConceptAnswerer",
"Determines the default answerer for complex concept queries.",
new CStringConfigType("Konclude.Answering.OptimizedComplexConceptAnswerer")),
new CStringConfigType("Konclude.Answering.OptimizedComplexConceptAnswerer"));
addConfigProperty(new CConfigDescription("Konclude.Answering.QueryAbsorption.CreateAlwaysBindingConcepts",
"Determines whether for each variable of the query a binding concept is created.",
new CBooleanConfigType(false)),
new CBooleanConfigType(false));
addConfigProperty(new CConfigDescription("Konclude.Answering.QueryAbsorption.Preabsorption",
"Determines whether a query with existential parts is pre-absorbed.",
new CBooleanConfigType(true)),
new CBooleanConfigType(true));
addConfigProperty(new CConfigDescription("Konclude.Answering.QueryAbsorption.PreabsorptionCount",
"Determines how often a query with existential parts is pre-absorbed.",
new CIntegerConfigType(2)),
new CIntegerConfigType(2));
addConfigProperty(new CConfigDescription("Konclude.Answering.QueryAbsorption.InverseIndividualVariableSinglePathAbsorption",
"Determines whether single paths to individual variables are absorbed in inverse direction.",
new CBooleanConfigType(false)),
new CBooleanConfigType(false));
addConfigProperty(new CConfigDescription("Konclude.Answering.QueryAbsorption.OccurrenceStatisticsBasedAbsorptionOrder",
"Determines whether occurrence statistics are used for selecting the next query term for the absorption.",
new CBooleanConfigType(true)),
new CBooleanConfigType(true));
addConfigProperty(new CConfigDescription("Konclude.Answering.RedundantTermElimination",
"Determines whether redundant query terms are eliminated by using class/object property hierarchy and inverses.",
new CBooleanConfigType(true)),
new CBooleanConfigType(true));
addConfigProperty(new CConfigDescription("Konclude.Answering.RedundantlyRestrictedVariablesElimination",
"Determines whether redundantly restricted variables are eliminated from the query.",
new CBooleanConfigType(true)),
new CBooleanConfigType(true));
addConfigProperty(new CConfigDescription("Konclude.Answering.AnonymousToDistinguishedVariableConversion",
"Determines whether anonymous variables are converted to distinguished variables if there exist only individual nodes that satisfy the restrictions of the variables.",
new CBooleanConfigType(true)),
new CBooleanConfigType(true));
addConfigProperty(new CConfigDescription("Konclude.Answering.AllowBindingReduction",
"Determines whether bindings for variable mappings are reduced/eliminated if some bindings are not further required.",
new CBooleanConfigType(true)),
new CBooleanConfigType(true));
addConfigProperty(new CConfigDescription("Konclude.Answering.ImplicitJoiningBindingReduction",
"Determines whether bindings for variable mappings are reduced/eliminated while joining.",
new CBooleanConfigType(true)),
new CBooleanConfigType(true));
addConfigProperty(new CConfigDescription("Konclude.Answering.BindingReducingForNonDistinctAnswerQueries",
"Determines whether bindings for variable mappings can be reduced even for queries with answer variables.",
new CBooleanConfigType(true)),
new CBooleanConfigType(true));
addConfigProperty(new CConfigDescription("Konclude.Answering.BindingReductionMappingSize",
"Determines at which variable mappings sizes a reduction is allowed.",
new CIntegerConfigType(0)),
new CIntegerConfigType(0));
addConfigProperty(new CConfigDescription("Konclude.Answering.SamplingBasedJoinMappingSize",
"Determines at which variable mappings sizes a sampling based joining is used.",
new CIntegerConfigType(1000)),
new CIntegerConfigType(1000));
addConfigProperty(new CConfigDescription("Konclude.Answering.PropagationJoining",
"Determines whether bindings for variable mappings are joined with other mappings while propagating them over roles.",
new CBooleanConfigType(true)),
new CBooleanConfigType(true));
addConfigProperty(new CConfigDescription("Konclude.Answering.PropagationReplacement",
"Determines whether bindings for variable mappings are replaced with other mappings while propagating them over roles.",
new CBooleanConfigType(false)),
new CBooleanConfigType(false));
addConfigProperty(new CConfigDescription("Konclude.Answering.AnonymousToDistinguishedVariableOnlyFullConversion",
"Determines whether anonymous variables are converted to distinguished variables only if it is possible for all.",
new CBooleanConfigType(true)),
new CBooleanConfigType(true));
addConfigProperty(new CConfigDescription("Konclude.Answering.UnsatisfiableNonInstanceStatisticsChecking",
"Determines whether unsatisfiability of a query is pre-tested by checking whether all restrictions principally occur in the model of the ontology.",
new CBooleanConfigType(true)),
new CBooleanConfigType(true));
addConfigProperty(new CConfigDescription("Konclude.Answering.FailOnUnknownEntity",
"Determines whether an error is reported if an unknown entity is used in the query.",
new CBooleanConfigType(false)),
new CBooleanConfigType(false));
addConfigProperty(new CConfigDescription("Konclude.Answering.ExtendedLogging",
"Determines whether additional logging is output for complex query answering.",
new CBooleanConfigType(false)),
new CBooleanConfigType(false));
addConfigProperty(new CConfigDescription("Konclude.Answering.InterpretNonAnswerIndividualVariablesAsAnonymousVariables",
"Determines whether non-answer individual variables are interpreted as anonymous variables.",
new CBooleanConfigType(false)),
new CBooleanConfigType(false));
addConfigProperty(new CConfigDescription("Konclude.Answering.NonAnswerIndividualVariablesAsAnonymousVariablesInterpretingPrefixString",
"Determines whether the prefix that non-answer individual variables must have to be interpreted as anonymous variables.",
new CStringConfigType("")),
new CStringConfigType(""));
addConfigProperty(new CConfigDescription("Konclude.Answering.InterpretQueriesAsDistinct",
"Determines whether all queries are interpreted with the distinct modifier.",
new CBooleanConfigType(false)),
new CBooleanConfigType(false));
addConfigProperty(new CConfigDescription("Konclude.Answering.NextVariablePropagationHandlingChoise.ReducibleFactorIntegration",
"Determines whether reducible variables are considered for determining the next variable for which mappings are propagated over adjacent properties.",
new CBooleanConfigType(true)),
new CBooleanConfigType(true));
addConfigProperty(new CConfigDescription("Konclude.Answering.NextVariablePropagationHandlingChoise.PropertyScoresIntegration",
"Determines whether properties statistics/scores are considered for determining the next variable for which mappings are propagated over adjacent properties.",
new CBooleanConfigType(true)),
new CBooleanConfigType(true));
addConfigProperty(new CConfigDescription("Konclude.Answering.NextVariablePropagationHandlingChoise.PropertyPriorization",
"Determines whether the properties are prioritized/ordered for choosing the next propagation.",
new CBooleanConfigType(true)),
new CBooleanConfigType(true));
addConfigProperty(new CConfigDescription("Konclude.Answering.NextVariablePropagationHandlingChoise.VariableCompositionItemRoleSuccessorCountSampling",
"Determines whether the number of successors is sampled for determining properties statistics/scores.",
new CBooleanConfigType(true)),
new CBooleanConfigType(true));
addConfigProperty(new CConfigDescription("Konclude.Answering.NextVariablePropagationHandlingChoise.ForceAlwaysVariableCompositionItemRoleSuccessorCountSampling",
"Determines whether the number of successors is always sampled for determining properties statistics/scores (otherwise only role instance statistics are used if they are eligible).",
new CBooleanConfigType(false)),
new CBooleanConfigType(false));
addConfigProperty(new CConfigDescription("Konclude.Answering.NextVariablePropagationHandlingChoise.ReducibleFactorPercent",
"Determines the factor that is used to reduce the number of expected mappings for each reducible variable (in percent).",
new CIntegerConfigType(80)),
new CIntegerConfigType(80));
addConfigProperty(new CConfigDescription("Konclude.Answering.NextVariablePropagationHandlingChoise.PropertyTotalScoreIntegrationPercent",
"Determines the factor that is used to integrate the total property score/statistics (in percent).",
new CIntegerConfigType(5)),
new CIntegerConfigType(5));
addConfigProperty(new CConfigDescription("Konclude.Answering.NextVariablePropagationHandlingChoise.PropertySuccessorStatisticsSamplingFactorIntegrationPercent",
"Determines the factor that is used to modify the number of expected mappings w.r.t. statics/samples of estimated successors (in percent).",
new CIntegerConfigType(50)),
new CIntegerConfigType(50));
addConfigProperty(new CConfigDescription("Konclude.Answering.NextVariablePropagationHandlingChoise.VariableCompositionItemRoleSuccessorSamplingCount",
"Determines the amount of samples to estimate the number of successors.",
new CIntegerConfigType(20)),
new CIntegerConfigType(20));
addConfigProperty(new CConfigDescription("Konclude.Answering.NextVariablePropagationHandlingChoise.VariableCompositionItemRoleSuccessorSamplingExpectedMappingIncreaseSize",
"Determines the number of expected mappings that increases (multiplies) the sampling size.",
new CIntegerConfigType(10000)),
new CIntegerConfigType(10000));
addConfigProperty(new CConfigDescription("Konclude.Answering.ConcurrentComputationThreadPoolSize",
"Determines the maximum number of threads for the concurrent query answer computations (0 stands for automatically using the number of computer cores/threads).",
new CIntegerConfigType(0)),
new CIntegerConfigType(0));
addConfigProperty(new CConfigDescription("Konclude.Answering.AutomaticConcurrentComputationActivation",
"Determines whether concurrent query computation steps (e.g., ConcurrentJoinComputation, ConcurrentPropagationComputation) are automatically activated if there are several worker threads.",
new CBooleanConfigType(true)),
new CBooleanConfigType(true));
addConfigProperty(new CConfigDescription("Konclude.Answering.ConcurrentJoinComputation",
"Determines whether bindings are joined concurrently.",
new CBooleanConfigType(true)),
new CBooleanConfigType(true));
addConfigProperty(new CConfigDescription("Konclude.Answering.ConcurrentJoinComputationTaskCount",
"Determines with how many tasks bindings are concurrently joined.",
new CIntegerConfigType(211)),
new CIntegerConfigType(211));
addConfigProperty(new CConfigDescription("Konclude.Answering.ConcurrentJoinComputationMaxBatchHandlingCount",
"Determines the maximum number of batches that are handled at once.",
new CIntegerConfigType(10000)),
new CIntegerConfigType(10000));
addConfigProperty(new CConfigDescription("Konclude.Answering.ConcurrentJoinLastStepSplitTestingComputationMaxBatchHandlingCount",
"Determines the maximum number of batches that are handled at once for the last step if split.",
new CIntegerConfigType(1000)),
new CIntegerConfigType(1000));
addConfigProperty(new CConfigDescription("Konclude.Answering.ConcurrentJoinPerformanceLogging",
"Determines whether some performance metrics are logged for the concurrent join.",
new CBooleanConfigType(false)),
new CBooleanConfigType(false));
addConfigProperty(new CConfigDescription("Konclude.Answering.ConcurrentJoinDirectJoiningForCheckingSide",
"Determines whether joined variable bindings are directly created for the checking side, i.e., the side that is not inserted into the joining hash.",
new CBooleanConfigType(false)),
new CBooleanConfigType(false));
addConfigProperty(new CConfigDescription("Konclude.Answering.ConcurrentJoinPartitionizedMemoryManagement",
"Determines whether the memory management bindings for the concurrent joins of bindings is partitionized.",
new CBooleanConfigType(false)),
new CBooleanConfigType(false));
addConfigProperty(new CConfigDescription("Konclude.Answering.ConcurrentPropagationComputation",
"Determines whether bindings are propagated concurrently.",
new CBooleanConfigType(false)),
new CBooleanConfigType(false));
addConfigProperty(new CConfigDescription("Konclude.Answering.ConcurrentPropagationComputationTaskCount",
"Determines with how many tasks bindings are concurrently propagated.",
new CIntegerConfigType(211)),
new CIntegerConfigType(211));
addConfigProperty(new CConfigDescription("Konclude.Answering.ConcurrentPropagationPerformanceLogging",
"Determines whether some performance metrics are logged for the concurrent propagation.",
new CBooleanConfigType(false)),
new CBooleanConfigType(false));
addConfigProperty(new CConfigDescription("Konclude.Answering.ConcurrentPropagationPartitionizedMemoryManagement",
"Determines whether the memory management bindings for the concurrent propagations of bindings is partitionized.",
new CBooleanConfigType(false)),
new CBooleanConfigType(false));
addConfigProperty(new CConfigDescription("Konclude.Answering.ConcurrentAnswerGeneration",
"Determines whether answers are concurrently generated from computed bindings (if possible).",
new CBooleanConfigType(true)),
new CBooleanConfigType(true));
addConfigProperty(new CConfigDescription("Konclude.Calculation.Answering.MaximumParallelTestingCalculationCount",
"Determines how many calculation jobs are maximally created per answerer at one time.",
new CIntegerConfigType(1)),
((CConfigData*)nullptr));
addConfigProperty(new CConfigDescription("Konclude.Calculation.Answering.MultipliedUnitsParallelTestingCalculationCount",
"Determines how many calculation jobs are created per answerer.",
new CIntegerConfigType(8)),
new CIntegerConfigType(8));
addConfigProperty(new CConfigDescription("Konclude.Calculation.Answering.CollectProcessStatistics",
"Determines whether statistics for answering queries are collected.",
new CBooleanConfigType(false)),
new CBooleanConfigType(false));
addConfigProperty(new CConfigDescription("Konclude.Calculation.Answering.NonDeterministicCachedCompletionGraphContinuationPropagationTests",
"Determines whether the non-deterministic derived completion graph that is cached from the consistency check is used for the propagation tests.",
new CBooleanConfigType(true)),
new CBooleanConfigType(true));
addConfigProperty(new CConfigDescription("Konclude.Answering.MaximumBatchMappingsComputationSize",
"Determines the maximum size for the batch based variable mappings computations.",
new CIntegerConfigType(100000000)),
new CIntegerConfigType(100000000));
addConfigProperty(new CConfigDescription("Konclude.Answering.BatchMappingsComputationSizeIncreasingFactorPercent",
"Determines the increasing factor (in percent) for the size of the variable mapping computations batches.",
new CIntegerConfigType(1000)),
new CIntegerConfigType(1000));
addConfigProperty(new CConfigDescription("Konclude.Answering.FirstBatchMappingsComputationSize",
"Determines the size of the first batch for batch-based variable mappings computations.",
new CIntegerConfigType(10)),
new CIntegerConfigType(10));
addConfigProperty(new CConfigDescription("Konclude.Answering.MinimalMappingsComputationSize",
"Determines the minimum size for the variable mappings computations, i.e., how many mappings are computed by default in each step.",
new CIntegerConfigType(1)),
new CIntegerConfigType(1));
addConfigProperty(new CConfigDescription("Konclude.Answering.MappingsRepeatedlyInsufficientDependencyComputationIncreasingFactorPercent",
"Determines the factor (in percent) that is used to increase the required mapping size of dependent steps if they are repeatedly insufficiently.",
new CIntegerConfigType(130)),
new CIntegerConfigType(130));
addConfigProperty(new CConfigDescription("Konclude.Answering.MappingsComputationUnlimitedInterpretationSize",
"Determines the size for variable mappings computations that is interpreted as unlimited.",
new CIntegerConfigType(Q_UINT64_C(100000000000000))),
new CIntegerConfigType(Q_UINT64_C(100000000000000)));
addConfigProperty(new CConfigDescription("Konclude.Answering.ContinueMappingsCompuationWhenResultsNotWriteable",
"Determines whether the computation of variable mappings is continued even if the answers cannot be written/sent (e.g., for benchmarking).",
new CBooleanConfigType(false)),
new CBooleanConfigType(false));
addConfigProperty(new CConfigDescription("Konclude.Answering.LazyExistentialQueryPartAbsorption",
"Determines whether existential parts of query are lazily absorbed, i.e., only if the non-existential part is computed.",
new CBooleanConfigType(true)),
new CBooleanConfigType(true));
addConfigProperty(new CConfigDescription("Konclude.Answering.BooleanQueryExistentialPartOrdinaryEvaluation",
"Determines whether existential parts of Boolean queries are first ordinarily evaluated.",
new CBooleanConfigType(true)),
new CBooleanConfigType(true));
addConfigProperty(new CConfigDescription("Konclude.Answering.FullQueryMaterialization",
"Determines whether the query is materialized at the beginning before query answers computation is started.",
new CBooleanConfigType(true)),
new CBooleanConfigType(true));
addConfigProperty(new CConfigDescription("Konclude.Answering.DistinctUnecessaryVariablesReductionBeforeAnswerGeneration",
"Determines whether the all bindings for non-answer variables are reduced for queries with distinct modifier.",
new CBooleanConfigType(true)),
new CBooleanConfigType(true));
addConfigProperty(new CConfigDescription("Konclude.Answering.AlwaysUnecessaryVariablesReductionBeforeAnswerGeneration",
"Determines whether the all bindings for non-answer variables are reduced for all queries.",
new CBooleanConfigType(false)),
new CBooleanConfigType(false));
addConfigProperty(new CConfigDescription("Konclude.Answering.ConceptItemExpectedCountSamplingSize",
"Determines the sampling size for determining the expected instances count for complex concept items.",
new CIntegerConfigType(30)),
new CIntegerConfigType(30));
addConfigProperty(new CConfigDescription("Konclude.Answering.ConceptItemExpectedCountSamplingRetrievedPercentageLimit",
"Determines the limit (in percent) for the retrieved instances up to which the expected count is sampled.",
new CIntegerConfigType(75)),
new CIntegerConfigType(75));
addConfigProperty(new CConfigDescription("Konclude.Answering.MaxVariableMappingsPropagationsInitializationIndividualCount",
"Determines the maximum number of initialization individuals for variable mapping propagations tests.",
new CIntegerConfigType(50000)),
new CIntegerConfigType(50000));
addConfigProperty(new CConfigDescription("Konclude.Answering.MaxCandidateInstancePropagationsInitializationIndividualCount",
"Determines the maximum number of initialization individuals for instance candidate propagating tests.",
new CIntegerConfigType(10000)),
new CIntegerConfigType(10000));
addConfigProperty(new CConfigDescription("Konclude.Answering.QueryEntailmentTestRestrictedTopPropertyPropagationSplitting",
"Determines whether entailment queries with a propagation over the top object property are split up.",
new CBooleanConfigType(true)),
new CBooleanConfigType(true));
addConfigProperty(new CConfigDescription("Konclude.Answering.AbsorbedIndividualActivationCandidateInstancePropagationSplitting",
"Determines whether the propagation of instance candidates is split up if it has been absorbed with an individual activation.",
new CBooleanConfigType(true)),
new CBooleanConfigType(true));
addConfigProperty(new CConfigDescription("Konclude.Answering.AllowLastStepSplitComputation",
"Determines whether the computation for the last item can be split.",
new CBooleanConfigType(true)),
new CBooleanConfigType(true));
addConfigProperty(new CConfigDescription("Konclude.Answering.LastStepSplitComputationMappingsRequirement",
"Determines the number of requested mappings for the last item if a computation split is possible.",
new CIntegerConfigType(5000000)),
new CIntegerConfigType(5000000));
addConfigProperty(new CConfigDescription("Konclude.Answering.LastStepDirectSplitComputationWithExpectedInputMappings",
"Determines the number of expected input mappings for the last item for which the computation split is directly activated.",
new CIntegerConfigType(5000000)),
new CIntegerConfigType(5000000));
addConfigProperty(new CConfigDescription("Konclude.Answering.SkipConceptItemsIntegrationForPropagationOverVariables",
"Determines whether the integration/joining of variable mappings of concepts items are skipped for variables over which it is just propagated.",
new CBooleanConfigType(true)),
new CBooleanConfigType(true));
addConfigProperty(new CConfigDescription("Konclude.Answering.RedlandRasqalSPARQLQueryProcessing",
"Determines whether SPARQL queries are processed with Redland Rasqal.",
new CBooleanConfigType(true)),
new CBooleanConfigType(true));
addConfigProperty(new CConfigDescription("Konclude.Answering.RedlandRasqalReasoningSubBGPQueryAnswerVariableReduction",
"Determines whether the answer variables for extracted sub-queries of BGPs from SPARQL queries processed with Redland Rasqal are reduced by checking whether they have other occurrences in the query.",
new CBooleanConfigType(true)),
new CBooleanConfigType(true));
addConfigProperty(new CConfigDescription("Konclude.Answering.RedlandRasqalMinimizeBGPSubQueryTriples",
"Determines whether the triples of BGPs are reduced/minimized if bindings can be transferred with less triples.",
new CBooleanConfigType(true)),
new CBooleanConfigType(true));
addConfigProperty(new CConfigDescription("Konclude.Answering.RedlandRasqalReasoningSubBGPQueryDistinctPropagation",
"Determines whether the DISTINCT modifier is used for suitable BGP sub-queries of SPARQL queries processed with Redland Rasqal (if there are no aggregates, etc.).",
new CBooleanConfigType(true)),
new CBooleanConfigType(true));
addConfigProperty(new CConfigDescription("Konclude.Answering.RedlandRasqalSingleSubBGPQueryAllowsDirectResultStreaming",
"Determines whether the results of the only BGP sub-query of a SPARQL query are directly streamed (if supported) instead of processing the query with Redland Rasqal.",
new CBooleanConfigType(true)),
new CBooleanConfigType(true));
addConfigProperty(new CConfigDescription("Konclude.Answering.LogCompositionQueriesProcessingProgressStatistics",
"Determines whether the processing progress statistics are logged for complex composition queries.",
new CBooleanConfigType(false)),
new CBooleanConfigType(false));
addConfigProperty(new CConfigDescription("Konclude.Answering.LogCompositionQueriesProcessingFinishedStatistics",
"Determines whether the processing statistics are logged for complex composition queries if the processing is finished.",
new CBooleanConfigType(false)),
new CBooleanConfigType(false));
addConfigProperty(new CConfigDescription("Konclude.Debugging.WriteRedlandRasqalQueryStructure",
"Determines whether the parsed Redland Rasqal query structure/patterns are written to file.",
new CBooleanConfigType(false)),
new CBooleanConfigType(false));
addConfigProperty(new CConfigDescription("Konclude.Answering.RedlandRasqalReasoningSubBGPQueryForceDistinct",
"Determines whether the extracted sub-queries of BGPs from SPARQL queries are always considered distinct.",
new CBooleanConfigType(false)),
new CBooleanConfigType(false));
addConfigProperty(new CConfigDescription("Konclude.Answering.RedlandRasqalSubQueriesDependencyIdentification",
"Determines whether dependencies between extracted sub-queries of BGPs from SPARQL queries are identified such that results from dependent sub-queries can be used to restrict bindings.",
new CBooleanConfigType(true)),
new CBooleanConfigType(true));
addConfigProperty(new CConfigDescription("Konclude.Answering.RedlandRasqalSubQueriesFollowingRestrictionsIntegration",
"Determines whether (triple pattern) restrictions of following BGPs from SPARQL queries are integrated in extracted sub-queries (without influencing cardinality of answers) such that less results may be determined.",
new CBooleanConfigType(true)),
new CBooleanConfigType(true));
addConfigProperty(new CConfigDescription("Konclude.Answering.AnswersCacheMaximumSizeBytes",
"Determines the maximum size of cached (intermediate) answers in bytes (-1 for no limited).",
new CIntegerConfigType(-1)),
new CIntegerConfigType(-1));
addConfigProperty(new CConfigDescription("Konclude.Answering.AnswersCacheMaximumCount",
"Determines the maximum number of cached (intermediate) answers (-1 for no limited).",
new CIntegerConfigType(-1)),
new CIntegerConfigType(-1));
addConfigProperty(new CConfigDescription("Konclude.Answering.AnswersCacheUsageWeightIncreaseFactor",
"Determines the increase for the usage count for weighting cache entries.",
new CDoubleConfigType(1.03)),
new CDoubleConfigType(1.03));
// Testing/Debugging configurations
addConfigProperty(new CConfigDescription("Konclude.Debugging.WriteDebuggingData",
"If enabled (true) the reasoner is allowed to write debugging data to files.",
new CBooleanConfigType(false)),
new CBooleanConfigType(false));
addConfigProperty(new CConfigDescription("Konclude.Debugging.WriteDebuggingRepresentativeCacheContent",
"If enabled (true) the reasoner writes debugging data of the representative backend cache.",
new CBooleanConfigType(false)),
new CBooleanConfigType(false));
addConfigProperty(new CConfigDescription("Konclude.Debugging.WriteDebuggingDataSaturationTasks",
"If enabled (true) the reasoner is allowed to write debugging data of saturation testing tasks to files.",
new CBooleanConfigType(false)),
new CBooleanConfigType(false));
addConfigProperty(new CConfigDescription("Konclude.Debugging.WriteDebuggingDataCompletionTasks",
"If enabled (true) the reasoner is allowed to write debugging data of completion graph testing tasks to files.",
new CBooleanConfigType(false)),
new CBooleanConfigType(false));
addConfigProperty(new CConfigDescription("Konclude.Debugging.WriteDebuggingDataCompletionTasksOnlyOnSatisfiability",
"If enabled (true) the reasoner writes debugging data of completion graph testing tasks only if the tasks are satisfiable.",
new CBooleanConfigType(true)),
new CBooleanConfigType(true));
addConfigProperty(new CConfigDescription("Konclude.Debugging.WriteDebuggingDataCompletionTasksForConsistencyTests",
"If enabled (true) the reasoner writes debugging data of completion graph consistency testing tasks.",
new CBooleanConfigType(false)),
new CBooleanConfigType(false));
addConfigProperty(new CConfigDescription("Konclude.Debugging.WriteDebuggingDataCompletionTasksForClassificationTests",
"If enabled (true) the reasoner writes debugging data of completion graph consistency testing tasks.",
new CBooleanConfigType(false)),
new CBooleanConfigType(false));
addConfigProperty(new CConfigDescription("Konclude.Debugging.WriteDebuggingDataCompletionTasksForIncrementalExpansionTests",
"If enabled (true) the reasoner writes debugging data of completion graph incremental expansion testing tasks.",
new CBooleanConfigType(false)),
new CBooleanConfigType(false));
addConfigProperty(new CConfigDescription("Konclude.Debugging.WriteDebuggingDataCompletionTasksForRepresentativeCacheRecomputationTests",
"If enabled (true) the reasoner writes debugging data of completion graph representative cache recomputation testing tasks.",
new CBooleanConfigType(false)),
new CBooleanConfigType(false));
addConfigProperty(new CConfigDescription("Konclude.Debugging.WriteDebuggingDataCompletionTasksForAllTests",
"If enabled (true) the reasoner writes debugging data of all completion graph testing tasks.",
new CBooleanConfigType(false)),
new CBooleanConfigType(false));
addConfigProperty(new CConfigDescription("Konclude.Debugging.WriteDebuggingDataCompletionTasksForAnsweringPropagationTests",
"If enabled (true) the reasoner writes debugging data of completion graph propagation testing tasks for query answering.",
new CBooleanConfigType(false)),
new CBooleanConfigType(false));
addConfigProperty(new CConfigDescription("Konclude.Debugging.WriteAnsweringVariableCompositionItems",
"If enabled (true) the reasoner writes variable composition items to files.",
new CBooleanConfigType(false)),
new CBooleanConfigType(false));
addConfigProperty(new CConfigDescription("Konclude.Debugging.WritePreprocessingDebuggingData",
"If enabled (true) the reasoner writes preprocessing debugging data to files.",
new CBooleanConfigType(true)),
new CBooleanConfigType(true));
addConfigProperty(new CConfigDescription("Konclude.Debugging.BaseWritingPath",
"Determines the path/directory where debugging files are written.",
new CStringConfigType("./Debugging")),
new CStringConfigType("./Debugging"));
addConfigProperty(new CConfigDescription("Konclude.Debugging.WritePreprocessingDebuggingData.BuildedTBox",
"If enabled (true) the reasoner writes the corresponding preprocessing debugging data to files.",
new CBooleanConfigType(true)),
new CBooleanConfigType(true));
addConfigProperty(new CConfigDescription("Konclude.Debugging.WritingPath.Preprocessing.BuildedTBox",
"Determines the path where the corresponding debugging data is written.",
new CStringConfigType("Preprocessing/1-BuildedTBox.txt")),
new CStringConfigType("Preprocessing/1-BuildedTBox.txt"));
addConfigProperty(new CConfigDescription("Konclude.Debugging.WritePreprocessingDebuggingData.NormalizedTBox",
"If enabled (true) the reasoner writes the corresponding preprocessing debugging data to files.",
new CBooleanConfigType(true)),
new CBooleanConfigType(true));
addConfigProperty(new CConfigDescription("Konclude.Debugging.WritingPath.Preprocessing.NormalizedTBox",
"Determines the path where the corresponding debugging data is written.",
new CStringConfigType("Preprocessing/2-NormalizedTBox.txt")),
new CStringConfigType("Preprocessing/2-NormalizedTBox.txt"));
addConfigProperty(new CConfigDescription("Konclude.Debugging.WritePreprocessingDebuggingData.GroundedTBox",
"If enabled (true) the reasoner writes the corresponding preprocessing debugging data to files.",
new CBooleanConfigType(true)),
new CBooleanConfigType(true));
addConfigProperty(new CConfigDescription("Konclude.Debugging.WritingPath.Preprocessing.GroundedTBox",
"Determines the path where the corresponding debugging data is written.",
new CStringConfigType("Preprocessing/3-GroundedTBox.txt")),
new CStringConfigType("Preprocessing/3-GroundedTBox.txt"));
addConfigProperty(new CConfigDescription("Konclude.Debugging.WritePreprocessingDebuggingData.AbsorbedTBox",
"If enabled (true) the reasoner writes the corresponding preprocessing debugging data to files.",
new CBooleanConfigType(true)),
new CBooleanConfigType(true));
addConfigProperty(new CConfigDescription("Konclude.Debugging.WritingPath.Preprocessing.AbsorbedTBox",
"Determines the path where the corresponding debugging data is written.",
new CStringConfigType("Preprocessing/4-AbsorbedTBox.txt")),
new CStringConfigType("Preprocessing/4-AbsorbedTBox.txt"));
addConfigProperty(new CConfigDescription("Konclude.Debugging.WritePreprocessingDebuggingData.ProcessedTBox",
"If enabled (true) the reasoner writes the corresponding preprocessing debugging data to files.",
new CBooleanConfigType(true)),
new CBooleanConfigType(true));
addConfigProperty(new CConfigDescription("Konclude.Debugging.WritingPath.Preprocessing.ProcessedTBox",
"Determines the path where the corresponding debugging data is written.",
new CStringConfigType("Preprocessing/5-ProcessedTBox.txt")),
new CStringConfigType("Preprocessing/5-ProcessedTBox.txt"));
addConfigProperty(new CConfigDescription("Konclude.Debugging.QueryPreprocessingBaseWritingPathExtension",
"Determines the relative path/directory to the BaseWritingPath where the query related preprocessing is written.",
new CStringConfigType("/Answering")),
new CStringConfigType("/Answering"));
// Evaluation configurations
addConfigProperty(new CConfigDescription("Konclude.Analyse.UpdateInterval",
"Update interval for reading analyse data.",
new CIntegerConfigType(100)),
new CIntegerConfigType(100));
addConfigProperty(new CConfigDescription("Konclude.Analyse.DelayedStartTime",
"Wait time before start analyse data.",
new CIntegerConfigType(0)),
new CIntegerConfigType(0));
addConfigProperty(new CConfigDescription("Konclude.Analyse.CommonScale",
"Plot analyse data with a common scale.",
new CStringConfigType("AUTO")),
new CStringConfigType("AUTO"));
addConfigProperty(new CConfigDescription("Konclude.Analyse.PlotDifference",
"Plot the difference of succeeding analyse data.",
new CBooleanConfigType(false)),
new CBooleanConfigType(false));
addConfigProperty(new CConfigDescription("Konclude.Analyse.LimitThreadCount",
"Limits the threads for reading analyse data.",
new CBooleanConfigType(false)),
new CBooleanConfigType(false));
addConfigProperty(new CConfigDescription("Konclude.Analyse.FirstThreadNumber",
"The first thread number that is used to read analyse data.",
new CIntegerConfigType(0)),
new CIntegerConfigType(0));
addConfigProperty(new CConfigDescription("Konclude.Analyse.LastThreadNumber",
"The last thread number that is used to read analyse data.",
new CIntegerConfigType(1000)),
new CIntegerConfigType(1000));
addConfigProperty(new CConfigDescription("Konclude.Analyse.Classification.StatusText",
"Read Status text from specified Classifier for analyse data.",
new CBooleanConfigType(false)),
new CBooleanConfigType(false));
addConfigProperty(new CConfigDescription("Konclude.Analyse.ReasonerManager.QueryTotalWorkCount",
"Read QueryTotalWorkCount from Reasoner-Manager for analyse data.",
new CBooleanConfigType(false)),
new CBooleanConfigType(false));
addConfigProperty(new CConfigDescription("Konclude.Analyse.ReasonerManager.QueryCalcedWorkCount",
"Read QueryCalcedWorkCount from Reasoner-Manager for analyse data.",
new CBooleanConfigType(false)),
new CBooleanConfigType(false));
addConfigProperty(new CConfigDescription("Konclude.Analyse.ReasonerManager.QueryProgress",
"Read QueryProgress from Reasoner-Manager for analyse data.",
new CBooleanConfigType(false)),
new CBooleanConfigType(false));
addConfigProperty(new CConfigDescription("Konclude.Test.ConjunctiveQueryGeneration.CompletionGraphRandomWalks",
"Determines whether conjunctive queries are generated by random walking over fully expanded and clash-free completion graphs.",
new CBooleanConfigType(false)),
new CBooleanConfigType(false));
addConfigProperty(new CConfigDescription("Konclude.Test.ConjunctiveQueryGeneration.MaximumQueryGenerationCount",
"Determines how many conjunctive queries are maximal generated with the current settings.",
new CIntegerConfigType(10)),
new CIntegerConfigType(10));
addConfigProperty(new CConfigDescription("Konclude.Test.ConjunctiveQueryGeneration.MaximumOntologyQueryCount",
"Determines how many conjunctive queries are allowed for the given ontology.",
new CIntegerConfigType(10)),
new CIntegerConfigType(10));
addConfigProperty(new CConfigDescription("Konclude.Test.ConjunctiveQueryGeneration.RealCycleQueries",
"Determines whether real cycle queries are generated.",
new CBooleanConfigType(true)),
new CBooleanConfigType(true));
addConfigProperty(new CConfigDescription("Konclude.Test.ConjunctiveQueryGeneration.TreeFoldedCylceQueries",
"Determines whether tree folded cycles queries are generated.",
new CBooleanConfigType(true)),
new CBooleanConfigType(true));
addConfigProperty(new CConfigDescription("Konclude.Test.ConjunctiveQueryGeneration.TreeShapedQueries",
"Determines whether tree shaped queries are generated.",
new CBooleanConfigType(true)),
new CBooleanConfigType(true));
addConfigProperty(new CConfigDescription("Konclude.Test.ConjunctiveQueryGeneration.GenerateConceptTerms",
"Determines whether concept terms are generated.",
new CBooleanConfigType(true)),
new CBooleanConfigType(true));
addConfigProperty(new CConfigDescription("Konclude.Test.ConjunctiveQueryGeneration.GenerateTreeExtensions",
"Determines whether tree extensions that can be rolled-up are generated.",
new CBooleanConfigType(true)),
new CBooleanConfigType(true));
addConfigProperty(new CConfigDescription("Konclude.Test.ConjunctiveQueryGeneration.OnlyWalkOverIndividualNodes",
"Determines whether only over nodes representing individuals is walked.",
new CBooleanConfigType(true)),
new CBooleanConfigType(true));
addConfigProperty(new CConfigDescription("Konclude.Test.ConjunctiveQueryGeneration.QueryFileBasePath",
"Determines the base path for queries.",
new CStringConfigType("")),
new CStringConfigType(""));
addConfigProperty(new CConfigDescription("Konclude.Test.ConjunctiveQueryGeneration.OntologyFileBasePath",
"Determines the base path of the ontologies.",
new CStringConfigType("")),
new CStringConfigType(""));
addConfigProperty(new CConfigDescription("Konclude.Test.ConjunctiveQueryGeneration.LoadFileBasePath",
"Determines the base path prefix used for load commands.",
new CStringConfigType("")),
new CStringConfigType(""));
addConfigProperty(new CConfigDescription("Konclude.Test.ConjunctiveQueryGeneration.QueryTemplateFile",
"Determines the query template file.",
new CStringConfigType("")),
new CStringConfigType(""));
addConfigProperty(new CConfigDescription("Konclude.Test.ConjunctiveQueryGeneration.MinimalVariableSelectCount",
"Determines the minimum of selected variables.",
new CIntegerConfigType(1)),
new CIntegerConfigType(1));
addConfigProperty(new CConfigDescription("Konclude.Test.ConjunctiveQueryGeneration.MaximumVariableSelectCount",
"Determines the maximum of selected variables.",
new CIntegerConfigType(4)),
new CIntegerConfigType(4));
addConfigProperty(new CConfigDescription("Konclude.Test.ConjunctiveQueryGeneration.IndividualNodeAsExistentialVariableInterpretationRatio",
"Determines the percentage with which individual nodes are interpreted as existential variables.",
new CIntegerConfigType(0)),
new CIntegerConfigType(0));
addConfigProperty(new CConfigDescription("Konclude.Test.ConjunctiveQueryGeneration.OntologyStatisticsFileBasePath",
"Determines the base path prefix for ontology statistics.",
new CStringConfigType("")),
new CStringConfigType(""));
addConfigProperty(new CConfigDescription("Konclude.Test.ConjunctiveQueryGeneration.QueryStatisticsFileBasePath",
"Determines the base path prefix for the to be generated query statistics.",
new CStringConfigType("")),
new CStringConfigType(""));
addConfigProperty(new CConfigDescription("Konclude.Test.ConjunctiveQueryGeneration.MaximumTreeExtensionSize",
"Determines the maximum size of tree extensions.",
new CIntegerConfigType(10)),
new CIntegerConfigType(10));
addConfigProperty(new CConfigDescription("Konclude.Test.ConjunctiveQueryGeneration.TreeExtensionCreationRatio",
"Determines the ratio of how often are tree extensions created in percent.",
new CIntegerConfigType(10)),
new CIntegerConfigType(10));
addConfigProperty(new CConfigDescription("Konclude.Test.ConjunctiveQueryGeneration.TreeExtensionsOnlyOverIndividualNodes",
"Determines whether tree extensions that can be rolled-up are generated.",
new CBooleanConfigType(true)),
new CBooleanConfigType(true));
addConfigProperty(new CConfigDescription("Konclude.Test.ConjunctiveQueryGeneration.TreeExtensionExistentialVariableConversionRatio",
"Determines the percentage with which individual nodes are converted to existential variables.",
new CIntegerConfigType(0)),
new CIntegerConfigType(0));
addConfigProperty(new CConfigDescription("Konclude.Test.PigeonholePrincipleGenerator.ProblemSize",
"Generating problem size of the pigeonhole principle.",
new CIntegerConfigType(2)),
new CIntegerConfigType(2));
addConfigProperty(new CConfigDescription("Konclude.Test.PigeonholePrincipleGenerator.OWLlinkOutputFile",
"Output file for the generated pigeonhole principle.",
new CStringConfigType("PHP-request-file.xml")),
new CStringConfigType("PHP-request-file.xml"));
addConfigProperty(new CConfigDescription("Konclude.Test.RecursionTestDataGenerator.IndividualCount",
"Number of individual for the recursion test data.",
new CIntegerConfigType(1000)),
new CIntegerConfigType(1000));
addConfigProperty(new CConfigDescription("Konclude.Test.RecursionTestDataGenerator.PropertyAssertionCount",
"Number of the property assertions for the recursion test data.",
new CIntegerConfigType(200)),
new CIntegerConfigType(200));
addConfigProperty(new CConfigDescription("Konclude.Test.RecursionTestDataGenerator.OWLlinkOutputFile",
"Output file for the generated recursion test data.",
new CStringConfigType("RecursionTestData.owl.xml")),
new CStringConfigType("RecursionTestData.owl.xml"));
addConfigProperty(new CConfigDescription("Konclude.Test.LargeJoinTestDataGenerator.IndividualCount",
"Number of individual for the large join test data.",
new CIntegerConfigType(1000)),
new CIntegerConfigType(1000));
addConfigProperty(new CConfigDescription("Konclude.Test.LargeJoinTestDataGenerator.PropertyAssertionCount",
"Number of the property assertions for the large join test data.",
new CIntegerConfigType(200)),
new CIntegerConfigType(200));
addConfigProperty(new CConfigDescription("Konclude.Test.LargeJoinTestDataGenerator.OWLlinkOutputFile",
"Output file for the generated large join test data.",
new CStringConfigType("LargeJoinTestData.owl.xml")),
new CStringConfigType("LargeJoinTestData.owl.xml"));
addConfigProperty(new CConfigDescription("Konclude.Test.TransitiveConnectedELClassesTestDataGenerator.ClassesCount",
"Number of classes for the transitive connected EL classes test data.",
new CIntegerConfigType(1000)),
new CIntegerConfigType(1000));
addConfigProperty(new CConfigDescription("Konclude.Test.TransitiveConnectedELClassesTestDataGenerator.OWLlinkOutputFile",
"Output file for the generated transitive connected EL classes test data.",
new CStringConfigType("TransitivityConnectedELClassesTestData.owl.xml")),
new CStringConfigType("TransitivityConnectedELClassesTestData.owl.xml"));
addConfigProperty(new CConfigDescription("Konclude.Test.Converter.InputDirectory",
"Input directory for converter.",
new CStringConfigType("Tests/Converter/Input")),
new CStringConfigType("Tests/Converter/Input"));
addConfigProperty(new CConfigDescription("Konclude.Test.Converter.OutputDirectory",
"Output directory for converter.",
new CStringConfigType("Tests/Converter/Output")),
new CStringConfigType("Tests/Converter/Output"));
addConfigProperty(new CConfigDescription("Konclude.Test.Generator.InputDirectory",
"Input directory for converter.",
new CStringConfigType("Evaluation/Generator/Input")),
new CStringConfigType("Evaluation/Generator/Input"));
addConfigProperty(new CConfigDescription("Konclude.Test.Generator.OutputDirectory",
"Output directory for converter.",
new CStringConfigType("Tests/Generator/Output")),
new CStringConfigType("Tests/Generator/Output"));
addConfigProperty(new CConfigDescription("Konclude.Test.Generator.FilterDirectory",
"Filter directory for converter.",
new CStringConfigType("")),
new CStringConfigType(""));
addConfigProperty(new CConfigDescription("Konclude.Test.Generator.OntologyStatisticsDirectory",
"Output directory for tested evaluation tests.",
new CStringConfigType("Evaluation/Infos/Statistics/Ontologies/")),
new CStringConfigType("Evaluation/Infos/Statistics/Ontologies/"));
addConfigProperty(new CConfigDescription("Konclude.Test.Generator.FilterFile",
"Path to filter file.",
new CStringConfigType("Evaluation/Filters/ABoxFilter.txt")),
new CStringConfigType("Evaluation/Filters/ABoxFilter.txt"));
addConfigProperty(new CConfigDescription("Konclude.Test.Generator.GenerateClassifyTests",
"Determines whether classification tests are generated.",
new CBooleanConfigType(false)),
new CBooleanConfigType(false));
addConfigProperty(new CConfigDescription("Konclude.Test.Generator.GenerateConsistencyTests",
"Determines whether consistency tests are generated.",
new CBooleanConfigType(false)),
new CBooleanConfigType(false));
addConfigProperty(new CConfigDescription("Konclude.Test.Generator.GenerateSatisfiabilityTests",
"Determines whether satisfiability tests are generated.",
new CBooleanConfigType(false)),
new CBooleanConfigType(false));
addConfigProperty(new CConfigDescription("Konclude.Test.Generator.GenerateTypeTests",
"Determines whether type tests are generated.",
new CBooleanConfigType(false)),
new CBooleanConfigType(false));
addConfigProperty(new CConfigDescription("Konclude.Test.Generator.GenerateRealizeTests",
"Determines whether realization tests are generated.",
new CBooleanConfigType(false)),
new CBooleanConfigType(false));
addConfigProperty(new CConfigDescription("Konclude.Test.Generator.GenerateIncrementalAssertionConsistencyTests",
"Determines whether incremental assertion consistency tests are generated.",
new CBooleanConfigType(false)),
new CBooleanConfigType(false));
addConfigProperty(new CConfigDescription("Konclude.Test.Generator.IncrementalAssertionConsistencyTestsGeneration.AssertionAdditionCount",
"Determines the number of assertion that are added for incremental consistency tests.",
new CIntegerConfigType(10)),
new CIntegerConfigType(10));
addConfigProperty(new CConfigDescription("Konclude.Test.Generator.IncrementalAssertionConsistencyTestsGeneration.TestCount",
"Determines the number incremental consistency tests.",
new CIntegerConfigType(10)),
new CIntegerConfigType(10));
addConfigProperty(new CConfigDescription("Konclude.Test.Generator.IncrementalAssertionConsistencyTestsGeneration.AssertionRemovalCount",
"Determines the number of assertion that are removed for incremental consistency tests.",
new CIntegerConfigType(10)),
new CIntegerConfigType(10));
addConfigProperty(new CConfigDescription("Konclude.Test.Generator.IncrementalAssertionConsistencyTestsGeneration.RatioAdditionRemoval",
"Determines whether the incremental changed assertion count for incremental consistency tests is determined by the ontology size ratio.",
new CBooleanConfigType(false)),
new CBooleanConfigType(false));
addConfigProperty(new CConfigDescription("Konclude.Test.Generator.IncrementalAssertionConsistencyTestsGeneration.AssertionAdditionRatioDenominator",
"Determines the denominator for the assertion ratio that are added for incremental consistency tests.",
new CIntegerConfigType(1000)),
new CIntegerConfigType(1000));
addConfigProperty(new CConfigDescription("Konclude.Test.Generator.IncrementalAssertionConsistencyTestsGeneration.AssertionRemovalRatioDenominator",
"Determines the denominator for the assertion ratio that are removed for incremental consistency tests.",
new CIntegerConfigType(1000)),
new CIntegerConfigType(1000));
addConfigProperty(new CConfigDescription("Konclude.Test.Generator.GenerateIncrementalAssertionClassificationTests",
"Determines whether incremental assertion classification tests are generated.",
new CBooleanConfigType(false)),
new CBooleanConfigType(false));
addConfigProperty(new CConfigDescription("Konclude.Test.Generator.IncrementalAssertionClassificationTestsGeneration.AssertionAdditionCount",
"Determines the number of assertion that are added for incremental classification tests.",
new CIntegerConfigType(10)),
new CIntegerConfigType(10));
addConfigProperty(new CConfigDescription("Konclude.Test.Generator.IncrementalAssertionClassificationTestsGeneration.TestCount",
"Determines the number incremental classification tests.",
new CIntegerConfigType(10)),
new CIntegerConfigType(10));
addConfigProperty(new CConfigDescription("Konclude.Test.Generator.IncrementalAssertionClassificationTestsGeneration.AssertionRemovalCount",
"Determines the number of assertion that are removed for incremental classification tests.",
new CIntegerConfigType(10)),
new CIntegerConfigType(10));
addConfigProperty(new CConfigDescription("Konclude.Test.Generator.IncrementalAssertionClassificationTestsGeneration.RatioAdditionRemoval",
"Determines whether the incremental changed assertion count for incremental classification tests is determined by the ontology size ratio.",
new CBooleanConfigType(false)),
new CBooleanConfigType(false));
addConfigProperty(new CConfigDescription("Konclude.Test.Generator.IncrementalAssertionClassificationTestsGeneration.AssertionAdditionRatioDenominator",
"Determines the denominator for the assertion ratio that are added for incremental classification tests.",
new CIntegerConfigType(1000)),
new CIntegerConfigType(1000));
addConfigProperty(new CConfigDescription("Konclude.Test.Generator.IncrementalAssertionClassificationTestsGeneration.AssertionRemovalRatioDenominator",
"Determines the denominator for the assertion ratio that are removed for incremental classification tests.",
new CIntegerConfigType(1000)),
new CIntegerConfigType(1000));
addConfigProperty(new CConfigDescription("Konclude.Test.Generator.GenerateIncrementalAssertionRealizationTests",
"Determines whether incremental assertion realization tests are generated.",
new CBooleanConfigType(false)),
new CBooleanConfigType(false));
addConfigProperty(new CConfigDescription("Konclude.Test.Generator.IncrementalAssertionRealizationTestsGeneration.AssertionAdditionCount",
"Determines the number of assertion that are added for incremental realization tests.",
new CIntegerConfigType(10)),
new CIntegerConfigType(10));
addConfigProperty(new CConfigDescription("Konclude.Test.Generator.IncrementalAssertionRealizationTestsGeneration.TestCount",
"Determines the number incremental realization tests.",
new CIntegerConfigType(10)),
new CIntegerConfigType(10));
addConfigProperty(new CConfigDescription("Konclude.Test.Generator.IncrementalAssertionRealizationTestsGeneration.AssertionRemovalCount",
"Determines the number of assertion that are removed for incremental realization tests.",
new CIntegerConfigType(10)),
new CIntegerConfigType(10));
addConfigProperty(new CConfigDescription("Konclude.Test.Generator.IncrementalAssertionRealizationTestsGeneration.RatioAdditionRemoval",
"Determines whether the incremental changed assertion count for incremental realization tests is determined by the ontology size ratio.",
new CBooleanConfigType(false)),
new CBooleanConfigType(false));
addConfigProperty(new CConfigDescription("Konclude.Test.Generator.IncrementalAssertionRealizationTestsGeneration.AssertionAdditionRatioDenominator",
"Determines the denominator for the assertion ratio that are added for incremental realization tests.",
new CIntegerConfigType(1000)),
new CIntegerConfigType(1000));
addConfigProperty(new CConfigDescription("Konclude.Test.Generator.IncrementalAssertionRealizationTestsGeneration.AssertionRemovalRatioDenominator",
"Determines the denominator for the assertion ratio that are removed for incremental realization tests.",
new CIntegerConfigType(1000)),
new CIntegerConfigType(1000));
addConfigProperty(new CConfigDescription("Konclude.Debug.PrecheckReasoning",
"Prechecking Query with Default Reasoner before Debugging.",
new CBooleanConfigType(false)),
new CBooleanConfigType(false));
addConfigProperty(new CConfigDescription("Konclude.Debug.FailAfterConsistencyConceptSaturation",
"Fail after the saturation of concepts required for the consistency test for debugging.",
new CBooleanConfigType(false)),
new CBooleanConfigType(false));
addConfigProperty(new CConfigDescription("Konclude.Debug.FailAfterConsistencyCheck",
"Fail after the consistency test for debugging.",
new CBooleanConfigType(false)),
new CBooleanConfigType(false));
addConfigProperty(new CConfigDescription("Konclude.Debug.FailAfterConceptSaturation",
"Fail after the saturation of concepts for debugging.",
new CBooleanConfigType(false)),
new CBooleanConfigType(false));
addConfigProperty(new CConfigDescription("Konclude.Debug.FailAfterPreprocessing",
"Fail after the preprocessing for debugging.",
new CBooleanConfigType(false)),
new CBooleanConfigType(false));
addConfigProperty(new CConfigDescription("Konclude.Debug.FailAfterBuilt",
"Fail after the built for debugging.",
new CBooleanConfigType(false)),
new CBooleanConfigType(false));
// Parsing configurations
addConfigProperty(new CConfigDescription("Konclude.Parser.RedlandRaptor.ConcurrentParsing",
"Determines whether parsing with redland raptor is done concurrently (if possible).",
new CBooleanConfigType(true)),
new CBooleanConfigType(true));
addConfigProperty(new CConfigDescription("Konclude.Parser.RedlandRaptor.ConcurrentBytesBatchingSize",
"Determines the denominator for the assertion ratio that are removed for incremental realization tests.",
new CIntegerConfigType(50000000)),
new CIntegerConfigType(50000000));
addConfigProperty(new CConfigDescription("Konclude.Parser.UTF8CompatibilityEnforcedXMLStreamParsing",
"Determines whether UTF-8 compatibility is enforced for stream-based XML parsing.",
new CBooleanConfigType(true)),
new CBooleanConfigType(true));
addConfigProperty(new CConfigDescription("Konclude.Parser.RedlandRaptor.LoadTriplesIntoStore",
"Determines whether triples are loaded into the redland triple store such that non-trivial OWL 2 axioms can be retrieved.",
new CBooleanConfigType(true)),
new CBooleanConfigType(true));
// OWLLink configurations
addConfigProperty(new CConfigDescription("Konclude.OWLlink.Version.Major",
"Major version of OWLlink Interface implementation.",
new CIntegerConfigType(KONCLUDE_OWLLINK_VERSION_MAJOR)),
new CIntegerConfigType(KONCLUDE_OWLLINK_VERSION_MAJOR));
addConfigProperty(new CConfigDescription("Konclude.OWLlink.Version.Minor",
"Minor version of OWLlink Interface implementation.",
new CIntegerConfigType(KONCLUDE_OWLLINK_VERSION_MINOR)),
new CIntegerConfigType(KONCLUDE_OWLLINK_VERSION_MINOR));
addConfigProperty(new CConfigDescription("Konclude.OWLlink.WriteResponseToStandardOutput",
"Write OWLlink response direct to program standard output channel.",
new CBooleanConfigType(false)),
new CBooleanConfigType(false));
addConfigProperty(new CConfigDescription("Konclude.OWLlink.WriteResponseToStandardError",
"Write OWLlink response direct to program standard error output channel.",
new CBooleanConfigType(false)),
new CBooleanConfigType(false));
addConfigProperty(new CConfigDescription("Konclude.OWLlink.CloseAfterProcessedRequest",
"Close program after the OWLlink response is processed.",
new CBooleanConfigType(false)),
new CBooleanConfigType(false));
addConfigProperty(new CConfigDescription("Konclude.OWLlink.BlockUntilProcessedRequest",
"Blocks processing until request has finished.",
new CBooleanConfigType(false)),
new CBooleanConfigType(false));
addConfigProperty(new CConfigDescription("Konclude.OWLlink.LoggingExtendedProcessingTimes",
"Extended processing time logging.",
new CBooleanConfigType(false)),
new CBooleanConfigType(false));
addConfigProperty(new CConfigDescription("Konclude.OWLlink.SAXBasedLoadOntologiesParsing",
"SAX-based parsing for ontologies with load ontologies command.",
new CBooleanConfigType(true)),
new CBooleanConfigType(true));
addConfigProperty(new CConfigDescription("Konclude.OWLlink.StreamBasedLoadOntologiesParsing",
"Stream-based parsing for ontologies with load ontologies command.",
new CBooleanConfigType(true)),
new CBooleanConfigType(true));
addConfigProperty(new CConfigDescription("Konclude.OWLlink.ExtendedErrorReporting",
"Determines whether more detailed error messages are reported via OWLlink.",
new CBooleanConfigType(false)),
new CBooleanConfigType(false));
addConfigProperty(new CConfigDescription("Konclude.OWLlink.Server.ForceDisconnectAfterProcessing",
"Determines whether the OWLlink server forces a disconnect after a request is processed.",
new CBooleanConfigType(false)),
new CBooleanConfigType(false));
addConfigProperty(new CConfigDescription("Konclude.OWLlink.AbbreviatedIRIs",
"Using abbreviated IRIs.",
new CBooleanConfigType(false)),
new CBooleanConfigType(false));
addConfigProperty(new CConfigDescription("Konclude.OWLlink.ResultAnonymousIndividualsIntegration",
"Determines whether the results for anonymous individuals are integrated.",
new CBooleanConfigType(false)),
new CBooleanConfigType(false));
addConfigProperty(new CConfigDescription("Konclude.OWLlink.RequestFile",
"Filepath for OWLlink request file loader.",
new CStringConfigType("")),
new CStringConfigType(""));
addConfigProperty(new CConfigDescription("Konclude.OWLlink.ResponseFile",
"Filepath for writing OWLlink response file.",
new CStringConfigType("")),
new CStringConfigType(""));
addConfigProperty(new CConfigDescription("Konclude.OWLlink.IRIName",
"IRI name for OWLlink.",
new CStringConfigType("")),
new CStringConfigType(""));
addConfigProperty(new CConfigDescription("Konclude.OWLlink.TargetsSourcesQueriesInverseCorrection",
"Inverse property correction for targets and sources query.",
new CBooleanConfigType(true)),
new CBooleanConfigType(true));
addConfigProperty(new CConfigDescription("Konclude.OWLlink.DirectInversePropertiesQuerySupport",
"Inverse property correction for targets and sources query.",
new CBooleanConfigType(true)),
new CBooleanConfigType(true));
addConfigProperty(new CConfigDescription("Konclude.OWLlink.Test.RunTimeout",
"Timeout for tests.",
new CIntegerConfigType(60000)),
new CIntegerConfigType(60000));
addConfigProperty(new CConfigDescription("Konclude.OWLlink.Test.CloseTimeout",
"Timeout for closing running tests.",
new CIntegerConfigType(1000)),
new CIntegerConfigType(1000));
addConfigProperty(new CConfigDescription("Konclude.OWLlink.Test.KillTimeout",
"Timeout for killing running tests.",
new CIntegerConfigType(1000)),
new CIntegerConfigType(1000));
addConfigProperty(new CConfigDescription("Konclude.OWLlink.OWLlinkAPI.Address",
"Address of the OWLlinkAPI based reasoner server.",
new CStringConfigType("http://127.0.0.1:8080")),
new CStringConfigType("http://127.0.0.1:8080"));
addConfigProperty(new CConfigDescription("Konclude.OWLlink.OWLlinkAPI.RequestFileCompatibleModification",
"Modifies the request file for OWLlinkAPI compatibility.",
new CBooleanConfigType(true)),
new CBooleanConfigType(true));
addConfigProperty(new CConfigDescription("Konclude.OWLlink.OWLlinkAPI.ResponseFileTimeExtension",
"Modifies the response file with response times.",
new CBooleanConfigType(true)),
new CBooleanConfigType(true));
addConfigProperty(new CConfigDescription("Konclude.OWLlink.OWLlinkAPI.RequestFileAbsolutePathsModification",
"Rewrites relative filepaths to absolute filepaths in request file.",
new CBooleanConfigType(true)),
new CBooleanConfigType(true));
addConfigProperty(new CConfigDescription("Konclude.OWLlink.Server.Port",
"Port of the OWLlink server.",
new CIntegerConfigType(8080)),
new CIntegerConfigType(8080));
// SPARQL configurations
addConfigProperty(new CConfigDescription("Konclude.SPARQL.RequestFile",
"Filepath for SPARQL request file loader.",
new CStringConfigType("")),
new CStringConfigType(""));
addConfigProperty(new CConfigDescription("Konclude.SPARQL.ResponseFile",
"Filepath for writing SPARQL response file.",
new CStringConfigType("")),
new CStringConfigType(""));
addConfigProperty(new CConfigDescription("Konclude.SPARQL.ComparisonFile",
"Filepath of the SPARQL comparison file.",
new CStringConfigType("")),
new CStringConfigType(""));
addConfigProperty(new CConfigDescription("Konclude.SPARQL.Comparison.DifferencesLoggingLimit",
"The number of differences that are reported as logging output (-1 is no limit).",
new CIntegerConfigType(10)),
new CIntegerConfigType(10));
addConfigProperty(new CConfigDescription("Konclude.SPARQL.WriteResponseToStandardOutput",
"Write SPARQL response direct to program standard output channel.",
new CBooleanConfigType(false)),
new CBooleanConfigType(false));
addConfigProperty(new CConfigDescription("Konclude.SPARQL.WriteResponseToStandardError",
"Write SPARQL response direct to program standard error output channel.",
new CBooleanConfigType(false)),
new CBooleanConfigType(false));
addConfigProperty(new CConfigDescription("Konclude.SPARQL.CloseAfterProcessedRequest",
"Close program after the SPARQL response has processed.",
new CBooleanConfigType(false)),
new CBooleanConfigType(false));
addConfigProperty(new CConfigDescription("Konclude.SPARQL.BlockUntilProcessedRequest",
"Blocks processing until request has finished.",
new CBooleanConfigType(false)),
new CBooleanConfigType(false));
addConfigProperty(new CConfigDescription("Konclude.SPARQL.LoggingExtendedProcessingTimes",
"Extended processing time logging.",
new CBooleanConfigType(false)),
new CBooleanConfigType(false));
addConfigProperty(new CConfigDescription("Konclude.SPARQL.DefaultResolvingOntology",
"Name of the ontology that is used for processing the SPARQL query if no ontology name is specified, i.e., if there is no 'FROM' clause.",
new CStringConfigType("http://Konclude.com/Ontologies/$LastCreatedKnowledgeBaseIfAvailableAndCreateNewAnonymousKnowledgeBaseOtherwise")),
new CStringConfigType("http://Konclude.com/Ontologies/$LastCreatedKnowledgeBaseIfAvailableAndCreateNewAnonymousKnowledgeBaseOtherwise"));
addConfigProperty(new CConfigDescription("Konclude.SPARQL.AlwaysResolveToDefault",
"Ignores FROM clauses by always resolving the SPARQL query with the default ontology specified by 'Konclude.SPARQL.DefaultResolvingOntology'.",
new CBooleanConfigType(false)),
new CBooleanConfigType(false));
addConfigProperty(new CConfigDescription("Konclude.SPARQL.WaitQueryCalculationBeforeContinuingUpdateProcessing",
"Specifies whether subsequent SPARQL commands are only processed if previous queries are completely calculated.",
new CBooleanConfigType(false)),
new CBooleanConfigType(false));
addConfigProperty(new CConfigDescription("Konclude.SPARQL.Server.Port",
"Port of the SPARQL server.",
new CIntegerConfigType(8080)),
new CIntegerConfigType(8080));
addConfigProperty(new CConfigDescription("Konclude.SPARQL.Server.ForceDisconnectAfterProcessing",
"Determines whether the SPARQL server forces a disconnect after a request is processed.",
new CBooleanConfigType(false)),
new CBooleanConfigType(false));
addConfigProperty(new CConfigDescription("Konclude.SPARQL.Serialization.ChunkEncodingSize",
"Determines whether at which size (in bytes) the results are chunked.",
new CIntegerConfigType(104857600)),
new CIntegerConfigType(104857600));
addConfigProperty(new CConfigDescription("Konclude.SPARQL.Server.WriteBufferBlockingLimit",
"Determines the network write buffer limit up to which the result generation is not blocked.",
new CIntegerConfigType(20)),
new CIntegerConfigType(20));
addConfigProperty(new CConfigDescription("Konclude.SPARQL.Server.ThreadedSocketWriting",
"Determines whether the data is written into the socket with a separate thread.",
new CBooleanConfigType(true)),
new CBooleanConfigType(true));
addConfigProperty(new CConfigDescription("Konclude.SPARQL.File.WriteBufferBlockingLimit",
"Determines the file write buffer limit up to which the result generation is not blocked.",
new CIntegerConfigType(20)),
new CIntegerConfigType(20));
// CLI configurations
addConfigProperty(new CConfigDescription("Konclude.CLI.RequestFile",
"Filepath of request file for command line interface.",
new CStringConfigType("")),
new CStringConfigType(""));
addConfigProperty(new CConfigDescription("Konclude.CLI.ResponseFile",
"Filepath of response file for command line interface.",
new CStringConfigType("")),
new CStringConfigType(""));
addConfigProperty(new CConfigDescription("Konclude.CLI.IRIName",
"IRI name for command line interface.",
new CStringConfigType("")),
new CStringConfigType(""));
addConfigProperty(new CConfigDescription("Konclude.CLI.CloseAfterProcessedRequest",
"Close program after the CLI command has processed.",
new CBooleanConfigType(true)),
new CBooleanConfigType(true));
addConfigProperty(new CConfigDescription("Konclude.CLI.BlockUntilProcessedRequest",
"Blocks processing until request has finished.",
new CBooleanConfigType(true)),
new CBooleanConfigType(true));
// Evaluation configurations
addConfigProperty(new CConfigDescription("Konclude.Evaluation.ProgramFile",
"Evaluation program.",
new CStringConfigType("Evaluation/EvaluationProgram.xml")),
new CStringConfigType("Evaluation/EvaluationProgram.xml"));
addConfigProperty(new CConfigDescription("Konclude.Evaluation.ConfigFile",
"Evaluation config.",
new CStringConfigType("Evaluation/Configs/ExampleConfigFile.xml")),
new CStringConfigType("Evaluation/Configs/ExampleConfigFile.xml"));
addConfigProperty(new CConfigDescription("Konclude.Evaluation.Config.Name",
"Evaluation config name.",
new CStringConfigType("ExampleConfigName")),
new CStringConfigType("ExampleConfigName"));
addConfigProperty(new CConfigDescription("Konclude.Evaluation.Platform",
"Platform for the Reasoners.",
new CStringConfigType("UNSPECIFIED")),
new CStringConfigType("UNSPECIFIED"));
addConfigProperty(new CConfigDescription("Konclude.Evaluation.Reasoner.Directory",
"Reasoner directory.",
new CStringConfigType("Evaluation/Reasoners/ExampleReasoner/v1.0/")),
new CStringConfigType("Evaluation/Reasoners/ExampleReasoner/v1.0/"));
addConfigProperty(new CConfigDescription("Konclude.Evaluation.Reasoner.Name",
"Name of the reasoner that is evaluated.",
new CStringConfigType("ExampleReasoner v1.0")),
new CStringConfigType("ExampleReasoner v1.0"));
addConfigProperty(new CConfigDescription("Konclude.Evaluation.Reasoner.OutputDirectory",
"Output directory for the reasoner.",
new CStringConfigType("ExampleReasoner/v1.0/")),
new CStringConfigType("ExampleReasoner/v1.0/"));
addConfigProperty(new CConfigDescription("Konclude.Evaluation.Reasoner.ConfigFile",
"Config file of the reasoner.",
new CStringConfigType("Evaluation/Reasoners/ExampleReasoner/v1.0/reasonerConfig.xml")),
new CStringConfigType("Evaluation/Reasoners/ExampleReasoner/v1.0/reasonerConfig.xml"));
addConfigProperty(new CConfigDescription("Konclude.Evaluation.Reasoner.InitializationFile",
"Initialization file of the reasoner.",
new CStringConfigType("Evaluation/Reasoners/ExampleReasoner/v1.0/reasonerInit.xml")),
new CStringConfigType("Evaluation/Reasoners/ExampleReasoner/v1.0/reasonerInit.xml"));
addConfigProperty(new CConfigDescription("Konclude.Evaluation.Reasoner.ExecutionType",
"How the reasoner is executed.",
new CStringConfigType("Binary")),
new CStringConfigType("Binary"));
addConfigProperty(new CConfigDescription("Konclude.Evaluation.Reasoner.Execution.Binary.File",
"File of the binary.",
new CStringConfigType("ExampleReasoner")),
new CStringConfigType("ExampleReasoner"));
addConfigProperty(new CConfigDescription("Konclude.Evaluation.Reasoner.Execution.Binary.Arguments",
"Arguments for the execution.",
new CStringConfigType("")),
new CStringConfigType(""));
addConfigProperty(new CConfigDescription("Konclude.Evaluation.Reasoner.Execution.OWLlinkOWLAPIServerAdapter.ClassPathLibraries",
"ClassPath libraries for the execution.",
new CStringConfigType("Evaluation/Reasoners/ExampleReasoner/v1.0/libs")),
new CStringConfigType("Evaluation/Reasoners/ExampleReasoner/v1.0/libs"));
addConfigProperty(new CConfigDescription("Konclude.Evaluation.Reasoner.Execution.OWLlinkOWLAPIServerAdapter.ClassPathLibrariesSeparator",
"Separater for class path libraries, usually ';' for Windows and ':' for Linux.",
new CStringConfigType(";")),
new CStringConfigType(";"));
addConfigProperty(new CConfigDescription("Konclude.Evaluation.Reasoner.Execution.OWLlinkOWLAPIServerAdapter.MainClass",
"MainClass for the execution.",
new CStringConfigType("com.examplereasoner.main")),
new CStringConfigType("com.examplereasoner.main"));
addConfigProperty(new CConfigDescription("Konclude.Evaluation.Reasoner.Execution.OWLlinkOWLAPIServerAdapter.AdditionalParameters",
"Additional parameters for the execution.",
new CStringConfigType("")),
new CStringConfigType(""));
addConfigProperty(new CConfigDescription("Konclude.Evaluation.Reasoner.Execution.OWLlinkOWLAPIServerAdapter.AdditionalProcess",
"Additional process that has to be executed.",
new CStringConfigType("")),
new CStringConfigType(""));
addConfigProperty(new CConfigDescription("Konclude.Evaluation.Reasoner.Address.Port",
"The port address of the reasoner for requests.",
new CIntegerConfigType(8080)),
new CIntegerConfigType(8080));
addConfigProperty(new CConfigDescription("Konclude.Evaluation.Reasoner.Address.IP",
"The IP address of the reasoner for requests.",
new CStringConfigType("127.0.0.1")),
new CStringConfigType("127.0.0.1"));
addConfigProperty(new CConfigDescription("Konclude.Evaluation.InputDirectory",
"Input directory for tested evaluation tests.",
new CStringConfigType("Evaluation/Requests/")),
new CStringConfigType("Evaluation/Requests/"));
addConfigProperty(new CConfigDescription("Konclude.Evaluation.OutputDirectory",
"Output directory for tested evaluation tests.",
new CStringConfigType("Evaluation/Responses/R-000/")),
new CStringConfigType("Evaluation/Responses/R-000/"));
addConfigProperty(new CConfigDescription("Konclude.Evaluation.ReasonerRestartPausingTime",
"Waiting time after restarting the reasoner.",
new CIntegerConfigType(10000)),
new CIntegerConfigType(10000));
addConfigProperty(new CConfigDescription("Konclude.Evaluation.ReasonerTerminationPausingTime",
"Waiting time after terminating the reasoner.",
new CIntegerConfigType(-1)),
new CIntegerConfigType(-1));
addConfigProperty(new CConfigDescription("Konclude.Evaluation.TestingCount",
"The number how many times the same test is executed.",
new CIntegerConfigType(10)),
new CIntegerConfigType(10));
addConfigProperty(new CConfigDescription("Konclude.Evaluation.TestingTimeout",
"The time limit for the reasoner to complete a test.",
new CIntegerConfigType(2*1000*60)),
new CIntegerConfigType(2*1000*60));
addConfigProperty(new CConfigDescription("Konclude.Evaluation.ResponseDownloadSizeLimit",
"The time limit for the response in bytes. If the limit is reached, the request is aborted and the reasoner execution is stopped. -1 stands for no limit.",
new CIntegerConfigType(-1)),
new CIntegerConfigType(-1));
addConfigProperty(new CConfigDescription("Konclude.Evaluation.ResponseDownloadSizeLimitCancel",
"Determines whether the request is canceled if the download size limit is reached.",
new CBooleanConfigType(false)),
new CBooleanConfigType(false));
addConfigProperty(new CConfigDescription("Konclude.Evaluation.RequestTimeout",
"The time limit for the reasoner to complete a single request.",
new CIntegerConfigType(1000*60)),
new CIntegerConfigType(1000*60));
addConfigProperty(new CConfigDescription("Konclude.Evaluation.MemoryLimit",
"The memory limit for the reasoner in bytes.",
new CIntegerConfigType(1024*1024*1024*10)),
new CIntegerConfigType(1024*1024*1024*10));
addConfigProperty(new CConfigDescription("Konclude.Evaluation.Analyser.CreateGNUPlots",
"Determines whether the analysers create plots with GNU plot.",
new CBooleanConfigType(false)),
new CBooleanConfigType(false));
addConfigProperty(new CConfigDescription("Konclude.Evaluation.Analyser.CreateHighchartsPlots",
"Determines whether the analysers create plots with Highcharts.",
new CBooleanConfigType(true)),
new CBooleanConfigType(true));
addConfigProperty(new CConfigDescription("Konclude.Evaluation.RequestFileAbsolutePathsModification",
"Rewrites relative filepaths to absolute filepaths in request file.",
new CBooleanConfigType(true)),
new CBooleanConfigType(true));
addConfigProperty(new CConfigDescription("Konclude.Evaluation.RequestReplaceLoadOntologiesWithTell",
"Directly replaces load ontologies commands with tell commands in request files.",
new CBooleanConfigType(false)),
new CBooleanConfigType(false));
addConfigProperty(new CConfigDescription("Konclude.Evaluation.ResolveAppreviatedIRIsForReplacedTells",
"Directly resolves abbreviated IRIs for load ontologies commands that are replaced by tell commands in request files.",
new CBooleanConfigType(false)),
new CBooleanConfigType(false));
addConfigProperty(new CConfigDescription("Konclude.Evaluation.CancelReasonerErrorCount",
"After how many errors the evaluation for a reasoner is canceled.",
new CIntegerConfigType(2)),
new CIntegerConfigType(2));
addConfigProperty(new CConfigDescription("Konclude.Evaluation.ReasonerTestErrorMaximalRetryCount",
"How many retries are done for each test.",
new CIntegerConfigType(-1)),
new CIntegerConfigType(-1));
addConfigProperty(new CConfigDescription("Konclude.Evaluation.ReasonerTestErrorMaximalRetryWriting",
"Determines whether the last response is written if the maximal number of retries for a test is reached.",
new CBooleanConfigType(false)),
new CBooleanConfigType(false));
addConfigProperty(new CConfigDescription("Konclude.Evaluation.WaitingTimeBetweenTests",
"Waiting time between tests in milliseconds.",
new CIntegerConfigType(0)),
new CIntegerConfigType(0));
addConfigProperty(new CConfigDescription("Konclude.Evaluation.TestcaseEvaluationExceptionLimit",
"Limit of testcases that are evaluated until an exception is thrown.",
new CIntegerConfigType(-1)),
new CIntegerConfigType(-1));
addConfigProperty(new CConfigDescription("Konclude.Evaluation.FirstTestsWarmingUp",
"Determines whether the first test case in the evaluation is additionally executed at first without measurement.",
new CBooleanConfigType(true)),
new CBooleanConfigType(true));
addConfigProperty(new CConfigDescription("Konclude.Evaluation.AllTestsWarmingUp",
"Determines whether all test cases in the evaluation are additionally executed at first without measurement.",
new CBooleanConfigType(false)),
new CBooleanConfigType(false));
addConfigProperty(new CConfigDescription("Konclude.Evaluation.WaitingTimeAfterReasonerCreation",
"Waiting time after reasoner has created in milliseconds.",
new CIntegerConfigType(0)),
new CIntegerConfigType(0));
addConfigProperty(new CConfigDescription("Konclude.Evaluation.SPARQLSendPrepareBeforeQuerying",
"Sending a SPARQL PREPARE command before starting querying.",
new CBooleanConfigType(false)),
new CBooleanConfigType(false));
addConfigProperty(new CConfigDescription("Konclude.Evaluation.SPARQLSupportsPrepareOperation",
"Whether the SPARQL PREPARE command is supported.",
new CBooleanConfigType(false)),
new CBooleanConfigType(false));
addConfigProperty(new CConfigDescription("Konclude.Evaluation.SPARQLResponseSizeLimit",
"The limit for SPARQL responses in bytes. If the response exceeds the size limit, then it is not stored and not further analyzed. -1 is interpreted as no limit.",
new CIntegerConfigType(-1)),
new CIntegerConfigType(-1));
addConfigProperty(new CConfigDescription("Konclude.Evaluation.SPARQLQueryingTimeout",
"Separate SPARQL querying timeout (if it is set to -1, then the normal 'Konclude.Evaluation.RequestTimeout' is used).",
new CIntegerConfigType(-1)),
new CIntegerConfigType(-1));
addConfigProperty(new CConfigDescription("Konclude.Evaluation.SPARQLQueryTimeoutRestartRepeatPreparation",
"Whether the reasoner is restarted after reaching a timeout for a query and continuing afterwards with the next query.",
new CBooleanConfigType(true)),
new CBooleanConfigType(true));
addConfigProperty(new CConfigDescription("Konclude.Evaluation.SystemReadyRetestTimeForTests",
"Waiting time for retest whether system is ready for next evaluation test in milliseconds.",
new CIntegerConfigType(0)),
new CIntegerConfigType(0));
addConfigProperty(new CConfigDescription("Konclude.Evaluation.CriticalSystemProcessTesterProgram",
"Program/Script/Command Line that returns 1 if there are running critical processes on the system.",
new CStringConfigType("")),
new CStringConfigType(""));
addConfigProperty(new CConfigDescription("Konclude.Evaluation.TerminateAssistProgram",
"Program/Script/Command Line that is called with the process id to assist termination.",
new CStringConfigType("")),
new CStringConfigType(""));
addConfigProperty(new CConfigDescription("Konclude.Evaluation.TerminateAssistAdditionalArgument",
"Additional arguments for the termination program.",
new CStringConfigType("")),
new CStringConfigType(""));
addConfigProperty(new CConfigDescription("Konclude.Evaluation.MemoryUsageCheckingInterval",
"The interval with which the memory usage is checked for the evaluated reasoner process",
new CIntegerConfigType(100)),
new CIntegerConfigType(100));
addConfigProperty(new CConfigDescription("Konclude.Evaluation.MemoryUsageCheckingProgram",
"The program/script with which the memory usage is checked.",
new CStringConfigType("")),
new CStringConfigType(""));
addConfigProperty(new CConfigDescription("Konclude.Evaluation.CheckingMemoryUsage",
"Specifies whether the memory usage is checked.",
new CBooleanConfigType(false)),
new CBooleanConfigType(false));
addConfigProperty(new CConfigDescription("Konclude.CLI.Output.WriteDeclarations",
"Determines whether declarations are also written to the output file.",
new CBooleanConfigType(true)),
new CBooleanConfigType(true));
addConfigProperty(new CConfigDescription("Konclude.CLI.Output.AbbreviatedIRIs",
"Determines whether abbreviated IRIs are used to write the output.",
new CBooleanConfigType(false)),
new CBooleanConfigType(false));
addConfigProperty(new CConfigDescription("Konclude.CLI.Output.WriteOnlyDirectTypes",
"Determines whether only direct types are written to the output file for realization tasks.",
new CBooleanConfigType(false)),
new CBooleanConfigType(false));
addConfigProperty(new CConfigDescription("Konclude.CLI.Output.WriteReducedInconsistency",
"Determines whether for inconsistent ontologies only SubclassOf(Top,Bottom) is written to the output.",
new CBooleanConfigType(false)),
new CBooleanConfigType(false));
addConfigProperty(new CConfigDescription("Konclude.CLI.Output.WriteAnonymousIndividualResults",
"Determines whether the results for anonymous individuals are written.",
new CBooleanConfigType(false)),
new CBooleanConfigType(false));
addConfigProperty(new CConfigDescription("Konclude.ORE.OperationTask",
"Operation task that has to be tested.",
new CStringConfigType("")),
new CStringConfigType(""));
addConfigProperty(new CConfigDescription("Konclude.ORE.OntologyFile",
"Ontologie file name.",
new CStringConfigType("")),
new CStringConfigType(""));
addConfigProperty(new CConfigDescription("Konclude.ORE.ResponseFile",
"Response file name.",
new CStringConfigType("")),
new CStringConfigType(""));
addConfigProperty(new CConfigDescription("Konclude.ORE.IRIName",
"IRI name for testing.",
new CStringConfigType("")),
new CStringConfigType(""));
addConfigProperty(new CConfigDescription("Konclude.ORE.CloseAfterProcessed",
"Determines whether the program is closed after the processing has finished.",
new CBooleanConfigType(true)),
new CBooleanConfigType(true));
addConfigProperty(new CConfigDescription("Konclude.ORE.OutputTimeMeasurementInSeconds",
"Determines the measured time is printed in seconds instead of milliseconds.",
new CBooleanConfigType(false)),
new CBooleanConfigType(false));
addConfigProperty(new CConfigDescription("Konclude.ORE.ClassHierarchyResult.WriteDeclarations",
"Determines whether declarations are also written to the output file for the class hierarchy.",
new CBooleanConfigType(false)),
new CBooleanConfigType(false));
addConfigProperty(new CConfigDescription("Konclude.ORE.ClassHierarchyResult.AbbreviatedIRIs",
"Determines whether abbreviated IRIs are used for the classes.",
new CBooleanConfigType(false)),
new CBooleanConfigType(false));
addConfigProperty(new CConfigDescription("Konclude.ORE.ClassHierarchyResult.WriteDirectEquivalences",
"Determines whether equivalences are directly written with equivalent classes axioms instead of several subclass axioms.",
new CBooleanConfigType(false)),
new CBooleanConfigType(false));
addConfigProperty(new CConfigDescription("Konclude.ORE.ClassHierarchyResult.WriteReducedTopSubclasses",
"Determines whether only SubclassOf(Top,A) axioms are written for all classes A that are semantically equivalent to Top.",
new CBooleanConfigType(false)),
new CBooleanConfigType(false));
addConfigProperty(new CConfigDescription("Konclude.ORE.ClassHierarchyResult.WriteReducedBottomSubclasses",
"Determines whether only SubclassOf(A,Bottom) axioms are written for all classes A that are semantically equivalent to Bottom.",
new CBooleanConfigType(true)),
new CBooleanConfigType(true));
addConfigProperty(new CConfigDescription("Konclude.ORE.ClassHierarchyResult.WriteReducedInconsistency",
"Determines whether only SubclassOf(Top,Bottom) is written for inconsistent ontologies.",
new CBooleanConfigType(true)),
new CBooleanConfigType(true));
addConfigProperty(new CConfigDescription("Konclude.ORE.RealizationResult.WriteDeclarations",
"Determines whether declarations are also written to the realization output file.",
new CBooleanConfigType(false)),
new CBooleanConfigType(false));
addConfigProperty(new CConfigDescription("Konclude.ORE.RealizationResult.AbbreviatedIRIs",
"Determines whether abbreviated IRIs are used for the individuals and classes.",
new CBooleanConfigType(false)),
new CBooleanConfigType(false));
addConfigProperty(new CConfigDescription("Konclude.ORE.RealizationResult.WriteReducedInconsistency",
"Determines whether only SubclassOf(Top,Bottom) is written for inconsistent ontologies.",
new CBooleanConfigType(true)),
new CBooleanConfigType(true));
addConfigProperty(new CConfigDescription("Konclude.ORE.RealizationResult.WriteOnlyDirectTypes",
"Determines whether only direct types are written to the output file for realization tasks.",
new CBooleanConfigType(false)),
new CBooleanConfigType(false));
addConfigProperty(new CConfigDescription("Konclude.ORE.ReportParsingTimeForConsistency",
"Determines whether the parsing time is reported for the consistency checking reasoning task.",
new CBooleanConfigType(false)),
new CBooleanConfigType(false));
addConfigProperty(new CConfigDescription("Konclude.ORE.ReportParsingTimeForSatisfiability",
"Determines whether the parsing time is reported for the satisfiability checking reasoning task.",
new CBooleanConfigType(false)),
new CBooleanConfigType(false));
addConfigProperty(new CConfigDescription("Konclude.ORE.ReportParsingTimeForRealization",
"Determines whether the parsing time is reported for the realization reasoning task.",
new CBooleanConfigType(false)),
new CBooleanConfigType(false));
addConfigProperty(new CConfigDescription("Konclude.ORE.ReportParsingTimeForClassification",
"Determines whether the parsing time is reported for the classification reasoning task.",
new CBooleanConfigType(false)),
new CBooleanConfigType(false));
}
CReasonerConfigurationGroup::~CReasonerConfigurationGroup() {
}
}; // end namespace Command
}; // end namespace Control
}; // end namespace Konclude
|