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
|
/*-----------------------------------------------------------------------
File : e_options.h
Author: Stephan Schulz
Contents
Options definitions and documentation. Moved here to reduce the size
of the main eprover file.
Copyright 2014 by the author.
This code is released under the GNU General Public Licence.
See the file COPYING in the main E directory for details.
Run "eprover -h" for contact information.
Changes
<1> Wed Aug 6 13:14:29 CEST 2014
New
-----------------------------------------------------------------------*/
/*---------------------------------------------------------------------*/
/* Data type declarations */
/*---------------------------------------------------------------------*/
#ifndef E_OPTIONS_GUARD
#define E_OPTIONS_GUARD
typedef enum
{
OPT_NOOPT=0,
OPT_HELP,
OPT_VERSION,
OPT_VERBOSE,
OPT_OUTPUT,
OPT_PRINT_STATISTICS,
OPT_EXPENSIVE_DETAILS,
OPT_PRINT_SATURATED,
OPT_PRINT_SAT_INFO,
OPT_FILTER_SATURATED,
OPT_PRUNE_ONLY,
OPT_CNF_ONLY,
OPT_PRINT_PID,
OPT_PRINT_VERSION,
OPT_REQUIRE_NONEMPTY,
OPT_SILENT,
OPT_OUTPUTLEVEL,
OPT_PROOF_OBJECT,
OPT_PROOF_GRAPH,
OPT_FULL_DERIV,
OPT_FORCE_DERIV,
OPT_RECORD_GIVEN_CLAUSES,
OPT_TRAINING,
OPT_PCL_COMPRESSED,
OPT_PCL_COMPACT,
OPT_PCL_SHELL_LEVEL,
OPT_MEM_LIMIT,
OPT_CPU_LIMIT,
OPT_SOFTCPU_LIMIT,
OPT_RUSAGE_INFO,
OPT_PRINT_STRATEGY,
OPT_STEP_LIMIT,
OPT_PROC_LIMIT,
OPT_UNPROC_LIMIT,
OPT_TOTAL_LIMIT,
OPT_GENERATED_LIMIT,
OPT_TB_INSERT_LIMIT,
OPT_ANSWER_LIMIT,
OPT_CONJ_ARE_QUEST,
OPT_NO_INFIX,
OPT_FULL_EQ_REP,
OPT_LOP_PARSE,
OPT_PCL_PRINT,
OPT_TPTP_PARSE,
OPT_TPTP_PRINT,
OPT_TPTP_FORMAT,
OPT_TSTP_PARSE,
OPT_TSTP_PRINT,
OPT_TSTP_FORMAT,
OPT_AUTO,
OPT_SATAUTO,
OPT_AUTODEV,
OPT_SATAUTODEV,
OPT_AUTO_SCHED,
OPT_SATAUTO_SCHED,
OPT_AUTOSCHEDULE_KIND,
OPT_NO_PREPROCESSING,
OPT_EQ_UNFOLD_LIMIT,
OPT_EQ_UNFOLD_MAXCLAUSES,
OPT_NO_EQ_UNFOLD,
OPT_SINE,
OPT_REL_PRUNE_LEVEL,
OPT_PRESAT_SIMPLIY,
OPT_AC_HANDLING,
OPT_AC_ON_PROC,
OPT_LITERAL_SELECT,
OPT_NO_GENERATION,
OPT_SELECT_ON_PROC_ONLY,
OPT_INHERIT_PM_LIT,
OPT_INHERIT_GOAL_PM_LIT,
OPT_INHERIT_CONJ_PM_LIT,
OPT_POS_LITSEL_MIN,
OPT_POS_LITSEL_MAX,
OPT_NEG_LITSEL_MIN,
OPT_NEG_LITSEL_MAX,
OPT_ALL_LITSEL_MIN,
OPT_ALL_LITSEL_MAX,
OPT_WEIGHT_LITSEL_MIN,
OPT_PREFER_INITIAL_CLAUSES,
OPT_FILTER_ORPHANS_LIMIT,
OPT_FORWARD_CONTRACT_LIMIT,
OPT_DELETE_BAD_LIMIT,
OPT_ASSUME_COMPLETENESS,
OPT_ASSUME_INCOMPLETENESS,
OPT_DISABLE_EQ_FACTORING,
OPT_DISABLE_NEGUNIT_PM,
OPT_CONDENSING,
OPT_CONDENSING_AGGRESSIVE,
OPT_NO_GC_FORWARD_SIMPL,
OPT_USE_SIM_PARAMOD,
OPT_USE_ORIENTED_SIM_PARAMOD,
OPT_USE_SUPERSIM_PARAMOD,
OPT_USE_ORIENTED_SUPERSIM_PARAMOD,
OPT_SPLIT_TYPES,
OPT_SPLIT_HOW,
OPT_SPLIT_AGGRESSIVE,
OPT_SPLIT_REUSE_DEFS,
OPT_ORDERING,
OPT_TO_WEIGHTGEN,
OPT_TO_WEIGHTS,
OPT_TO_PRECGEN,
OPT_TO_CONJONLY_PREC,
OPT_TO_CONJAXIOM_PREC,
OPT_TO_AXIOMONLY_PREC,
OPT_TO_SKOLEM_PREC,
OPT_TO_DEFPRED_PREC,
OPT_TO_CONSTWEIGHT,
OPT_TO_PRECEDENCE,
OPT_TO_LPO_RECLIMIT,
OPT_TO_RESTRICT_LIT_CMPS,
OPT_TO_LIT_CMP,
OPT_TPTP_SOS,
OPT_ER_DESTRUCTIVE,
OPT_ER_STRONG_DESTRUCTIVE,
OPT_ER_AGGRESSIVE,
OPT_FORWARD_CSR,
OPT_FORWARD_CSR_AGGRESSIVE,
OPT_BACKWARD_CSR,
OPT_RULES_GENERAL,
OPT_FORWARD_DEMOD,
OPT_STRONG_RHS_INSTANCE,
OPT_STRONGSUBSUMPTION,
OPT_SAT_STEP_INTERVAL,
OPT_SAT_SIZE_INTERVAL,
OPT_SAT_TTINSERT_INTERVAL,
OPT_SATCHECK,
OPT_SAT_NORMCONST,
OPT_SAT_NORMALIZE,
OPT_SAT_DEC_LIMIT,
OPT_WATCHLIST,
OPT_STATIC_WATCHLIST,
OPT_WATCHLIST_NO_SIMPLIFY,
OPT_NO_INDEXED_SUBSUMPTION,
OPT_FVINDEX_STYLE,
OPT_FVINDEX_FEATURETYPES,
OPT_FVINDEX_MAXFEATURES,
OPT_FVINDEX_SLACK,
OPT_RW_BW_INDEX,
OPT_PM_FROM_INDEX,
OPT_PM_INTO_INDEX,
OPT_FP_INDEX,
OPT_FP_NO_SIZECONSTR,
OPT_PDT_NO_SIZECONSTR,
OPT_PDT_NO_AGECONSTR,
OPT_DETSORT_RW,
OPT_DETSORT_NEW,
OPT_DEFINE_WFUN,
OPT_DEFINE_HEURISTIC,
OPT_HEURISTIC,
OPT_FREE_NUMBERS,
OPT_FREE_OBJECTS,
OPT_DEF_CNF_OLD,
OPT_DEF_CNF,
OPT_MINISCOPE_LIMIT,
OPT_PRINT_TYPES,
OPT_APP_ENCODE,
OPT_ARG_CONG,
OPT_NEG_EXT,
OPT_POS_EXT,
OPT_EXT_SUP,
OPT_INVERSE_RECOGNITION,
OPT_REPLACE_INJ_DEFS,
OPT_DUMMY
}OptionCodes;
/*---------------------------------------------------------------------*/
/* Global Variables */
/*---------------------------------------------------------------------*/
OptCell opts[] =
{
{OPT_HELP,
'h', "help",
NoArg, NULL,
"Print a short description of program usage and options."},
{OPT_VERSION,
'V', "version",
NoArg, NULL,
"Print the version number of the prover. Please include this"
" with all bug reports (if any)."},
{OPT_VERBOSE,
'v', "verbose",
OptArg, "1",
"Verbose comments on the progress of the program. This differs "
"from the output level (below) in that technical information is "
"printed to stderr, while the output level determines which "
"logical manipulations of the clauses are printed to stdout."},
{OPT_OUTPUT,
'o', "output-file",
ReqArg, NULL,
"Redirect output into the named file."},
{OPT_SILENT,
's', "silent",
NoArg, NULL,
"Equivalent to --output-level=0."},
{OPT_OUTPUTLEVEL,
'l', "output-level",
ReqArg, NULL,
"Select an output level, greater values imply more verbose "
"output. Level 0 produces "
"nearly no output, level 1 will output each clause as it is "
"processed, level 2 will output generating inferences, "
"level 3 will give a full protocol including rewrite steps and "
"level 4 will include some internal clause renamings. Levels >= 2"
" also imply PCL2 or TSTP formats (which can be post-processed"
" with suitable tools)."},
{OPT_PROOF_OBJECT,
'p', "proof-object",
OptArg, "1",
"Generate (and print, in case of success) an internal proof object. "
"Level 0 will not print a proof object, level 1 will build a"
"simple, compact proof object that only contains inference rules "
"and dependencies, level 2 will build a proof object where "
"inferences are unambiguously described by giving inference "
"positions, and level 3 will expand this to a proof object where "
"all intermediate results are explicit. This feature is under "
"development, so far only level 0 and 1 are operational. "
"By default The proof object will be provided in TPTP-3 or LOP "
"syntax, depending on input format and explicit settings. The "
"following option will suppress normal output of the proof "
"object in favour of a graphial representation."},
{OPT_PROOF_GRAPH,
'\0', "proof-graph",
OptArg, "3",
"Generate (and print, in case of success) an internal proof object "
"in the form of a GraphViz dot graph. The optional argument can be 1 "
"(nodes are labelled with just the name of the clause/formula), "
"2 (nodes are "
"labelled with the TPTP clause/formula) or 3 (nodes "
"also labelled with source/inference record."},
{OPT_FULL_DERIV,
'd', "full-deriv",
NoArg, NULL,
"Include all derived formuas/clauses in the proof graph/proof "
"object, not just the ones contributing to the actual proof."},
{OPT_FORCE_DERIV,
'\0', "force-deriv",
OptArg, "1",
"Force output of the derivation even in cases where the prover "
"terminates in an indeterminate state. By default, the deriviation "
"of all processed clauses is included in the derivation object. "
"With value 2, derivation of all clauses will be printed"},
{OPT_RECORD_GIVEN_CLAUSES,
'\0', "record-gcs",
NoArg, NULL,
"Record given-clause selection as separate (pseudo-)inferences"
" and preserve the form of given clauses evaluated and selected"
" via archiving for analysis and "
"possibly machine learning."},
{OPT_TRAINING,
'\0', "training-examples",
OptArg, "1",
"Generate and process training examples from the proof search object."
" Implies --record-gcs. The argument is a binary or of the desired "
"processing. Bit zero prints positive exampels. Bit 1 prints negative "
"examples. Additional selectors will be added later."},
{OPT_PCL_COMPRESSED,
'\0', "pcl-terms-compressed",
NoArg, NULL,
"Print terms in the PCL output in shared representation."},
{OPT_PCL_COMPACT,
'\0', "pcl-compact",
NoArg, NULL,
"Print PCL steps without additional spaces for formatting (safes "
"disk space for large protocols)."},
{OPT_PCL_SHELL_LEVEL,
'\0', "pcl-shell-level",
OptArg, "1",
"Determines level to which clauses and formulas are suppressed "
"in the output. Level 0 will print all, level 1 will only print "
"initial clauses/formulas, level 2 will print no clauses or axioms. "
"All levels will still print the dependency graph."},
{OPT_PRINT_STATISTICS,
'\0', "print-statistics",
NoArg, NULL,
"Print the inference statistics (only relevant for output level 0, "
"otherwise they are printed automatically."},
{OPT_EXPENSIVE_DETAILS,
'0', "print-detailed-statistics",
NoArg, NULL,
"Print data about the proof state that is potentially expensive "
"to collect. Includes number of term cells and number of "
"rewrite steps."},
{OPT_PRINT_SATURATED,
'S', "print-saturated",
OptArg, DEFAULT_OUTPUT_DESCRIPTOR,
"Print the (semi-) saturated clause sets after terminating the "
"saturation process. The argument given describes which parts "
"should be printed in which order. Legal characters are 'teigEIGaA',"
" standing for type declarations, processed positive units, "
"processed negative units, "
"processed non-units, unprocessed positive units, unprocessed "
"negative units, unprocessed non-units, and two types of "
"additional equality axioms, respectively. Equality axioms will "
"only be printed if the original specification contained real "
"equality. In this case, 'a' requests axioms in which a separate"
" substitutivity axiom is given for each argument position of a"
" function or predicate symbol, while 'A' requests a single "
"substitutivity axiom (covering all positions) for each symbol."},
{OPT_PRINT_SAT_INFO,
'\0', "print-sat-info",
NoArg, NULL,
"Print additional information (clause number, weight, etc) as a"
" comment for clauses from the semi-saturated end system."},
{OPT_FILTER_SATURATED,
'\0', "filter-saturated",
OptArg, DEFAULT_FILTER_DESCRIPTOR,
"Filter the (semi-) saturated clause sets after terminating the "
"saturation process. The argument is a string describing which "
"operations to take (and in which order). Options are 'u' (remove"
" all clauses with more than one literal), 'c' (delete all but one"
" copy of identical clauses, 'n', 'r', 'f' (forward contraction, "
"unit-subsumption only, no rewriting, rewriting with rules only,"
" full rewriting, respectively), and 'N', 'R' and 'F' (as their"
" lower case counterparts, but with non-unit-subsumption enabled"
" as well)."},
{OPT_PRUNE_ONLY,
'\0', "prune",
NoArg, NULL,
"Stop after relevancy pruning, SInE pruning, and output of the "
"initial clause- and formula set. This will automatically set "
"output level to 4 so that the pruned problem specification is "
"printed. Note that the desired pruning methods must still be "
"specified (e.g. '--sine=Auto')."},
{OPT_CNF_ONLY,
'\0', "cnf",
NoArg, NULL,
"Convert the input problem into clause normal form and print it."
" This is (nearly) equivalent to '--print-saturated=eigEIG"
" --processed-clauses-limit=0' and will by default perform some "
"usually useful simplifications. You can additionally specify e.g. "
"'--no-preprocessing' if you want just the result of CNF translation."},
{OPT_PRINT_PID,
'\0', "print-pid",
NoArg, NULL,
"Print the process id of the prover as a comment after option "
"processing."},
{OPT_PRINT_VERSION,
'\0', "print-version",
NoArg, NULL,
"Print the version number of the prover as a comment after option "
"processing. Note that unlike -version, the prover will not "
"terminate, but proceed normally."},
{OPT_REQUIRE_NONEMPTY,
'\0', "error-on-empty",
NoArg, NULL,
"Return with an error code if the input file contains no clauses. "
"Formally, the empty clause set (as an empty conjunction of "
"clauses) is trivially satisfiable, and E will treat any empty "
"input set as satisfiable. However, in composite systems this "
"is more often a sign that something went wrong. Use this option "
"to catch such bugs."},
{OPT_MEM_LIMIT,
'm', "memory-limit",
ReqArg, NULL,
"Limit the memory the prover may use. The argument is "
"the allowed amount of memory in MB. If you use the argument 'Auto',"
" the system will try to figure out the amount of physical memory of "
"your machine and claim most of it. This option may not work "
"everywhere, due to broken and/or strange behaviour of setrlimit() "
"in some UNIX implementations, and due to the fact that I know "
"of no portable way to figure out the physical memory in a machine. "
"Both the option and the 'Auto' version do work under all tested "
"versions of Solaris and GNU/Linux. Due to problems with limit "
"data types, it is currently impossible to set a limit of more than "
"2 GB (2048 MB)."},
{OPT_CPU_LIMIT,
'\0', "cpu-limit",
OptArg, "300",
"Limit the cpu time the prover should run. The optional argument "
"is the CPU time in seconds. The prover will terminate immediately"
" after reaching the time limit, regardless of internal state. This"
" option may not work "
"everywhere, due to broken and/or strange behaviour of setrlimit() "
"in some UNIX implementations. It does work under all tested "
"versions of Solaris, HP-UX, MacOS-X, and GNU/Linux. As a side "
"effect, this "
"option will inhibit core file writing. Please note that if you"
" use both --cpu-limit and --soft-cpu-limit, the soft limit has to"
" be smaller than the hard limit to have any effect. "},
{OPT_SOFTCPU_LIMIT,
'\0', "soft-cpu-limit",
OptArg, "290",
"Limit the cpu time the prover should spend in the main saturation"
" phase. The prover will then terminate gracefully, i.e. it will "
"perform post-processing, "
"filtering and printing of unprocessed clauses, if these options"
" are selected. Note"
" that for some filtering options (in particular those which "
"perform full subsumption), the post-processing time may well be"
" larger than the saturation time. This option is particularly "
"useful if you want to use E as a preprocessor or lemma generator "
"in a larger system."},
{OPT_RUSAGE_INFO,
'R', "resources-info",
NoArg, NULL,
"Give some information about the resources used by the prover. "
"You will usually get CPU time information. On systems returning "
"more information with the rusage() system call, you will also "
"get information about memory consumption."},
{OPT_PRINT_STRATEGY,
'\0', "print-strategy",
NoArg, NULL,
"Print a representation of all search parameters and their setting. "
"Then terminate."},
{OPT_STEP_LIMIT,
'C', "processed-clauses-limit",
ReqArg, NULL,
"Set the maximal number of clauses to process (i.e. the number"
" of traversals of the main-loop)."},
{OPT_PROC_LIMIT,
'P', "processed-set-limit",
ReqArg, NULL,
"Set the maximal size of the set of processed clauses. This differs "
"from the previous option in that redundant and back-simplified "
"processed clauses are not counted."},
{OPT_UNPROC_LIMIT,
'U', "unprocessed-limit",
ReqArg, NULL,
"Set the maximal size of the set of unprocessed clauses. This is a "
"termination condition, not something to use to control the deletion"
" of bad clauses. Compare --delete-bad-limit."},
{OPT_TOTAL_LIMIT,
'T', "total-clause-set-limit",
ReqArg, NULL,
"Set the maximal size of the set of all clauses. See previous option."},
{OPT_GENERATED_LIMIT,
'\0', "generated-limit",
ReqArg, NULL,
"Set the maximal number of generated clauses before the proof search "
"stops. This is a reasonable (though not great) estimate of the work "
"done."},
{OPT_TB_INSERT_LIMIT,
'\0', "tb-insert-limit",
ReqArg, NULL,
"Set the maximal number of of term bank term top insertions. This is "
"a reasonable (though not great) estimate of the work done."},
{OPT_ANSWER_LIMIT,
'\0', "answers",
OptArg, "2147483647",
"Set the maximal number of answers to print for existentially"
" quantified questions. Without this option, the prover terminates"
" after the first answer found. If the value is different from 1, "
"the prover is no longer guaranteed to terminate, even if there is"
" a finite number of answers."},
{OPT_CONJ_ARE_QUEST,
'\0', "conjectures-are-questions",
NoArg, NULL,
"Treat all conjectures as questions to be answered. This is a wart "
"necessary because CASC-J6 has categories requiring answers, but "
"does not yet support the 'question' type for formulas."},
{OPT_NO_INFIX,
'n', "eqn-no-infix",
NoArg, NULL,
"In LOP, print equations in prefix notation equal(x,y)."},
{OPT_FULL_EQ_REP,
'e', "full-equational-rep",
NoArg, NULL,
"In LOP. print all literals as equations, even non-equational ones."},
{OPT_LOP_PARSE,
'\0', "lop-in",
NoArg, NULL,
"Set E-LOP as the input format. If no input format is "
"selected by this or one of the following options, E will "
"guess the input format based on the first token. It will "
"almost always correctly recognize TPTP-3, but it may "
"misidentify E-LOP files that use TPTP meta-identifiers as "
"logical symbols."},
{OPT_PCL_PRINT,
'\0', "pcl-out",
NoArg, NULL,
"Set PCL as the proof object output format."},
{OPT_TPTP_PARSE,
'\0', "tptp-in",
NoArg, NULL,
"Set TPTP-2 as the input format (but note that includes are "
"still handled according to TPTP-3 semantics)."},
{OPT_TPTP_PRINT,
'\0', "tptp-out",
NoArg, NULL,
"Print TPTP format instead of E-LOP. Implies --eqn-no-infix and "
"will ignore --full-equational-rep."},
{OPT_TPTP_FORMAT,
'\0', "tptp-format",
NoArg, NULL,
"Equivalent to --tptp-in and --tptp-out."},
{OPT_TPTP_PARSE,
'\0', "tptp2-in",
NoArg, NULL,
"Synonymous with --tptp-in."},
{OPT_TPTP_PRINT,
'\0', "tptp2-out",
NoArg, NULL,
"Synonymous with --tptp-out."},
{OPT_TPTP_FORMAT,
'\0', "tptp2-format",
NoArg, NULL,
"Synonymous with --tptp-format."},
{OPT_TSTP_PARSE,
'\0', "tstp-in",
NoArg, NULL,
"Set TPTP-3 as the input format (Note that TPTP-3 syntax "
"is still under development, and the version in E may not be "
"fully conforming at all times. E works on all TPTP 6.3.0 FOF "
"and CNF files (including includes)."},
{OPT_TSTP_PRINT,
'\0', "tstp-out",
NoArg, NULL,
"Print output clauses in TPTP-3 syntax. In particular, for output "
"levels >=2, write derivations as TPTP-3 derivations."},
{OPT_TSTP_FORMAT,
'\0', "tstp-format",
NoArg, NULL,
"Equivalent to --tstp-in and --tstp-out."},
{OPT_TSTP_PARSE,
'\0', "tptp3-in",
NoArg, NULL,
"Synonymous with --tstp-in."},
{OPT_TSTP_PRINT,
'\0', "tptp3-out",
NoArg, NULL,
"Synonymous with --tstp-out."},
{OPT_TSTP_FORMAT,
'\0', "tptp3-format",
NoArg, NULL,
"Synonymous with --tstp-format."},
{OPT_AUTO,
'\0', "auto",
NoArg, NULL,
"Automatically determine settings for proof search. This is "
"equivalent to -xAuto -tAuto --sine=Auto."},
{OPT_SATAUTO,
'\0', "satauto",
NoArg, NULL,
"Automatically determine settings for proof/saturation search. This is "
"equivalent to -xAuto -tAuto."},
{OPT_AUTODEV,
'\0', "autodev",
NoArg, NULL,
"Automatically determine settings for proof search (development "
"version). This is equivalent to -xAutoDev -tAutoDev --sine=Auto."},
{OPT_SATAUTODEV,
'\0', "satautodev",
NoArg, NULL,
"Automatically determine settings for proof/saturation search "
"(development version). This is equivalent to -xAutoDev -tAutoDev."},
{OPT_AUTO_SCHED,
'\0', "auto-schedule",
NoArg, NULL,
"Use the (experimental) strategy scheduling. This will try several "
"different fully specified search strategies (aka \"Auto-Modes\"), "
"one after the other, until a proof or saturation is found, or the "
"time limit is exceeded."},
{OPT_SATAUTO_SCHED,
'\0', "satauto-schedule",
NoArg, NULL,
"Use the (experimental) strategy scheduling without SInE, thus "
"maintaining completeness."},
{OPT_AUTOSCHEDULE_KIND,
'\0', "schedule-kind",
ReqArg, NULL,
"Choose a schedule kind that is more optimized for different purposes: "
"CASC is optimized for general-purpose theorem proving, while SH "
"is optimized for theorem low-timeout theorem proving."
},
{OPT_NO_PREPROCESSING,
'\0', "no-preprocessing",
NoArg, NULL,
"Do not perform preprocessing on the initial clause set. "
"Preprocessing currently removes tautologies and orders terms, "
"literals and clauses in a certain (\"canonical\") way before "
"anything else happens. Unless limited by one of the following "
"options, it will also unfold equational definitions."},
{OPT_EQ_UNFOLD_LIMIT,
'\0', "eq-unfold-limit",
ReqArg, NULL,
"During preprocessing, limit unfolding (and removing) of "
"equational definitions to those where the expanded definition "
"is at most the given limit bigger (in terms of standard "
"weight) than the defined term."},
{OPT_EQ_UNFOLD_MAXCLAUSES,
'\0', "eq-unfold-maxclauses",
ReqArg, NULL,
"During preprocessing, don't try unfolding of equational "
"definitions if the problem has more than this limit of clauses."},
{OPT_NO_EQ_UNFOLD,
'\0', "no-eq-unfolding",
NoArg, NULL,
"During preprocessing, abstain from unfolding (and removing) "
"equational definitions."},
{OPT_SINE,
'\0', "sine",
OptArg, "Auto",
"Apply SInE to prune the unprocessed axioms with the specified"
" filter. 'Auto' will automatically pick a filter."},
{OPT_REL_PRUNE_LEVEL,
'\0', "rel-pruning-level",
OptArg, "3",
"Perform relevancy pruning up to the given level on the"
" unprocessed axioms."},
{OPT_PRESAT_SIMPLIY,
'\0', "presat-simplify",
NoArg, NULL,
"Before proper saturation do a complete interreduction of "
"the proof state."},
{OPT_AC_HANDLING,
'\0', "ac-handling",
OptArg, "KeepUnits",
"Select AC handling mode, i.e. determine what to do with "
"redundant AC tautologies. The default is equivalent to "
"'DiscardAll', the other possible values are 'None' (to disable "
"AC handling), 'KeepUnits', and 'KeepOrientable'."},
{OPT_AC_ON_PROC,
'\0', "ac-non-aggressive",
NoArg, NULL,
"Do AC resolution on negative literals only on processing (by "
"default, AC resolution is done after clause creation). Only "
"effective if AC handling is not disabled."},
{OPT_LITERAL_SELECT,
'W', "literal-selection-strategy",
ReqArg, NULL,
"Choose a strategy for selection of negative literals. There are "
"two special values for this option: NoSelection will select no "
"literal (i.e. perform normal superposition) and "
"NoGeneration will inhibit all generating inferences. For a list "
"of the other (hopefully self-documenting) values run "
"'" NAME " -W none'. There are two variants of each strategy. The "
"one prefixed with 'P' will allow paramodulation into maximal "
"positive literals in addition to paramodulation into maximal "
"selected negative literals."},
{OPT_NO_GENERATION,
'\0', "no-generation",
NoArg, NULL,
"Don't perform any generating inferences (equivalent to "
"--literal-selection-strategy=NoGeneration)."},
{OPT_SELECT_ON_PROC_ONLY,
'\0', "select-on-processing-only",
NoArg, NULL,
"Perform literal selection at processing time only (i.e. select "
"only in the _given clause_), not before clause evaluation. This"
" is relevant because many clause selection heuristics give "
"special consideration to maximal or selected literals."},
{OPT_INHERIT_PM_LIT,
'i', "inherit-paramod-literals",
NoArg, NULL,
"Always select the negative literals a previous inference "
"paramodulated into (if possible). If no such literal exists,"
" select as dictated by the selection strategy."},
{OPT_INHERIT_GOAL_PM_LIT,
'j', "inherit-goal-pm-literals",
NoArg, NULL,
"In a goal (all negative clause), always select the negative "
"literals a previous inference "
"paramodulated into (if possible). If no such literal exists,"
" select as dictated by the selection strategy."},
{OPT_INHERIT_CONJ_PM_LIT,
'\0', "inherit-conjecture-pm-literals",
NoArg, NULL,
"In a conjecture-derived clause, always select the negative "
"literals a previous inference paramodulated into (if possible). "
"If no such literal exists, select as dictated by the selection "
"strategy."},
{OPT_POS_LITSEL_MIN,
'\0', "selection-pos-min",
ReqArg, NULL,
"Set a lower limit for the number of positive literals a clause must"
" have to be eligible for literal selection."},
{OPT_POS_LITSEL_MAX,
'\0', "selection-pos-max",
ReqArg, NULL,
"Set a upper limit for the number of positive literals a clause can"
" have to be eligible for literal selection."},
{OPT_NEG_LITSEL_MIN,
'\0', "selection-neg-min",
ReqArg, NULL,
"Set a lower limit for the number of negative literals a clause must"
" have to be eligible for literal selection."},
{OPT_NEG_LITSEL_MAX,
'\0', "selection-neg-max",
ReqArg, NULL,
"Set a upper limit for the number of negative literals a clause can"
" have to be eligible for literal selection."},
{OPT_ALL_LITSEL_MIN,
'\0', "selection-all-min",
ReqArg, NULL,
"Set a lower limit for the number of literals a clause must"
" have to be eligible for literal selection."},
{OPT_ALL_LITSEL_MAX,
'\0', "selection-all-max",
ReqArg, NULL,
"Set an upper limit for the number of literals a clause must"
" have to be eligible for literal selection."},
{OPT_WEIGHT_LITSEL_MIN,
'\0', "selection-weight-min",
ReqArg, NULL,
"Set the minimum weight a clause must have to be eligible for"
" literal selection."},
{OPT_PREFER_INITIAL_CLAUSES,
'\0', "prefer-initial-clauses",
NoArg, NULL,
"Always process all initial clauses first."},
{OPT_HEURISTIC,
'x', "expert-heuristic",
ReqArg, NULL,
"Select one of the clause selection heuristics. Currently"
" at least available: Auto, Weight, StandardWeight, RWeight, FIFO,"
" LIFO, Uniq, UseWatchlist. For a full list check "
"HEURISTICS/che_proofcontrol.c. Auto is recommended if you only want"
" to find a proof. It is special in that it will also set some "
"additional options. To have optimal "
"performance, you also should specify -tAuto to select a good "
"term ordering. LIFO is unfair and will "
"make the prover incomplete. Uniq is used internally and is not "
"very useful in most cases. You can define more heuristics using"
" the option -H (see below)."},
{OPT_FILTER_ORPHANS_LIMIT,
'\0', "filter-orphans-limit",
OptArg, "100",
"Orphans are unprocessed clauses where one of the parents has been "
"removed by back-simolification. They are redundant and usually "
"removed lazily (i.e. only when they are selected for processing). "
"With this option you can select a limit on back-simplified clauses "
" after which orphans will be eagerly deleted."},
{OPT_FORWARD_CONTRACT_LIMIT,
'\0', "forward-contract-limit",
OptArg, "80000",
"Set a limit on the number of processed clauses after which the "
"unprocessed clause set will be re-simplified and reweighted. "},
{OPT_DELETE_BAD_LIMIT,
'\0', "delete-bad-limit",
OptArg, "1500000",
"Set the number of storage units after which bad clauses are"
" deleted without further consideration. This causes the prover to"
" be potentially incomplete, but will allow you to limit the"
" maximum amount of memory used fairly well. The prover will tell"
" you if a proof attempt failed due to the incompleteness"
" introduced by this option. It is recommended to set this limit"
" significantly higher than --filter-limit or"
" --filter-copies-limit. If you select -xAuto and set a"
" memory limit, the prover will determine a good value"
" automatically."},
{OPT_ASSUME_COMPLETENESS,
'\0', "assume-completeness",
NoArg, NULL,
"There are various way (e.g. the next few options) to configure the "
"prover to be strongly incomplete in the general case. E will detect"
" when such an option is selected and return corresponding exit "
"states (i.e. it will not claim satisfiability just because it ran"
" out of unprocessed clauses). If you _know_ that for your class "
"of problems the selected strategy is still complete, use this "
"option to tell the system that this is the case."},
{OPT_ASSUME_INCOMPLETENESS,
'\0', "assume-incompleteness",
NoArg, NULL,
"This option instructs the prover to assume incompleteness (typically"
" because the axiomatization already is incomplete because axioms"
" have been filtered before they are handed to the system."},
{OPT_DISABLE_EQ_FACTORING,
'\0', "disable-eq-factoring",
NoArg, NULL,
"Disable equality factoring. This makes the prover incomplete for "
"general non-Horn problems, but helps for some specialized classes."
" It is not necessary to disable equality factoring for Horn problems"
", as Horn clauses are not factored anyways."},
{OPT_DISABLE_NEGUNIT_PM,
'\0', "disable-paramod-into-neg-units",
NoArg, NULL,
"Disable paramodulation into negative unit clause. This makes the"
" prover incomplete in the general case, but helps for some "
"specialized classes."},
{OPT_CONDENSING,
'\0', "condense",
NoArg, NULL,
"Enable condensing for the given clause. Condensing replaces a clause "
"by a more general factor (if such a factor exists)."},
{OPT_CONDENSING_AGGRESSIVE,
'\0', "condense-aggressive",
NoArg, NULL,
"Enable condensing for the given and newly generated clauses."},
{OPT_NO_GC_FORWARD_SIMPL,
'\0', "disable-given-clause-fw-contraction",
NoArg, NULL,
"Disable simplification and subsumption of the newly selected "
"given clause (clauses are still simplified when they are "
"generated). In general,"
" this breaks some basic assumptions of the DISCOUNT loop proof search"
" procedure. However, there are some problem classes in which "
" this simplifications empirically never occurs. In such cases, we "
"can save significant overhead. The option _should_ work in all "
"cases, but is not expected to improve things in most cases."},
{OPT_USE_SIM_PARAMOD,
'\0', "simul-paramod",
NoArg, NULL,
"Use simultaneous paramodulation to implement superposition. Default"
" is to use plain paramodulation."},
{OPT_USE_ORIENTED_SIM_PARAMOD,
'\0', "oriented-simul-paramod",
NoArg, NULL,
"Use simultaneous paramodulation for oriented from-literals. This "
"is an experimental feature."},
{OPT_USE_SUPERSIM_PARAMOD,
'\0', "supersimul-paramod",
NoArg, NULL,
"Use supersimultaneous paramodulation to implement superposition. Default"
" is to use plain paramodulation."},
{OPT_USE_ORIENTED_SUPERSIM_PARAMOD,
'\0', "oriented-supersimul-paramod",
NoArg, NULL,
"Use supersimultaneous paramodulation for oriented from-literals. This "
"is an experimental feature."},
{OPT_SPLIT_TYPES,
'\0', "split-clauses",
OptArg, "7",
"Determine which clauses should be subject to splitting. The "
"argument is the binary 'OR' of values for the desired classes:\n"
" 1: Horn clauses\n"
" 2: Non-Horn clauses\n"
" 4: Negative clauses\n"
" 8: Positive clauses\n"
" 16: Clauses with both positive and negative literals\n"
"Each set bit adds that class to the set of clauses which will be "
"split."},
{OPT_SPLIT_HOW,
'\0' , "split-method",
ReqArg, NULL,
"Determine how to treat ground literals in splitting. The argument"
" is either '0' to denote no splitting of ground literals (they are"
" all assigned to the first split clause produced), '1' to denote"
" that all ground literals should form a single new clause, or '2',"
" in which case ground literals are treated as usual and are all"
" split off into individual clauses."},
{OPT_SPLIT_AGGRESSIVE,
'\0', "split-aggressive",
NoArg, NULL,
"Apply splitting to new clauses (after simplification) and before "
"evaluation. By default, splitting (if activated) is only "
"performed on selected clauses. "},
{OPT_SPLIT_REUSE_DEFS,
'\0', "split-reuse-defs",
NoArg, NULL,
"If possible, reuse previous definitions for splitting."},
{OPT_ORDERING,
't', "term-ordering",
ReqArg, NULL,
"Select an ordering type (currently Auto, LPO, LPO4, KBO or "
"KBO6). -tAuto is suggested, in particular with -xAuto. KBO and"
" KBO6 are different implementations of the same ordering, KBO6 is"
" usually faster and has had more testing. Similarly, LPO4 is a "
"new, equivalent but superior implementation of LPO."},
{OPT_TO_WEIGHTGEN,
'w', "order-weight-generation",
ReqArg, NULL,
"Select a method for the generation of weights for use with the "
"term ordering. Run '" NAME " -w none' for a list of options."},
{OPT_TO_WEIGHTS,
'\0', "order-weights",
ReqArg, NULL,
"Describe a (partial) assignments of weights to function symbols for "
"term orderings (in particular, KBO). You can specify a list of weights"
" of the form 'f1:w1,f2:w2, ...'. Since a total weight assignment is"
" needed, E will _first_ apply any weight generation scheme specified"
" (or the default one), and then "
"modify the weights as specified. Note that E performs only very "
"basic sanity checks, so you probably can specify weights that break"
" KBO constraints."
},
{OPT_TO_PRECGEN,
'G', "order-precedence-generation",
ReqArg, NULL,
"Select a method for the generation of a precedence for use with "
"the term ordering. Run '" NAME " -G none' for a list of "
"options."},
{OPT_TO_CONJONLY_PREC,
'\0', "prec-pure-conj",
OptArg, "10",
"Set a weight for symbols that occur in conjectures only to determine"
"where to place it in the precedence. This value is used for a rough"
"pre-order, the normal schemes only sort within symbols with the same"
"occurrence modifier."},
{OPT_TO_CONJAXIOM_PREC,
'\0', "prec-conj-axiom",
OptArg, "5",
"Set a weight for symbols that occur in both conjectures and axioms"
"to determine where to place it in the precedence. This value is "
"used for a rough pre-order, the normal schemes only sort within "
"symbols with the same occurrence modifier."},
{OPT_TO_AXIOMONLY_PREC,
'\0', "prec-pure-axiom",
OptArg, "2",
"Set a weight for symbols that occur in axioms only "
"to determine where to place it in the precedence. This value is "
"used for a rough pre-order, the normal schemes only sort within "
"symbols with the same occurrence modifier."},
{OPT_TO_SKOLEM_PREC,
'\0', "prec-skolem",
OptArg, "2",
"Set a weight for Skolem symbols "
"to determine where to place it in the precedence. This value is "
"used for a rough pre-order, the normal schemes only sort within "
"symbols with the same occurrence modifier."},
{OPT_TO_DEFPRED_PREC,
'\0', "prec-defpred",
OptArg, "2",
"Set a weight for introduced predicate symbols (usually via definitional "
"CNF or clause splitting) "
"to determine where to place it in the precedence. This value is "
"used for a rough pre-order, the normal schemes only sort within "
"symbols with the same occurrence modifier."},
{OPT_TO_CONSTWEIGHT,
'c', "order-constant-weight",
ReqArg, NULL,
"Set a special weight > 0 for constants in the term ordering. "
"By default, constants are treated like other function symbols."
},
{OPT_TO_PRECEDENCE,
'\0', "precedence",
OptArg, "",
"Describe a (partial) precedence for the term ordering used for "
"the proof attempt. You can specify a comma-separated list of "
"precedence chains, where a precedence chain is a list of "
"function symbols (which all have to appear in the proof problem)"
", connected by >, <, or =. If this option is used in connection "
"with --order-precedence-generation, the partial ordering will be "
"completed using the selected method, otherwise the prover runs "
"with a non-ground-total ordering."
},
{OPT_TO_LPO_RECLIMIT,
'\0', "lpo-recursion-limit",
OptArg, "100",
"Set a depth limit for LPO comparisons. Most comparisons do not "
"need more than 10 or 20 levels of recursion. By default, "
"recursion depth is limited to 1000 to avoid stack overflow "
"problems. If the limit is reached, the prover assumes that the "
"terms are uncomparable. Smaller values make the comparison "
"attempts faster, but less exact. Larger values have the opposite "
"effect. Values up to 20000 should be save on most operating "
"systems. If you run into segmentation faults while using "
"LPO or LPO4, first try to set this limit to a reasonable value. "
"If the problem persists, send a bug report ;-)"
},
{OPT_TO_RESTRICT_LIT_CMPS,
'\0', "restrict-literal-comparisons",
NoArg, NULL,
"Make all literals uncomparable in the term ordering (i.e. do not"
" use the term ordering to restrict paramodulation, equality"
" resolution and factoring to certain literals. This is necessary"
" to make Set-of-Support-strategies complete for the non-equational"
" case (It still is incomplete for the equational case, but pretty"
" useless anyways)."},
{OPT_TO_LIT_CMP,
'\0', "literal-comparison",
ReqArg, NULL,
"Modify how literal comparisons are done. 'None' is equivalent to the "
"previous option, 'Normal' uses the normal lifting of the term ordering, "
"'TFOEqMax' uses the equivalent of a transfinite ordering deciding on the "
"predicate symbol and making equational literals maximal, and 'TFOEqMin' "
"modifies this by making equational symbols minimal."},
{OPT_TPTP_SOS,
'\0', "sos-uses-input-types",
NoArg, NULL,
"If input is TPTP format, use TPTP conjectures for initializing "
"the Set of Support. If not in TPTP format, use E-LOP queries "
"(clauses of the form ?-l(X),...,m(Y)). Normally, all negative "
"clauses are used. Please note that "
"most E heuristics do not use this information at all, it is currently "
"only useful for certain parameter settings (including the SimulateSOS "
"priority function)."},
{OPT_ER_DESTRUCTIVE,
'\0', "destructive-er",
NoArg, NULL,
"Allow destructive equality resolution inferences on pure-variable "
"literals of the form X!=Y, i.e. replace the original clause with the "
"result of an equality resolution inference on this literal."},
{OPT_ER_STRONG_DESTRUCTIVE,
'\0', "strong-destructive-er",
NoArg, NULL,
"Allow destructive equality resolution inferences on "
"literals of the form X!=t (where X does not occur in t), i.e. "
"replace the original clause with the "
"result of an equality resolution inference on this literal. Unless I "
"am brain-dead, this maintains completeness, although the proof is"
" rather tricky."},
{OPT_ER_AGGRESSIVE,
'\0', "destructive-er-aggressive",
NoArg, NULL,
"Apply destructive equality resolution to all newly generated "
"clauses, not just to selected clauses. Implies --destructive-er."},
{OPT_FORWARD_CSR,
'\0', "forward-context-sr",
NoArg, NULL,
"Apply contextual simplify-reflect with processed clauses "
"to the given clause."},
{OPT_FORWARD_CSR_AGGRESSIVE,
'\0', "forward-context-sr-aggressive",
NoArg, NULL,
"Apply contextual simplify-reflect with processed clauses "
"to new clauses. Implies --forward-context-sr."},
{OPT_BACKWARD_CSR,
'\0', "backward-context-sr",
NoArg, NULL,
"Apply contextual simplify-reflect with the given clause to "
"processed clauses."},
{OPT_RULES_GENERAL,
'g', "prefer-general-demodulators",
NoArg, NULL,
"Prefer general demodulators. By default, E prefers specialized"
" demodulators. This affects in which order the rewrite "
" index is traversed."},
{OPT_FORWARD_DEMOD,
'F', "forward-demod-level",
ReqArg, NULL,
"Set the desired level for rewriting of unprocessed clauses. A "
"value of 0 means no rewriting, 1 indicates to use rules "
"(orientable equations) only, 2 indicates full rewriting with "
"rules and instances of unorientable equations. Default behavior is 2."},
{OPT_STRONG_RHS_INSTANCE,
'\0', "strong-rw-inst",
NoArg, NULL,
"Instantiate unbound variables in matching potential "
"demodulators with a small constant terms."},
{OPT_STRONGSUBSUMPTION,
'u', "strong-forward-subsumption",
NoArg, NULL,
"Try multiple positions and unit-equations to try to "
"equationally subsume a "
"single new clause. Default is to search for a single position."},
{OPT_SAT_STEP_INTERVAL,
'\0', "satcheck-proc-interval",
OptArg, "5000",
"Enable periodic SAT checking at the given interval of main loop "
"non-trivial processed clauses."},
{OPT_SAT_SIZE_INTERVAL,
'\0', "satcheck-gen-interval",
OptArg, "10000",
"Enable periodic SAT checking whenever the total proof state size "
"increases by the given limit."},
{OPT_SAT_TTINSERT_INTERVAL,
'\0', "satcheck-ttinsert-interval",
OptArg, "5000000",
"Enable periodic SAT checking whenever the number of term tops "
"insertions matches the given limit (which grows exponentially)."},
{OPT_SATCHECK,
'\0', "satcheck",
OptArg, "FirstConst",
"Set the grounding strategy for periodic SAT checking. Note that to "
"enable SAT checking, it is also necessary to set the interval with "
"one of the previous two options."},
{OPT_SAT_DEC_LIMIT,
'\0', "satcheck-decision-limit",
OptArg, "100",
"Set the number of decisions allowed for each run of the SAT solver. "
"If the option is not given, the built-in value is 10000. Use -1 to "
"allow unlimited decision."},
{OPT_SAT_NORMCONST,
'\0', "satcheck-normalize-const",
NoArg, NULL,
"Use the current normal form (as recorded in the termbank rewrite "
"cache) of the selected constant as the term for the grounding "
"substitution."},
{OPT_SAT_NORMALIZE,
'\0', "satcheck-normalize-unproc",
NoArg, NULL,
"Enable re-simplification (heuristic re-revaluation) of unprocessed "
"clauses before grounding for SAT checking."},
{OPT_WATCHLIST,
'\0', "watchlist",
OptArg, WATCHLIST_INLINE_QSTRING,
"Give the name for a file containing clauses to be watched "
"for during the saturation process. If a clause is generated that "
"subsumes a watchlist clause, the subsumed clause is removed from "
"the watchlist. The prover will terminate when the watchlist is"
" empty. If you want to use the watchlist for guiding the proof,"
" put the empty clause onto the list and use the built-in clause "
"selection heuristic "
"'UseWatchlist' (or build a heuristic yourself using the priority"
" functions 'PreferWatchlist' and 'DeferWatchlist')."
" Use the argument " WATCHLIST_INLINE_QSTRING " (or no argument)"
" and the special clause type "
"'watchlist' if you want to put watchlist clauses into the normal input"
" stream. This is only supported for TPTP input formats."},
{OPT_STATIC_WATCHLIST,
'\0', "static-watchlist",
OptArg, WATCHLIST_INLINE_QSTRING,
"This is identical to the previous option, but subsumed clauses will"
"not be removed from the watchlist (and hence the prover will not "
"terminate if all watchlist clauses have been subsumed. This may be "
"more useful for heuristic guidance."},
{OPT_WATCHLIST_NO_SIMPLIFY,
'\0', "no-watchlist-simplification",
NoArg, NULL,
"By default, the watchlist is brought into normal form with respect "
"to the current processed clause set and certain simplifications. "
"This option disables simplification for the watchlist."},
{OPT_NO_INDEXED_SUBSUMPTION,
'\0', "conventional-subsumption",
NoArg, NULL,
"Equivalent to --subsumption-indexing=None."},
{OPT_FVINDEX_STYLE,
'\0', "subsumption-indexing",
ReqArg, NULL,
"Determine choice of indexing for (most) subsumption operations. "
"Choices are 'None' for naive subsumption, 'Direct' for direct mapped"
" FV-Indexing, 'Perm' for permuted FV-Indexing and 'PermOpt' for "
"permuted FV-Indexing with deletion of (suspected) non-informative "
"features. Default behaviour is 'Perm'."},
{OPT_FVINDEX_FEATURETYPES,
'\0', "fvindex-featuretypes",
ReqArg, NULL,
"Select the feature types used for indexing. Choices are \"None\""
" to disable FV-indexing, \"AC\" for AC compatible features (the default) "
"(literal number and symbol counts), \"SS\" for set subsumption "
"compatible features (symbol depth), and \"All\" for all features."
"Unless you want to measure the effects of the "
"different features, I suggest you stick with the default."},
{OPT_FVINDEX_MAXFEATURES,
'\0', "fvindex-maxfeatures",
OptArg, "200",
"Set the maximum initial number of symbols for feature computation. Depending"
" on the feature selection, a value of X here will convert into 2X+2 "
"features (for set subsumption features), 2X+4 features (for "
"AC-compatible features) or 4X+6 features (if all features are used, "
"the default). Note that the actually used set of features may be "
"smaller than this if the signature does not contain enough symbols."
"For the Perm and PermOpt version, this is _also_ used to set the"
" maximum depth of the feature vector index. Yes, I should "
"probably make this into two separate options."
" If you select a small value here, you should probably not use"
" \"Direct\" for the --subsumption-indexing option."},
{OPT_FVINDEX_SLACK,
'\0', "fvindex-slack",
OptArg, "0",
"Set the number of slots reserved in the index for function symbols "
"that may be introduced into the signature "
"later, e.g. by splitting. If no new symbols are introduced, this just "
"wastes time and memory. If PermOpt is chosen, the slackness slots will "
"be deleted from the index anyways, but will still waste "
"(a little) time in computing feature vectors."},
{OPT_RW_BW_INDEX,
'\0', "rw-bw-index",
OptArg, "FP7",
"Select fingerprint function for backwards rewrite index. "
"\"NoIndex\" will disable paramodulation indexing. For a list "
"of the other values run '" NAME " --pm-index=none'. FPX functions "
"will use a fingerprint of X positions, the letters disambiguate "
"between different fingerprints with the same sample size."},
{OPT_PM_FROM_INDEX,
'\0', "pm-from-index",
OptArg, "FP7",
"Select fingerprint function for the index for paramodulation from "
"indexed clauses. \"NoIndex\" "
"will disable paramodulation indexing. For a list "
"of the other values run '" NAME " --pm-index=none'. FPX functions"
"will use a fingerprint of X positions, the letters disambiguate "
"between different fingerprints with the same sample size."},
{OPT_PM_INTO_INDEX,
'\0', "pm-into-index",
OptArg, "FP7",
"Select fingerprint function for the index for paramodulation into "
"the indexed clauses. \"NoIndex\" "
"will disable paramodulation indexing. For a list "
"of the other values run '" NAME " --pm-index=none'. FPX functions"
"will use a fingerprint of X positions, the letters disambiguate "
"between different fingerprints with the same sample size."},
{OPT_FP_INDEX,
'\0', "fp-index",
OptArg, "FP7",
"Select fingerprint function for all fingerprint indices. See above."},
{OPT_FP_NO_SIZECONSTR,
'\0', "fp-no-size-constr",
NoArg, NULL,
"Disable usage of size constraints for matching with fingerprint "
"indexing."},
{OPT_PDT_NO_SIZECONSTR,
'\0', "pdt-no-size-constr",
NoArg, NULL,
"Disable usage of size constraints for matching with perfect "
"discrimination trees indexing."},
{OPT_PDT_NO_AGECONSTR,
'\0', "pdt-no-age-constr",
NoArg, NULL,
"Disable usage of age constraints for matching with perfect "
"discrimination trees indexing."},
{OPT_DETSORT_RW,
'\0', "detsort-rw",
NoArg, NULL,
"Sort set of clauses eliminated by backward rewriting using a total "
"syntactic ordering."},
{OPT_DETSORT_NEW,
'\0', "detsort-new",
NoArg, NULL,
"Sort set of newly generated and backward simplified clauses using "
"a total syntactic ordering."},
{OPT_DEFINE_WFUN,
'D', "define-weight-function",
ReqArg, NULL,
"Define a weight function (see manual for details). Later"
" definitions override previous definitions."},
{OPT_DEFINE_HEURISTIC,
'H', "define-heuristic",
ReqArg, NULL,
"Define a clause selection heuristic (see manual for"
" details). Later definitions override previous definitions."},
{OPT_FREE_NUMBERS,
'\0', "free-numbers",
NoArg, NULL,
"Treat numbers (strings of decimal digits) as normal free function "
"symbols in the input. By default, number now are supposed to denote"
" domain constants and to be implicitly different from each other."},
{OPT_FREE_OBJECTS,
'\0', "free-objects",
NoArg, NULL,
"Treat object identifiers (strings in double quotes) as normal "
"free function symbols in the input. By default, object identifiers "
"now represent domain objects and are implicitly different from "
"each other (and from numbers, unless those are declared to be free)."},
{OPT_DEF_CNF,
'\0', "definitional-cnf",
OptArg, TFORM_RENAME_LIMIT_STR,
"Tune the clausification algorithm to introduces definitions for "
"subformulae to avoid exponential blow-up. The optional argument "
"is a fudge factor that determines when definitions are introduced. "
"0 disables definitions completely. The default works well."},
{OPT_DEF_CNF_OLD,
'\0', "old-cnf",
OptArg, TFORM_RENAME_LIMIT_STR,
"As the previous option, but use the classical, well-tested "
"clausification algorithm as opposed to the newewst one which "
"avoides some algorithmic pitfalls and hence works better on "
"some exotic formulae. The two may produce slightly different "
"(but equisatisfiable) clause normal forms."},
{OPT_MINISCOPE_LIMIT,
'\0', "miniscope-limit",
OptArg, TFORM_MINISCOPE_LIMIT_STR,
"Set the limit of sub-formula-size to miniscope. The build-in"
"default is 256. Only applies to the new (default) clausification "
"algorithm"},
{OPT_PRINT_TYPES,
'\0', "print-types",
NoArg, NULL,
"Print the type of every term. Useful for debugging purposes."},
{OPT_APP_ENCODE,
'\0', "app-encode",
NoArg, NULL,
"Encodes terms in the proof state using applicative encoding, "
"prints encoded input problem and exits."},
{OPT_ARG_CONG,
'\0', "arg-cong",
ReqArg, NULL,
"Turns on ArgCong inference rule. Excepts an argument \"all\" or \"max\" "
"that applies the rule to all or only literals that are eligible "
"for resolution."},
{OPT_NEG_EXT,
'\0', "neg-ext",
ReqArg, NULL,
"Turns on NegExt inference rule. Excepts an argument \"all\" or \"max\" "
"that applies the rule to all or only literals that are eligible "
"for resolution."},
{OPT_POS_EXT,
'\0', "pos-ext",
ReqArg, NULL,
"Turns on PosExt inference rule. Excepts an argument \"all\" or \"max\" "
"that applies the rule to all or only literals that are eligible "
"for resolution."},
{OPT_EXT_SUP,
'\0', "ext-sup-max-depth",
ReqArg, NULL,
"Sets the maximal proof depth of the clause which will be considered for "
" ExtSup inferences. Negative value disables the rule."},
{OPT_INVERSE_RECOGNITION,
'\0', "inverse-recognition",
NoArg, NULL,
"Enables the recognition of injective function symbols. If such a symbol is "
"recognized, existence of the inverse function is asserted by adding a "
"corresponding axiom."},
{OPT_REPLACE_INJ_DEFS,
'\0', "replace-inj-defs",
NoArg, NULL,
"After CNF and before saturation, replaces all clauses that are definitions "
" of injectivity by axiomatization of inverse function."},
{OPT_NOOPT,
'\0', NULL,
NoArg, NULL,
NULL}
};
#endif
/*---------------------------------------------------------------------*/
/* End of File */
/*---------------------------------------------------------------------*/
|