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
|
/**************************************************************/
/* ********************************************************** */
/* * * */
/* * CLAUSES * */
/* * * */
/* * $Module: CLAUSE * */
/* * * */
/* * Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001 * */
/* * MPI fuer Informatik * */
/* * * */
/* * This program is free software; you can redistribute * */
/* * it and/or modify it under the terms of the FreeBSD * */
/* * Licence. * */
/* * * */
/* * This program 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 LICENCE file * */
/* * for more details. * */
/* * * */
/* * * */
/* $Revision: 1.12 $ * */
/* $State: Exp $ * */
/* $Date: 2010-02-22 14:09:57 $ * */
/* $Author: weidenb $ * */
/* * * */
/* * Contact: * */
/* * Christoph Weidenbach * */
/* * MPI fuer Informatik * */
/* * Stuhlsatzenhausweg 85 * */
/* * 66123 Saarbruecken * */
/* * Email: spass@mpi-inf.mpg.de * */
/* * Germany * */
/* * * */
/* ********************************************************** */
/**************************************************************/
/* $RCSfile: clause.h,v $ */
#ifndef _CLAUSE_
#define _CLAUSE_
/**************************************************************/
/* Includes */
/**************************************************************/
#include "sharing.h"
#include "foldfg.h"
#include "order.h"
#include "subst.h"
#include "flags.h"
#include "symbol.h"
#include "hasharray.h"
/**************************************************************/
/* Data Structures and Constants */
/**************************************************************/
/* Means weight of literal or clause is undefined */
extern const NAT clause_WEIGHTUNDEFINED;
extern int clause_CLAUSECOUNTER;
typedef enum {MAXIMAL=1, STRICTMAXIMAL=2, LITSELECT=4} MAXFLAG;
typedef enum {CLAUSE_DELETION, EMPTY_SORT, SORT_RESOLUTION,
EQUALITY_RESOLUTION, EQUALITY_FACTORING, MERGING_PARAMODULATION,
PARAMODULATION, ORDERED_PARAMODULATION,
SUPERPOSITION_RIGHT, SUPERPOSITION_LEFT,
SIMPLE_HYPER, ORDERED_HYPER, UR_RESOLUTION,
GENERAL_RESOLUTION, GENERAL_FACTORING, SPLITTING, INPUT,
CONDENSING, ASSIGNMENT_EQUATION_DELETION, OBVIOUS_REDUCTIONS,
SORT_SIMPLIFICATION, REWRITING, CONTEXTUAL_REWRITING,
MATCHING_REPLACEMENT_RESOLUTION, UNIT_CONFLICT, DEFAPPLICATION,
TERMINATOR, TEMPORARY
} RULE;
typedef unsigned long SPLITFIELDENTRY;
typedef SPLITFIELDENTRY* SPLITFIELD;
typedef enum {WORKEDOFF=1,CLAUSESELECT=2,DOCCLAUSE=4,CONCLAUSE=8,BLOCKED=16,
NOPARAINTO=32, MARKED=64, HIDDEN=128, MARK=256} CLAUSE_FLAGS;
/* WORKEDOFF set if it is a worked off clause */
/* MARK is used for marking */
/* As there are a lot of implications a clauses properties may have */
/* for the prover, this information should be kept with the clause. */
/* That for a flagfield is foreseen, most likely an integer used */
/* like the sort-Bitfield existing for term, now used for varoccs. */
typedef struct CLAUSE_HELP{
int clausenumber;
NAT weight; /* The sum of the weight of all literals */
NAT depth; /* The depth of the clause in the derivation */
NAT validlevel; /* Level of splitting where clause is valid. */
float splitpotential; /* -1 if not splittable, 0 if not tested,
k>0 if splittable encoding reduction potential of split at start */
SPLITFIELD splitfield;
unsigned splitfield_length;
LIST parentCls, parentLits; /* Parents clauses' clause and lit numbers.*/
NAT flags;
SYMBOL maxVar; /* The maximal variable symbol in the clause */
struct LITERAL_HELP{
NAT maxLit; /* for clause intern literal ordering */
NAT weight; /* weight of the <atomWithSign> below */
BOOL oriented; /* Flag, TRUE if clause is oriented, i.e. equalities
with bigger first arg and all other predicates */
struct CLAUSE_HELP *owningClause;
TERM atomWithSign; /* Pointer to the term, where an unshared
Term for the sign of negative literals
is supplied additionally. */
} **literals; /* An Array of (c+a+s) literalpointers in this order. */
int c; /* number of constraint literals */
int a; /* number of antecedent literals */
int s; /* number of succedent literals */
RULE origin;
} *CLAUSE, CLAUSE_NODE;
typedef struct LITERAL_HELP *LITERAL, LITERAL_NODE;
/**************************************************************/
/* Functions Prototypes */
/**************************************************************/
/**************************************************************/
/* Functions on clauses and literals creation and deletion. */
/**************************************************************/
void clause_Init(void);
CLAUSE clause_CreateBody(int);
CLAUSE clause_Create(LIST, LIST, LIST, FLAGSTORE, PRECEDENCE);
CLAUSE clause_CreateSkolem(LIST, LIST, LIST, FLAGSTORE, PRECEDENCE);
CLAUSE clause_CreateCrude(LIST, LIST, LIST, BOOL);
CLAUSE clause_CreateUnnormalized(LIST, LIST, LIST);
CLAUSE clause_CreateFromLiterals(LIST, BOOL, BOOL, BOOL, FLAGSTORE, PRECEDENCE);
CLAUSE clause_CreateFromLiteralLists(LIST, LIST, LIST, BOOL, TERM);
void clause_Delete(CLAUSE);
LITERAL clause_LiteralCreate(TERM, CLAUSE);
LITERAL clause_LiteralCreateNegative(TERM, CLAUSE); /* Unused */
void clause_LiteralDelete(LITERAL);
LIST clause_CopyConstraint(CLAUSE);
LIST clause_CopyAntecedentExcept(CLAUSE, int);
LIST clause_CopySuccedent(CLAUSE);
LIST clause_CopySuccedentExcept(CLAUSE, int);
/**************************************************************/
/* Functions to use the sharing for clauses and literals. */
/**************************************************************/
void clause_InsertIntoSharing(CLAUSE, SHARED_INDEX, FLAGSTORE, PRECEDENCE);
void clause_DeleteFromSharing(CLAUSE, SHARED_INDEX, FLAGSTORE, PRECEDENCE);
NAT clause_GetNumberOfInstances(TERM, SHARED_INDEX);
void clause_MakeUnshared(CLAUSE, SHARED_INDEX);
void clause_MoveSharedClause(CLAUSE, SHARED_INDEX, SHARED_INDEX, FLAGSTORE, PRECEDENCE);
void clause_DeleteSharedLiteral(CLAUSE, int, SHARED_INDEX, FLAGSTORE, PRECEDENCE);
void clause_LiteralInsertIntoSharing(LITERAL, SHARED_INDEX);
void clause_LiteralDeleteFromSharing(LITERAL, SHARED_INDEX); /* Used only in clause.c */
void clause_DeleteClauseList(LIST);
void clause_DeleteSharedClauseList(LIST, SHARED_INDEX, FLAGSTORE, PRECEDENCE);
void clause_DeleteAllIndexedClauses(SHARED_INDEX, FLAGSTORE, PRECEDENCE); /* Necessary? */
void clause_PrintAllIndexedClauses(SHARED_INDEX); /* For Debugging */
LIST clause_AllIndexedClauses(SHARED_INDEX);
/**************************************************************/
/* Clause Comparisons */
/**************************************************************/
BOOL clause_IsHornClause(CLAUSE);
int clause_CompareAbstract(CLAUSE, CLAUSE);
/**************************************************************/
/* Clause and literal Input and Output Functions */
/**************************************************************/
void clause_Print(CLAUSE);
void clause_PrintSpecial(CLAUSE);
void clause_PrintSplitfield(CLAUSE, NAT);
void clause_PrintSplitfieldOnly(SPLITFIELD, int);
void clause_PrintVerbose(CLAUSE, FLAGSTORE, PRECEDENCE);
void clause_PrintMaxLitsOnly(CLAUSE, FLAGSTORE, PRECEDENCE); /* For Debugging */
void clause_FPrint(FILE*, CLAUSE); /* For Debugging */
void clause_FPrintRule(FILE*, CLAUSE);
void clause_FPrintOtter(FILE*, CLAUSE); /* Unused */
void clause_FPrintCnfDFG(FILE* , BOOL, LIST, LIST, FLAGSTORE, PRECEDENCE);
void clause_FPrintCnfDFGProof(FILE* , BOOL, LIST, LIST, FLAGSTORE, PRECEDENCE);
void clause_FPrintCnfDFGProblem(FILE* , BOOL, const char*, const char*, const char*, const char*, LIST, LIST, FLAGSTORE, PRECEDENCE, HASH, BOOL, BOOL);
void clause_FPrintCnfFormulasDFGProblem(FILE* , BOOL, const char*, const char*, const char*, const char*, LIST, LIST, FLAGSTORE, PRECEDENCE); /* unused */
void clause_FPrintCnfDFGDerivables(FILE*, LIST, BOOL);
void clause_FPrintDFG(FILE*, CLAUSE, BOOL);
void clause_FPrintDFGProof(FILE*, CLAUSE, BOOL);
void clause_FPrintDFGStep(FILE*, CLAUSE, BOOL);
void clause_FPrintFormulaDFG(FILE*, CLAUSE, BOOL);
void clause_FPrintCnfOtter(FILE*, LIST, FLAGSTORE);
void clause_LiteralPrint(LITERAL); /* For Debugging */
void clause_LiteralListPrint(LIST); /* For Debugging */
void clause_LiteralPrintUnsigned(LITERAL); /* For Debugging */
void clause_LiteralPrintSigned(LITERAL); /* For Debugging */
void clause_LiteralFPrint(FILE*, LITERAL); /* For Debugging */
void clause_LiteralFPrintUnsigned(FILE*, LITERAL);/* For Debugging */
void clause_ListPrint(LIST);
void clause_PrintParentClauses(CLAUSE); /* For Debugging */
void clause_PrintParentClausesSpecial(CLAUSE); /* For Debugging */
void clause_PrintOrigin(CLAUSE); /* For Debugging */
void clause_FPrintOrigin(FILE*, CLAUSE);
/**************************************************************/
/* Specials */
/**************************************************************/
void clause_SetSplitDataFromFather(CLAUSE Result, CLAUSE Father);
void clause_SetSplitDataFromList(CLAUSE Result, LIST List);
void clause_SetSplitDataFromParents(CLAUSE Result, CLAUSE Mother, CLAUSE Father);
void clause_UpdateSplitField(CLAUSE C1, CLAUSE C2);
BOOL clause_LiteralIsSort(LITERAL L);
TERM clause_LiteralAtom(LITERAL L);
CLAUSE clause_Copy(CLAUSE);
LITERAL clause_LiteralCopy(LITERAL);
static __inline__ LIST clause_CopyClauseList(LIST List)
{
return list_CopyWithElement(List, (POINTER (*)(POINTER)) clause_Copy);
}
void clause_DeleteLiteral(CLAUSE, int, FLAGSTORE, PRECEDENCE);
void clause_DeleteLiteralNN(CLAUSE, int);
void clause_DeleteLiterals(CLAUSE, LIST, FLAGSTORE, PRECEDENCE); /* Unused */
LIST clause_GetLiteralSubSetList(CLAUSE, int, int, FLAGSTORE, PRECEDENCE);
void clause_ReplaceLiteralSubSet(CLAUSE, int, int, LIST, FLAGSTORE, PRECEDENCE);
void clause_FixLiteralOrder(CLAUSE, FLAGSTORE, PRECEDENCE);
SYMBOL clause_AtomMaxVar(TERM);
void clause_SetMaxLitFlags(CLAUSE, FLAGSTORE, PRECEDENCE);
void clause_SetMaxLitFlagsSkolem(CLAUSE, FLAGSTORE, PRECEDENCE);
void clause_SetNativeMaxLitFlags(CLAUSE, FLAGSTORE, PRECEDENCE);
SYMBOL clause_LiteralMaxVar(LITERAL); /* Used only in clause.c */
SYMBOL clause_SearchMaxVar(CLAUSE);
void clause_UpdateMaxVar(CLAUSE);
void clause_RenameVarsBiggerThan(CLAUSE, SYMBOL);
void clause_Normalize(CLAUSE);
void clause_SetSortConstraint(CLAUSE, BOOL, FLAGSTORE, PRECEDENCE);
void clause_SubstApply(SUBST, CLAUSE);
void clause_ReplaceVariable(CLAUSE, SYMBOL, TERM);
void clause_OrientEqualities(CLAUSE, FLAGSTORE, PRECEDENCE);
void clause_OrientEqualitiesSkolem(CLAUSE, FLAGSTORE, PRECEDENCE);
NAT clause_NumberOfVarOccs(CLAUSE);
NAT clause_NumberOfSymbolOccurrences(CLAUSE, SYMBOL);
NAT clause_ComputeWeight(CLAUSE, FLAGSTORE);
NAT clause_LiteralComputeWeight(LITERAL, FLAGSTORE);
NAT clause_ComputeTermDepth(CLAUSE);
NAT clause_MaxTermDepthClauseList(LIST);
NAT clause_ComputeSize(CLAUSE);
BOOL clause_WeightCorrect(CLAUSE, FLAGSTORE, PRECEDENCE); /* Unused */
LIST clause_MoveBestLiteralToFront(LIST, SUBST, SYMBOL,
BOOL (*)(LITERAL, NAT, LITERAL, NAT));
LIST clause_InsertWeighed(CLAUSE, LIST, FLAGSTORE, PRECEDENCE);
LIST clause_ListSortWeighed(LIST);
BOOL clause_HasTermSortConstraintLits(CLAUSE);
BOOL clause_HasOnlySpecDomArgs(CLAUSE);
BOOL clause_HasSolvedConstraint(CLAUSE);
BOOL clause_HasSelectedLiteral(CLAUSE, FLAGSTORE, PRECEDENCE);
BOOL clause_IsDeclarationClause(CLAUSE);
BOOL clause_IsSortTheoryClause(CLAUSE, FLAGSTORE, PRECEDENCE);
BOOL clause_IsPartOfDefinition(CLAUSE, TERM, int*, LIST);
BOOL clause_IsPotentialSortTheoryClause(CLAUSE, FLAGSTORE, PRECEDENCE);
BOOL clause_HasOnlyVarsInConstraint(CLAUSE, FLAGSTORE, PRECEDENCE);
BOOL clause_HasSortInSuccedent(CLAUSE, FLAGSTORE, PRECEDENCE);
BOOL clause_VarsOfClauseAreInTerm(CLAUSE, TERM);
BOOL clause_ContainsPotPredDef(CLAUSE, FLAGSTORE, PRECEDENCE, NAT*, LIST*);
BOOL clause_LitsHaveCommonVar(LITERAL, LITERAL);
void clause_SelectLiteral(CLAUSE, FLAGSTORE);
void clause_SetSpecialFlags(CLAUSE,BOOL, FLAGSTORE, PRECEDENCE);
BOOL clause_LiteralIsLiteral(LITERAL);
BOOL clause_IsClause(CLAUSE, FLAGSTORE, PRECEDENCE);
BOOL clause_IsClauseSkolem(CLAUSE, FLAGSTORE, PRECEDENCE);
BOOL clause_IsUnorderedClause(CLAUSE);
BOOL clause_ContainsPositiveEquations(CLAUSE);
BOOL clause_ContainsNegativeEquations(CLAUSE);
int clause_ContainsFolAtom(CLAUSE,BOOL*,BOOL*,BOOL*,BOOL*);
BOOL clause_ContainsVariables(CLAUSE);
BOOL clause_ContainsFunctions(CLAUSE);
BOOL clause_ContainsSymbol(CLAUSE, SYMBOL);
void clause_ContainsSortRestriction(CLAUSE,BOOL*,BOOL*);
BOOL clause_ImpliesFiniteDomain(CLAUSE);
BOOL clause_ImpliesNonTrivialDomain(CLAUSE);
LIST clause_FiniteMonadicPredicates(LIST);
CLAUSE clause_GetNumberedCl(int, LIST);
LIST clause_NumberSort(LIST);
LIST clause_NumberDelete(LIST,int);
void clause_Check(CLAUSE, FLAGSTORE, PRECEDENCE);
void clause_CheckSkolem(CLAUSE, FLAGSTORE, PRECEDENCE);
void clause_DeleteFlatFromIndex(CLAUSE, st_INDEX);
void clause_InsertFlatIntoIndex(CLAUSE, st_INDEX);
void clause_DeleteClauseListFlatFromIndex(LIST, st_INDEX);
RULE clause_GetOriginFromString(const char*);
void clause_CountSymbols(CLAUSE);
LIST clause_ListOfPredicates(CLAUSE);
LIST clause_ListOfConstants(CLAUSE);
LIST clause_ListOfVariables(CLAUSE);
LIST clause_ListOfFunctions(CLAUSE);
BOOL clause_LiteralIsStrictMaximalLiteralSkolem(CLAUSE, int, FLAGSTORE, PRECEDENCE);
/* special output functions for clauses with parent pointers */
void clause_PParentsFPrint(FILE*, CLAUSE);
void clause_PParentsListFPrint(FILE*, LIST L);
void clause_PParentsPrint(CLAUSE);
void clause_PParentsListPrint(LIST);
void clause_PParentsFPrintGen(FILE*, CLAUSE, BOOL);
/**************************************************************/
/* Inline Functions */
/**************************************************************/
/**************************************************************/
/* Accessing Literals 1 */
/**************************************************************/
static __inline__ TERM clause_LiteralSignedAtom(LITERAL L)
{
return L->atomWithSign;
}
static __inline__ CLAUSE clause_LiteralOwningClause(LITERAL L)
{
return L->owningClause;
}
static __inline__ void clause_LiteralSetOwningClause(LITERAL L, CLAUSE C)
{
L->owningClause = C;
}
static __inline__ void clause_LiteralSetOrientedEquality(LITERAL L)
{
L->oriented = TRUE;
}
static __inline__ void clause_LiteralSetNoOrientedEquality(LITERAL L)
{
L->oriented = FALSE;
}
static __inline__ NAT clause_LiteralWeight(LITERAL L)
{
#ifdef CHECK
if (L->weight == clause_WEIGHTUNDEFINED) {
misc_StartErrorReport();
misc_ErrorReport("\n In clause_LiteralWeight:");
misc_ErrorReport(" Tried to access undefined weight.");
misc_FinishErrorReport();
}
#endif
return L->weight;
}
static __inline__ void clause_UpdateLiteralWeight(LITERAL L, FLAGSTORE Flags)
{
L->weight = clause_LiteralComputeWeight(L, Flags);
}
static __inline__ void clause_LiteralFlagReset(LITERAL L)
{
L->maxLit = 0;
}
static __inline__ void clause_LiteralFlagResetAndKeepSelFlag(LITERAL L)
{
L->maxLit &= LITSELECT;
}
static __inline__ BOOL clause_LiteralGetFlag(LITERAL L, MAXFLAG Flag)
{
return ((L->maxLit & Flag) != 0);
}
static __inline__ void clause_LiteralSetFlag(LITERAL L, MAXFLAG Flag)
{
L->maxLit = (L->maxLit) | Flag;
}
static __inline__ void clause_LiteralClearFlag(LITERAL L, MAXFLAG Flag)
{
L->maxLit = (L->maxLit) & ~Flag;
}
static __inline__ BOOL clause_LiteralIsMaximal(LITERAL L)
{
return clause_LiteralGetFlag(L, MAXIMAL);
}
static __inline__ BOOL clause_LiteralIsOrientedEquality(LITERAL L)
{
return L->oriented;
}
static __inline__ BOOL clause_LiteralIsNotOrientedEquality(LITERAL L)
{
return !(L->oriented);
}
/**************************************************************/
/* Literal Comparison 1 */
/**************************************************************/
static __inline__ BOOL clause_LiteralIsNegative(LITERAL L)
{
return (term_TopSymbol(clause_LiteralSignedAtom(L)) == fol_Not());
}
static __inline__ BOOL clause_LiteralIsPositive(LITERAL L)
{
return !clause_LiteralIsNegative(L);
}
static __inline__ BOOL clause_LiteralsAreComplementary(LITERAL L1, LITERAL L2)
{
return ((clause_LiteralIsNegative(L1) &&
clause_LiteralIsPositive(L2)) ||
(clause_LiteralIsNegative(L2) &&
clause_LiteralIsPositive(L1))); /* xor */
}
static __inline__ BOOL clause_HyperLiteralIsBetter(LITERAL Dummy1, NAT S1,
LITERAL Dummy2, NAT S2)
/**************************************************************
INPUT: Two literals and its sizes wrt. some substitution.
RETURNS: TRUE, if the first literal is 'better' than the second literal,
FALSE otherwise.
EFFECT: A literal is 'better' than another, if S1 > Ss.
Since we have to find unifiable complementary literals
for every remaining antecedent literal, it seems to be
a good idea to try the most 'difficult' literal first,
in order to stop the search as early as possible..
Here we prefer the literal with the highest number
of symbols..
This function is used as parameter for the function
clause_MoveBestLiteralToFront.
CAUTION: The parameters <Dummy1> and <Dummy2> are unused, they're just
added to keep the compiler quiet.
***************************************************************/
{
return (S1 > S2);
}
/**************************************************************/
/* Accessing Literals 2 */
/**************************************************************/
static __inline__ SYMBOL clause_LiteralPredicate(LITERAL L)
{
return term_TopSymbol(clause_LiteralAtom(L));
}
static __inline__ BOOL clause_LiteralIsPredicate(LITERAL L)
{
return !fol_IsEquality(clause_LiteralAtom(L));
}
static __inline__ BOOL clause_LiteralIsEquality(LITERAL L)
{
return fol_IsEquality(clause_LiteralAtom(L));
}
static __inline__ void clause_LiteralSetAtom(LITERAL L, TERM A)
{
if (clause_LiteralIsNegative(L))
list_Rplaca(term_ArgumentList(clause_LiteralSignedAtom(L)),A);
else
L->atomWithSign = A;
}
static __inline__ void clause_LiteralSetNegAtom(LITERAL L, TERM A)
{
list_Rplaca(term_ArgumentList(clause_LiteralSignedAtom(L)), A);
}
static __inline__ void clause_LiteralSetPosAtom(LITERAL L, TERM A)
{
L->atomWithSign = A;
}
static __inline__ void clause_NLiteralSetLiteral(LITERAL L, TERM LIT)
{
L->atomWithSign = LIT;
}
/**************************************************************/
/* Memory management */
/**************************************************************/
static __inline__ void clause_LiteralFree(LITERAL L)
{
memory_Free(L, sizeof(LITERAL_NODE));
}
/**************************************************************/
/* Functions to access literals. */
/**************************************************************/
static __inline__ LITERAL clause_GetLiteral(CLAUSE C, int Index)
{
return C->literals[Index];
}
static __inline__ void clause_SetLiteral(CLAUSE C, int Index, LITERAL L)
{
C->literals[Index]= L;
}
static __inline__ TERM clause_GetLiteralTerm(CLAUSE C, int Index)
{
return clause_LiteralSignedAtom(clause_GetLiteral(C, Index));
}
static __inline__ TERM clause_GetLiteralAtom(CLAUSE C, int Index)
{
return clause_LiteralAtom(clause_GetLiteral(C, Index));
}
static __inline__ int clause_NumOfConsLits(CLAUSE Clause)
{
return Clause->c;
}
static __inline__ int clause_NumOfAnteLits(CLAUSE Clause)
{
return Clause->a;
}
static __inline__ int clause_NumOfSuccLits(CLAUSE Clause)
{
return Clause->s;
}
static __inline__ void clause_SetNumOfConsLits(CLAUSE Clause, int Number)
{
Clause->c = Number;
}
static __inline__ void clause_SetNumOfAnteLits(CLAUSE Clause, int Number)
{
Clause->a = Number;
}
static __inline__ void clause_SetNumOfSuccLits(CLAUSE Clause, int Number)
{
Clause->s = Number;
}
static __inline__ int clause_Length(CLAUSE Clause)
{
return (clause_NumOfConsLits(Clause) +
clause_NumOfAnteLits(Clause) +
clause_NumOfSuccLits(Clause));
}
static __inline__ int clause_LastLitIndex(CLAUSE Clause)
{
return clause_Length(Clause) - 1;
}
static __inline__ int clause_FirstLitIndex(void)
{
return 0;
}
static __inline__ int clause_FirstConstraintLitIndex(CLAUSE Clause)
{
return 0;
}
static __inline__ int clause_FirstAntecedentLitIndex(CLAUSE Clause)
{
return clause_NumOfConsLits(Clause);
}
static __inline__ int clause_FirstSuccedentLitIndex(CLAUSE Clause)
{
return (clause_NumOfAnteLits(Clause) + clause_NumOfConsLits(Clause));
}
static __inline__ int clause_LastConstraintLitIndex(CLAUSE Clause)
{
return clause_NumOfConsLits(Clause) - 1;
}
static __inline__ int clause_LastAntecedentLitIndex(CLAUSE Clause)
{
return clause_FirstSuccedentLitIndex(Clause) - 1;
}
static __inline__ int clause_LastSuccedentLitIndex(CLAUSE Clause)
{
return clause_Length(Clause) - 1;
}
static __inline__ LIST clause_GetLiteralList(CLAUSE Clause)
/**************************************************************
INPUT: A clause.
RETURNS: A new list is created containing all literals of the
clause. The list contains pointers, not literal indexes.
***************************************************************/
{
LIST Result;
int i;
Result = list_Nil();
for (i=clause_FirstLitIndex(); i<=clause_LastLitIndex(Clause); i++)
Result = list_Cons(clause_GetLiteral(Clause, i), Result);
return Result;
}
static __inline__ LIST clause_GetLiteralListExcept(CLAUSE Clause, int Index)
/**************************************************************
INPUT: A clause.
RETURNS: A new list is created containing all literals of the
clause except the literal at <Index>. The list contains
pointers, not literal indexes.
***************************************************************/
{
LIST Result;
int i;
Result = list_Nil();
for (i=clause_FirstLitIndex(); i<=clause_LastLitIndex(Clause); i++)
if (i != Index)
Result = list_Cons(clause_GetLiteral(Clause, i), Result);
return Result;
}
/**************************************************************/
/* Clause Access Macros */
/**************************************************************/
static __inline__ int clause_Counter(void)
{
return clause_CLAUSECOUNTER;
}
static __inline__ void clause_SetCounter(int Value)
{
#ifdef CHECK
if (Value < 0) {
misc_StartErrorReport();
misc_ErrorReport("\n In clause_SetCounter: new counter value is negative.");
misc_FinishErrorReport();
}
#endif
clause_CLAUSECOUNTER = Value;
}
static __inline__ int clause_IncreaseCounter(void)
{
#ifdef CHECK
if (clause_CLAUSECOUNTER == INT_MAX) {
misc_StartErrorReport();
misc_ErrorReport("\n In clause_IncreaseCounter: counter overflow.");
misc_FinishErrorReport();
}
#endif
return clause_CLAUSECOUNTER++;
}
static __inline__ void clause_DecreaseCounter(void)
{
#ifdef CHECK
if (clause_CLAUSECOUNTER == 0) {
misc_FinishErrorReport();
misc_ErrorReport("\n In clause_DecreaseCounter: counter underflow.");
misc_FinishErrorReport();
}
#endif
clause_CLAUSECOUNTER--;
}
static __inline__ NAT clause_Depth(CLAUSE Clause)
{
return Clause->depth;
}
static __inline__ void clause_SetDepth(CLAUSE Clause, NAT NewDepth)
{
Clause->depth = NewDepth;
}
static __inline__ NAT clause_Weight(CLAUSE Clause)
{
#ifdef CHECK
if (Clause->weight == clause_WEIGHTUNDEFINED) {
misc_StartErrorReport();
misc_ErrorReport("\n In clause_Weight: Tried to access undefined weight.");
misc_FinishErrorReport();
}
#endif
return Clause->weight;
}
static __inline__ void clause_UpdateWeight(CLAUSE Clause, FLAGSTORE Flags)
{
Clause->weight = clause_ComputeWeight(Clause, Flags);
}
static __inline__ float clause_SplitPotential(CLAUSE Clause)
{
return Clause->splitpotential;
}
static __inline__ void clause_SetSplitPotential(CLAUSE Clause, float pot)
{
Clause->splitpotential = pot;
}
static __inline__ int clause_Number(const CLAUSE Clause)
{
return Clause->clausenumber;
}
static __inline__ void clause_SetNumber(CLAUSE Clause, int Number)
{
Clause->clausenumber = Number;
}
static __inline__ void clause_NewNumber(CLAUSE Clause)
{
Clause->clausenumber = clause_IncreaseCounter();
}
static __inline__ NAT clause_SplitLevel(CLAUSE Clause)
{
return Clause->validlevel;
}
static __inline__ BOOL clause_CheckSplitLevel(CLAUSE Clause)
/**************************************************************
INPUT: A clause.
RETURNS: TRUE, if the splitlevel invariant for the clause is fulfilled.
EFFECT: Checks, if the validlevel of the clause is the order
of the highest set bit in the SPLITFIELD entry
of the clause.
***************************************************************/
{
if (Clause->validlevel == 0)
return (Clause->splitfield == NULL);
else {
int i, j;
for (i = Clause->splitfield_length-1; i >= 0; i--)
if (Clause->splitfield[i] != 0)
break;
for (j = sizeof(SPLITFIELDENTRY)*CHAR_BIT-1; j >= 0; j--)
if (Clause->splitfield[i] & ((SPLITFIELDENTRY)1 << j))
break;
return (Clause->validlevel == (i*sizeof(SPLITFIELDENTRY)*CHAR_BIT+j));
}
}
static __inline__ NAT clause_SplitLevelDependencies(CLAUSE Clause)
/**************************************************************
INPUT: A clause.
RETURNS: The number of split levels the clause depends on
***************************************************************/
{
if (Clause->validlevel == 0)
return 0;
else {
int i, j;
j = 0;
for (i = Clause->splitfield_length-1; i >= 0; i--)
if (Clause->splitfield[i] != 0)
j++;
return j;
}
}
static __inline__ LIST clause_ParentClauses(CLAUSE Clause)
{
return Clause->parentCls;
}
static __inline__ LIST clause_ParentLiterals(CLAUSE Clause)
{
return Clause->parentLits;
}
static __inline__ SYMBOL clause_MaxVar(CLAUSE Clause)
{
return Clause->maxVar;
}
static __inline__ void clause_SetMaxVar(CLAUSE Clause, SYMBOL Variable)
{
Clause->maxVar = Variable;
}
static __inline__ RULE clause_Origin(CLAUSE Clause)
{
return Clause->origin;
}
static __inline__ BOOL clause_Exists(CLAUSE Clause)
{
return (Clause != (CLAUSE)NULL);
}
static __inline__ BOOL clause_LiteralExists(LITERAL L)
{
return (L != (LITERAL)NULL);
}
static __inline__ CLAUSE clause_Null(void)
{
return (CLAUSE) NULL;
}
static __inline__ void clause_SetSplitLevel(CLAUSE Clause, NAT Level)
{
Clause->validlevel = Level;
}
static __inline__ void clause_InitSplitData(CLAUSE C)
{
C->splitfield = NULL;
C->splitfield_length = 0;
clause_SetSplitLevel(C, 0);
}
static __inline__ void clause_SetSplitField(CLAUSE Clause, SPLITFIELD B,
unsigned Length)
{
unsigned i;
if (Clause->splitfield_length != Length) {
if (Clause->splitfield != NULL) {
memory_Free(Clause->splitfield,
sizeof(SPLITFIELDENTRY) * Clause->splitfield_length);
}
if (Length != 0) {
Clause->splitfield = memory_Malloc(sizeof(SPLITFIELDENTRY) * Length);
}
else
Clause->splitfield = NULL;
Clause->splitfield_length = Length;
}
for (i=0; i < Length; i++)
Clause->splitfield[i] = B[i];
}
static __inline__ NAT clause_ComputeSplitFieldAddress(NAT n, NAT* field)
{
*field = 0;
while (n >= (sizeof(SPLITFIELDENTRY) * CHAR_BIT)) {
(*field)++;
n -= sizeof(SPLITFIELDENTRY) * CHAR_BIT;
}
return n;
}
static __inline__ void clause_ExpandSplitField(CLAUSE C, NAT Length)
{
SPLITFIELD NewField;
NAT i;
if (C->splitfield_length < Length) {
NewField = memory_Malloc(sizeof(SPLITFIELDENTRY) * Length);
for (i=0; i < C->splitfield_length; i++)
NewField[i] = C->splitfield[i];
for (i=C->splitfield_length; i < Length; i++)
NewField[i] = 0;
if (C->splitfield != NULL) {
memory_Free(C->splitfield,
sizeof(SPLITFIELDENTRY) * C->splitfield_length);
}
C->splitfield = NewField;
C->splitfield_length = Length;
}
}
static __inline__ void clause_ClearSplitField(CLAUSE C)
{
int i;
for (i=C->splitfield_length-1; i >=0; i--)
C->splitfield[i] = 0;
}
static __inline__ void clause_SetSplitFieldBit(CLAUSE Clause, NAT n)
{
unsigned field;
n = clause_ComputeSplitFieldAddress(n, &field);
if (field >= Clause->splitfield_length)
clause_ExpandSplitField(Clause, field + 1);
Clause->splitfield[field] = (Clause->splitfield[field]) |
((SPLITFIELDENTRY)1 << n);
}
static __inline__ BOOL clause_GetFlag(CLAUSE Clause, CLAUSE_FLAGS Flag)
{
return (Clause->flags & Flag) != 0;
}
static __inline__ void clause_SetFlag(CLAUSE Clause, CLAUSE_FLAGS Flag)
{
Clause->flags = Clause->flags | Flag;
}
static __inline__ void clause_RemoveFlag(CLAUSE Clause, CLAUSE_FLAGS Flag)
{
if (Clause->flags & Flag)
Clause->flags = Clause->flags - Flag;
}
static __inline__ void clause_ClearFlags(CLAUSE Clause)
{
Clause->flags = 0;
}
static __inline__ BOOL clause_DependsOnSplitLevel(CLAUSE C, NAT N)
{
if (N==0)
return TRUE;
else {
unsigned field;
N = clause_ComputeSplitFieldAddress(N, &field);
if (field >= C->splitfield_length)
return FALSE;
else
return (C->splitfield[field] & ((SPLITFIELDENTRY)1 << N)) != 0;
}
}
static __inline__ void clause_UpdateSplitDataFromNewSplitting(CLAUSE Result,
CLAUSE Father,
NAT Level)
{
unsigned field;
NAT i;
clause_SetSplitLevel(Result, Level);
Level = clause_ComputeSplitFieldAddress(Level, &field);
if (field >= Result->splitfield_length) {
if (Result->splitfield != NULL)
memory_Free(Result->splitfield,
sizeof(SPLITFIELDENTRY) * Result->splitfield_length);
Result->splitfield = memory_Malloc((field + 1) * sizeof(SPLITFIELDENTRY));
Result->splitfield_length = field + 1;
}
if (clause_GetFlag(Father, CONCLAUSE))
clause_SetFlag(Result, CONCLAUSE);
for (i=0; i < Father->splitfield_length; i++)
Result->splitfield[i] = Father->splitfield[i];
for (i=Father->splitfield_length; i < Result->splitfield_length; i++)
Result->splitfield[i] = 0;
Result->splitfield[field] = (Result->splitfield[field] | ((SPLITFIELDENTRY)1 << Level));
}
static __inline__ void clause_UpdateSplitDataFromPartner(CLAUSE Result,
CLAUSE Partner)
{
if (clause_GetFlag(Partner, CONCLAUSE))
clause_SetFlag(Result, CONCLAUSE);
if (clause_SplitLevel(Partner) == 0)
return;
/* Set Split level to misc_Max(Partner, Result) */
clause_SetSplitLevel(Result, clause_SplitLevel(Partner) > clause_SplitLevel(Result)
? clause_SplitLevel(Partner)
: clause_SplitLevel(Result));
clause_UpdateSplitField(Result, Partner);
}
static __inline__ void clause_SetParentClauses(CLAUSE Clause, LIST PClauses)
{
Clause->parentCls = PClauses;
}
static __inline__ void clause_AddParentClause(CLAUSE Clause, int PClause)
{
Clause->parentCls = list_Cons((POINTER) PClause, Clause->parentCls);
}
static __inline__ void clause_SetParentLiterals(CLAUSE Clause, LIST PLits)
{
Clause->parentLits = PLits;
}
static __inline__ void clause_AddParentLiteral(CLAUSE Clause, int PLit)
{
Clause->parentLits = list_Cons((POINTER) PLit, Clause->parentLits);
}
static __inline__ BOOL clause_ValidityIsNotSmaller(CLAUSE C1, CLAUSE C2)
{
return (C1->validlevel <= C2->validlevel);
}
static __inline__ BOOL clause_IsMoreValid(CLAUSE C1, CLAUSE C2)
{
return (C1->validlevel < C2->validlevel);
}
static __inline__ BOOL clause_CompareAbstractLEQ (CLAUSE Left, CLAUSE Right)
/**************************************************************
INPUT: Two clauses.
RETURNS: TRUE if left <= right, FALSE otherwise.
EFFECTS: Internal function used to compare clauses for
sorting.
CAUTION: Expects clause literal order to be fixed.
***************************************************************/
{
return (BOOL) (clause_CompareAbstract(Left, Right) <= 0);
}
static __inline__ BOOL clause_IsFromRewriting(CLAUSE Clause)
{
return Clause->origin == REWRITING;
}
static __inline__ BOOL clause_IsFromCondensing(CLAUSE Clause)
{
return Clause->origin == CONDENSING;
}
static __inline__ BOOL clause_IsFromObviousReductions(CLAUSE Clause)
{
return Clause->origin == OBVIOUS_REDUCTIONS;
}
static __inline__ BOOL clause_IsFromSortSimplification(CLAUSE Clause)
{
return Clause->origin == SORT_SIMPLIFICATION;
}
static __inline__ BOOL clause_IsFromMatchingReplacementResolution(CLAUSE Clause)
{
return Clause->origin == MATCHING_REPLACEMENT_RESOLUTION;
}
static __inline__ BOOL clause_IsFromClauseDeletion(CLAUSE Clause)
{
return Clause->origin == CLAUSE_DELETION;
}
static __inline__ BOOL clause_IsFromEmptySort(CLAUSE Clause)
{
return Clause->origin == EMPTY_SORT;
}
static __inline__ BOOL clause_IsFromSortResolution(CLAUSE Clause)
{
return Clause->origin == SORT_RESOLUTION;
}
static __inline__ BOOL clause_IsFromUnitConflict(CLAUSE Clause)
{
return Clause->origin == UNIT_CONFLICT;
}
static __inline__ BOOL clause_IsFromEqualityResolution(CLAUSE Clause)
{
return Clause->origin == EQUALITY_RESOLUTION;
}
static __inline__ BOOL clause_IsFromEqualityFactoring(CLAUSE Clause)
{
return Clause->origin == EQUALITY_FACTORING;
}
static __inline__ BOOL clause_IsFromMergingParamodulation(CLAUSE Clause)
{
return Clause->origin == MERGING_PARAMODULATION;
}
static __inline__ BOOL clause_IsFromSuperpositionRight(CLAUSE Clause)
{
return Clause->origin == SUPERPOSITION_RIGHT;
}
static __inline__ BOOL clause_IsFromSuperpositionLeft(CLAUSE Clause)
{
return Clause->origin == SUPERPOSITION_LEFT;
}
static __inline__ BOOL clause_IsFromGeneralResolution(CLAUSE Clause)
{
return Clause->origin == GENERAL_RESOLUTION;
}
static __inline__ BOOL clause_IsFromGeneralFactoring(CLAUSE Clause)
{
return Clause->origin == GENERAL_FACTORING;
}
static __inline__ BOOL clause_IsFromSplitting(CLAUSE Clause)
{
return Clause->origin == SPLITTING;
}
static __inline__ BOOL clause_IsFromDefApplication(CLAUSE Clause)
{
return Clause->origin == DEFAPPLICATION;
}
static __inline__ BOOL clause_IsFromTerminator(CLAUSE Clause)
{
return Clause->origin == TERMINATOR;
}
static __inline__ BOOL clause_IsTemporary(CLAUSE Clause)
{
return Clause->origin == TEMPORARY;
}
static __inline__ BOOL clause_IsFromInput(CLAUSE Clause)
{
return Clause->origin == INPUT;
}
static __inline__ BOOL clause_HasReducedPredecessor(CLAUSE Clause)
{
RULE origin = clause_Origin(Clause);
return (origin == CONDENSING ||
origin == REWRITING ||
origin == SPLITTING ||
origin == ASSIGNMENT_EQUATION_DELETION ||
origin == SORT_SIMPLIFICATION ||
origin == OBVIOUS_REDUCTIONS);
}
static __inline__ BOOL clause_IsSplitFather(CLAUSE C1, CLAUSE C2)
{
return (C1->clausenumber == (int)list_Car(C2->parentCls));
}
static __inline__ void clause_SetFromRewriting(CLAUSE Clause)
{
Clause->origin = REWRITING;
}
static __inline__ void clause_SetFromContextualRewriting(CLAUSE Clause)
{
Clause->origin = CONTEXTUAL_REWRITING;
}
static __inline__ void clause_SetFromUnitConflict(CLAUSE Clause)
{
Clause->origin = UNIT_CONFLICT;
}
static __inline__ void clause_SetFromCondensing(CLAUSE Clause)
{
Clause->origin = CONDENSING;
}
static __inline__ void clause_SetFromAssignmentEquationDeletion(CLAUSE Clause)
{
Clause->origin = ASSIGNMENT_EQUATION_DELETION;
}
static __inline__ void clause_SetFromObviousReductions(CLAUSE Clause)
{
Clause->origin = OBVIOUS_REDUCTIONS;
}
static __inline__ void clause_SetFromSortSimplification(CLAUSE Clause)
{
Clause->origin = SORT_SIMPLIFICATION;
}
static __inline__ void clause_SetFromMatchingReplacementResolution(CLAUSE Clause)
{
Clause->origin = MATCHING_REPLACEMENT_RESOLUTION;
}
static __inline__ void clause_SetFromClauseDeletion(CLAUSE Clause)
{
Clause->origin = CLAUSE_DELETION;
}
static __inline__ void clause_SetFromEmptySort(CLAUSE Clause)
{
Clause->origin = EMPTY_SORT;
}
static __inline__ void clause_SetFromSortResolution(CLAUSE Clause)
{
Clause->origin = SORT_RESOLUTION;
}
static __inline__ void clause_SetFromEqualityResolution(CLAUSE Clause)
{
Clause->origin = EQUALITY_RESOLUTION;
}
static __inline__ void clause_SetFromEqualityFactoring(CLAUSE Clause)
{
Clause->origin = EQUALITY_FACTORING;
}
static __inline__ void clause_SetFromMergingParamodulation(CLAUSE Clause)
{
Clause->origin = MERGING_PARAMODULATION;
}
static __inline__ void clause_SetFromParamodulation(CLAUSE Clause)
{
Clause->origin = PARAMODULATION;
}
static __inline__ void clause_SetFromOrderedParamodulation(CLAUSE Clause)
{
Clause->origin = ORDERED_PARAMODULATION;
}
static __inline__ void clause_SetFromSuperpositionRight(CLAUSE Clause)
{
Clause->origin = SUPERPOSITION_RIGHT;
}
static __inline__ void clause_SetFromSuperpositionLeft(CLAUSE Clause)
{
Clause->origin = SUPERPOSITION_LEFT;
}
static __inline__ void clause_SetFromGeneralResolution(CLAUSE Clause)
{
Clause->origin = GENERAL_RESOLUTION;
}
static __inline__ void clause_SetFromOrderedHyperResolution(CLAUSE Clause)
{
Clause->origin = ORDERED_HYPER;
}
static __inline__ void clause_SetFromSimpleHyperResolution(CLAUSE Clause)
{
Clause->origin = SIMPLE_HYPER;
}
static __inline__ void clause_SetFromURResolution(CLAUSE Clause)
{
Clause->origin = UR_RESOLUTION;
}
static __inline__ void clause_SetFromGeneralFactoring(CLAUSE Clause)
{
Clause->origin = GENERAL_FACTORING;
}
static __inline__ void clause_SetFromSplitting(CLAUSE Clause)
{
Clause->origin = SPLITTING;
}
static __inline__ void clause_SetFromDefApplication(CLAUSE Clause)
{
Clause->origin = DEFAPPLICATION;
}
static __inline__ void clause_SetFromTerminator(CLAUSE Clause)
{
Clause->origin = TERMINATOR;
}
static __inline__ void clause_SetTemporary(CLAUSE Clause)
{
Clause->origin = TEMPORARY;
}
static __inline__ void clause_SetFromInput(CLAUSE Clause)
{
Clause->origin = INPUT;
}
static __inline__ LITERAL clause_FirstConstraintLit(CLAUSE Clause)
{
return Clause->literals[0];
}
static __inline__ LITERAL clause_FirstAntecedentLit(CLAUSE Clause)
{
return Clause->literals[clause_FirstAntecedentLitIndex(Clause)];
}
static __inline__ LITERAL clause_FirstSuccedentLit(CLAUSE Clause)
{
return Clause->literals[clause_FirstSuccedentLitIndex(Clause)];
}
static __inline__ LITERAL clause_LastConstraintLit(CLAUSE Clause)
{
return Clause->literals[clause_LastConstraintLitIndex(Clause)];
}
static __inline__ LITERAL clause_LastAntecedentLit(CLAUSE Clause)
{
return Clause->literals[clause_LastAntecedentLitIndex(Clause)];
}
static __inline__ LITERAL clause_LastSuccedentLit(CLAUSE Clause)
{
return Clause->literals[clause_LastSuccedentLitIndex(Clause)];
}
static __inline__ BOOL clause_HasEmptyConstraint(CLAUSE Clause)
{
return clause_NumOfConsLits(Clause) == 0;
}
static __inline__ BOOL clause_HasEmptyAntecedent(CLAUSE Clause)
{
return clause_NumOfAnteLits(Clause) == 0;
}
static __inline__ BOOL clause_HasEmptySuccedent(CLAUSE Clause)
{
return clause_NumOfSuccLits(Clause) == 0;
}
static __inline__ BOOL clause_IsGround(CLAUSE Clause)
{
#ifdef CHECK
if (!symbol_Equal(clause_MaxVar(Clause), clause_SearchMaxVar(Clause))) {
misc_StartErrorReport();
misc_ErrorReport("\n In clause_IsGround: Clause is corrupted.");
misc_FinishErrorReport();
}
#endif
return (symbol_VarIndex(clause_MaxVar(Clause)) ==
symbol_GetInitialStandardVarCounter());
}
static __inline__ BOOL clause_IsEmptyClause(CLAUSE C)
{
return (C != (CLAUSE)NULL &&
clause_HasEmptyAntecedent(C) &&
clause_HasEmptySuccedent(C) &&
clause_HasEmptyConstraint(C));
}
static __inline__ int clause_LiteralGetIndex(LITERAL L)
{
int j = 0;
while (clause_GetLiteral(clause_LiteralOwningClause(L), j) != L)
j++;
return j;
}
static __inline__ BOOL clause_LiteralIsFromConstraint(LITERAL Literal)
{
int literal_index = clause_LiteralGetIndex(Literal);
CLAUSE clause = clause_LiteralOwningClause(Literal);
return (literal_index <= clause_LastConstraintLitIndex(clause) &&
literal_index >= clause_FirstConstraintLitIndex(clause));
}
static __inline__ BOOL clause_LiteralIsFromAntecedent(LITERAL Literal)
{
int literal_index = clause_LiteralGetIndex(Literal);
CLAUSE clause = clause_LiteralOwningClause(Literal);
return (literal_index <= clause_LastAntecedentLitIndex(clause) &&
literal_index >= clause_FirstAntecedentLitIndex(clause));
}
static __inline__ BOOL clause_LiteralIsFromSuccedent(LITERAL Literal)
{
int literal_index;
CLAUSE clause;
literal_index = clause_LiteralGetIndex(Literal);
clause = clause_LiteralOwningClause(Literal);
return (literal_index <= clause_LastSuccedentLitIndex(clause) &&
literal_index >= clause_FirstSuccedentLitIndex(clause));
}
static __inline__ BOOL clause_IsSimpleSortClause(CLAUSE Clause)
{
return (clause_HasEmptyAntecedent(Clause) &&
(clause_NumOfSuccLits(Clause) == 1) &&
clause_LiteralIsSort(clause_GetLiteral(Clause,
clause_NumOfConsLits(Clause))) &&
clause_HasSolvedConstraint(Clause));
}
static __inline__ BOOL clause_IsSubsortClause(CLAUSE Clause)
{
return (clause_IsSimpleSortClause(Clause) &&
term_IsVariable(term_FirstArgument(
clause_LiteralSignedAtom(
clause_GetLiteral(Clause, clause_NumOfConsLits(Clause))))));
}
static __inline__ BOOL clause_HasSuccLits(CLAUSE Clause)
{
return (clause_NumOfSuccLits(Clause) > 1);
}
static __inline__ BOOL clause_HasGroundSuccLit(CLAUSE Clause)
{
int i, l;
l = clause_Length(Clause);
for (i = clause_FirstSuccedentLitIndex(Clause); i < l; i++)
if (term_IsGround(Clause->literals[i]->atomWithSign))
return TRUE;
return FALSE;
}
static __inline__ LITERAL clause_GetGroundSuccLit(CLAUSE Clause)
{
int i, l;
l = clause_Length(Clause);
for (i = clause_FirstSuccedentLitIndex(Clause); i < l; i++)
if (term_IsGround(Clause->literals[i]->atomWithSign))
return Clause->literals[i];
return (LITERAL)NULL;
}
static __inline__ void clause_Free(CLAUSE Clause)
{
memory_Free(Clause, sizeof(CLAUSE_NODE));
}
static __inline__ void clause_ReInit(CLAUSE Clause,
FLAGSTORE Flags,
PRECEDENCE Precedence)
{
clause_Normalize(Clause);
clause_SetMaxLitFlags(Clause, Flags, Precedence);
clause_UpdateWeight(Clause, Flags);
Clause->splitpotential = 0.0;
clause_UpdateMaxVar(Clause);
}
static __inline__ void clause_ReInitSkolem(CLAUSE Clause,
FLAGSTORE Flags,
PRECEDENCE Precedence)
{
/* No clause_Normalize(Clause) because variables are interpreted
* as constants */
clause_SetMaxLitFlagsSkolem(Clause, Flags, Precedence);
clause_UpdateWeight(Clause, Flags);
/* Variables are assumed to be constants - therefore
* <Clause> has no variables */
clause_SetMaxVar(Clause, symbol_GetInitialStandardVarCounter());
}
static __inline__ void clause_OrientAndReInit(CLAUSE Clause, FLAGSTORE Flags,
PRECEDENCE Precedence)
{
clause_OrientEqualities(Clause, Flags, Precedence);
clause_ReInit(Clause, Flags, Precedence);
}
static __inline__ void clause_OrientAndReInitSkolem(CLAUSE Clause, FLAGSTORE Flags,
PRECEDENCE Precedence)
{
clause_OrientEqualitiesSkolem(Clause, Flags, Precedence);
clause_ReInitSkolem(Clause, Flags, Precedence);
}
static __inline__ void clause_SetDataFromFather(CLAUSE Result, CLAUSE Father,
int i, FLAGSTORE Flags,
PRECEDENCE Precedence)
{
clause_OrientAndReInit(Result, Flags, Precedence);
clause_SetSplitDataFromFather(Result, Father);
clause_SetDepth(Result, clause_Depth(Father) + 1);
clause_AddParentClause(Result, clause_Number(Father));
clause_AddParentLiteral(Result, i);
}
static __inline__ void clause_SetDataFromParents(CLAUSE Result, CLAUSE Father,
int i, CLAUSE Mother, int j,
FLAGSTORE Flags,
PRECEDENCE Precedence)
{
clause_OrientAndReInit(Result, Flags, Precedence);
clause_SetSplitDataFromParents(Result, Father, Mother);
clause_SetDepth(Result,
misc_Max(clause_Depth(Father), clause_Depth(Mother)) +1);
clause_AddParentClause(Result, clause_Number(Father));
clause_AddParentLiteral(Result, i);
clause_AddParentClause(Result, clause_Number(Mother));
clause_AddParentLiteral(Result, j);
}
static __inline__ SPLITFIELD clause_GetSplitfield(CLAUSE C, unsigned *Length)
{
*Length = C->splitfield_length;
return C->splitfield;
}
#endif
|