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
|
/*-----------------------------------------------------------------------
File : ccl_formula_wrapper.c
Author: Stephan Schulz
Contents
Wrapped formula code.
Copyright 1998-2011 by the author.
This code is released under the GNU General Public Licence and
the GNU Lesser General Public License.
See the file COPYING in the main E directory for details..
Run "eprover -h" for contact information.
Changes
<1> Thu Nov 13 01:43:38 GMT 2003
New
-----------------------------------------------------------------------*/
#include "ccl_formula_wrapper.h"
#include <clb_simple_stuff.h>
/*---------------------------------------------------------------------*/
/* Global Variables */
/*---------------------------------------------------------------------*/
long global_formula_counter = LONG_MIN;
long FormulaDefLimit = TFORM_RENAME_LIMIT;
bool FormulasKeepInputNames = true;
/*---------------------------------------------------------------------*/
/* Forward Declarations */
/*---------------------------------------------------------------------*/
/*---------------------------------------------------------------------*/
/* Internal Functions */
/*---------------------------------------------------------------------*/
/*-----------------------------------------------------------------------
//
// Function: handle_ho_def()
//
// Parse higher order definitions of form s = t where both s and t
// are non-formula terms or p = f where p is a predicate symbol
// and f is a formula.
//
// Global Variables: -
//
// Side Effects : Memory operations
//
/----------------------------------------------------------------------*/
TFormula_p handle_ho_def(Scanner_p in, TB_p bank)
{
assert(problemType == PROBLEM_HO);
bool in_parens = false;
if(TestInpTok(in, OpenBracket))
{
AcceptInpTok(in, OpenBracket);
in_parens = true;
}
Term_p lside_term = TBTermParse(in, bank);
if(TypeIsBool(lside_term->type))
{
TFormula_p lside = EqnTermsTBTermEncode(bank, lside_term,
bank->true_term, true, PENormal);
if(!TestInpTok(in, EqualSign))
{
AktTokenError(in, "E currently supports definitions of type <predicate "
" symbol> = <closed LFHOL formula>",
SYNTAX_ERROR);
}
AcceptInpTok(in, EqualSign);
TFormula_p res = TFormulaFCodeAlloc(bank, bank->sig->equiv_code,
lside, TFormulaTSTPParse(in, bank));
if(in_parens)
{
AcceptInpTok(in, CloseBracket);
}
return res;
}
else
{
bool positive = true;
if(TestInpTok(in, NegEqualSign))
{
positive = false;
}
AcceptInpTok(in, EqualSign|NegEqualSign);
Term_p rside = TBTermParse(in, bank);
TFormula_p res = EqnTermsTBTermEncode(bank, lside_term, rside,
positive, PENormal);
if(in_parens)
{
AcceptInpTok(in, CloseBracket);
}
return res;
}
return NULL;
}
/*---------------------------------------------------------------------*/
/* Exported Functions */
/*---------------------------------------------------------------------*/
/*-----------------------------------------------------------------------
//
// Function: DefaultWFormulaAlloc()
//
// Allocate and return a wrapped formula cell with all values
// initialized to rational default values.
//
// Global Variables: -
//
// Side Effects : Memory operations
//
/----------------------------------------------------------------------*/
WFormula_p DefaultWFormulaAlloc(void)
{
WFormula_p handle = WFormulaCellAlloc();
handle->properties = CPIgnoreProps;
handle->is_clause = false;
handle->ident = 0;
handle->terms = NULL;
handle->info = NULL;
handle->derivation = NULL;
handle->tformula = NULL;
handle->set = NULL;
handle->pred = NULL;
handle->succ = NULL;
return handle;
}
/*-----------------------------------------------------------------------
//
// Function: WTFormulaAlloc()
//
// Allocate a wrapped formula given the essential information. id
// will automagically be set to a new value.
//
// Global Variables: FormulaIdentCounter
//
// Side Effects : Via DefaultWFormulaAlloc()
//
/----------------------------------------------------------------------*/
WFormula_p WTFormulaAlloc(TB_p terms, TFormula_p formula)
{
WFormula_p handle = DefaultWFormulaAlloc();
handle->terms = terms;
handle->tformula = formula;
handle->ident = ++global_formula_counter;
return handle;
}
/*-----------------------------------------------------------------------
//
// Function: WFormulaFree()
//
// Free a wrapped formula.
//
// Global Variables: -
//
// Side Effects : Memory operations
//
/----------------------------------------------------------------------*/
void WFormulaFree(WFormula_p form)
{
assert(form);
assert(form->tformula);
assert(!form->set);
assert(!form->pred);
assert(!form->succ);
/* tformula handled by Garbage Collection */
ClauseInfoFree(form->info);
if(form->derivation)
{
PStackFree(form->derivation);
}
WFormulaCellFree(form);
}
/*-----------------------------------------------------------------------
//
// Function: WFormulaFlatCopy()
//
// Create a flat copy of the formula.
//
// Global Variables: -
//
// Side Effects : Memory operations.
//
/----------------------------------------------------------------------*/
WFormula_p WFormulaFlatCopy(WFormula_p form)
{
WFormula_p res = DefaultWFormulaAlloc();
res->properties = form->properties;
res->is_clause = form->is_clause;
res->ident = form->ident;
res->terms = form->terms;
res->tformula = form->tformula;
return res;
}
/*-----------------------------------------------------------------------
//
// Function: WFormulaGCMarkCells()
//
// If formula is a term formula, mark the terms. Otherwise a noop.
//
// Global Variables: -
//
// Side Effects : -
//
/----------------------------------------------------------------------*/
void WFormulaGCMarkCells(WFormula_p form)
{
TFormulaGCMarkCells(form->terms, form->tformula);
}
/*-----------------------------------------------------------------------
//
// Function: WFormulaMarkPolarity()
//
// Mark the polarity of all subformulas in form.
//
// Global Variables: -
//
// Side Effects : -
//
/----------------------------------------------------------------------*/
void WFormulaMarkPolarity(WFormula_p form)
{
TFormulaMarkPolarity(form->terms, form->tformula, 1);
}
/*-----------------------------------------------------------------------
//
// Function: WFormulaGetId()
//
// Return an identifier for the formula. The pointer to the
// identifier is good until the next call to this function or until
// the formula is being destroyed, whichever comes first.
//
// Global Variables: -
//
// Side Effects : FormulasKeepInputNames
//
/----------------------------------------------------------------------*/
char* WFormulaGetId(WFormula_p form)
{
static char ident[32]; //big enough for 64 bit integers and then some
char prefix;
long id;
if(FormulasKeepInputNames
&&form->info
&&form->info->name)
{
return form->info->name;
}
if(form->ident < 0)
{
id = form->ident - LONG_MIN;
prefix = 'i';
}
else
{
id = form->ident;
prefix = 'c';
}
sprintf(ident, "%c_0_%ld", prefix, id);
return ident;
}
/*-----------------------------------------------------------------------
//
// Function: WFormulaTPTPParse()
//
// Parse a formula in TPTP format.
//
// Global Variables: -
//
// Side Effects : Input
//
/----------------------------------------------------------------------*/
WFormula_p WFormulaTPTPParse(Scanner_p in, TB_p terms)
{
TFormula_p tform;
FormulaProperties type;
WFormula_p handle;
ClauseInfo_p info;
info = ClauseInfoAlloc(NULL, DStrView(AktToken(in)->source),
AktToken(in)->line,
AktToken(in)->column);
AcceptInpId(in, "input_formula");
SetProblemType(PROBLEM_FO);
AcceptInpTok(in, OpenBracket);
CheckInpTok(in, Name|PosInt);
info->name = DStrCopy(AktToken(in)->literal);
NextToken(in);
AcceptInpTok(in, Comma);
CheckInpId(in, "axiom|hypothesis|negated_conjecture|conjecture|question|lemma|unknown");
if(TestInpId(in, "conjecture"))
{
type = CPTypeConjecture;
}
else if(TestInpId(in, "question"))
{
type = CPTypeQuestion;
}
else if(TestInpId(in, "negated_conjecture"))
{
type = CPTypeNegConjecture;
}
else if(TestInpId(in, "hypothesis"))
{
type = CPTypeHypothesis;
}
else
{
type = CPTypeAxiom;
}
NextToken(in);
AcceptInpTok(in, Comma);
tform = TFormulaTPTPParse(in, terms);
handle = WTFormulaAlloc(terms, tform);
AcceptInpTok(in, CloseBracket);
AcceptInpTok(in, Fullstop);
FormulaSetType(handle, type);
FormulaSetProp(handle, CPInitial|CPInputFormula);
handle->info = info;
return handle;
}
/*-----------------------------------------------------------------------
//
// Function: FormulaTPTPPrint()
//
// Print a formula in TPTP format.
//
// Global Variables: -
//
// Side Effects :
//
/----------------------------------------------------------------------*/
void WFormulaTPTPPrint(FILE* out, WFormula_p form, bool fullterms)
{
char *typename;
switch(FormulaQueryType(form))
{
case CPTypeAxiom:
typename = "axiom";
break;
case CPTypeHypothesis:
typename = "hypothesis";
break;
case CPTypeConjecture:
case CPTypeNegConjecture:
typename = "conjecture";
break;
case CPTypeQuestion:
typename = "question";
break;
default:
typename = "unknown";
break;
}
fprintf(out, "input_formula(%s,%s,", WFormulaGetId(form), typename);
TFormulaTPTPPrint(out, form->terms, form->tformula,fullterms, false);
fprintf(out,").");
}
/*-----------------------------------------------------------------------
//
// Function: WFormulaTSTPParse()
//
// Parse a formula in TSTP format.
//
// Global Variables: -
//
// Side Effects : Input
//
/----------------------------------------------------------------------*/
WFormula_p WFormulaTSTPParse(Scanner_p in, TB_p terms)
{
TFormula_p tform;
FormulaProperties type = CPTypeAxiom;
FormulaProperties initial = CPInputFormula;
WFormula_p handle;
ClauseInfo_p info;
bool is_tcf = false;
DStr_p source_name;
long line, column;
StreamType inptype;
info = ClauseInfoAlloc(NULL, DStrView(AktToken(in)->source),
AktToken(in)->line,
AktToken(in)->column);
if(TestInpId(in, "tcf"))
{
is_tcf = true;
}
if(TestInpId(in, "thf"))
{
SetProblemType(PROBLEM_HO);
}
else if(TestInpId(in, "fof|tff|tcf"))
{
SetProblemType(PROBLEM_FO);
}
AcceptInpId(in, "fof|tff|thf|tcf");
AcceptInpTok(in, OpenBracket);
CheckInpTok(in, Name|PosInt|SQString);
info->name = DStrCopy(AktToken(in)->literal);
// printf("# Parsing: %s\n", info->name);
NextToken(in);
AcceptInpTok(in, Comma);
/* This is hairy! E's internal types do not map very well to
TSTP types, and E uses the "initial" properties in ways that
make it highly desirable that anything in the input is
actually initial (the CPInitialProperty is actually set in
all clauses in the initial unprocessed clause set. So we
ignore the "derived" modifier, and use CPTypeAxiom for plain
clauses.
With typing, it gets more complex, as a type declaration is
not a proper clause. However, the simplest thing to do is
to parse "$true" and modify the signature.
*/
if(TestInpId(in, "type"))
{
NextToken(in);
AcceptInpTok(in, Comma);
/* Parse declaration, modifies signature */
SigParseTFFTypeDeclaration(in, terms->sig);
tform = TFormulaPropConstantAlloc(terms, true);
handle = WTFormulaAlloc(terms, tform);
}
else
{
type = (FormulaProperties)
ClauseTypeParse(in,is_tcf?
"axiom|hypothesis|definition|assumption|"
"lemma|theorem|conjecture|question|negated_conjecture|"
"plain|unknown|watchlist":
"axiom|hypothesis|definition|assumption|"
"lemma|theorem|conjecture|question|negated_conjecture|"
"plain|unknown");
AcceptInpTok(in, Comma);
// printf("# Formula Start!\n");
source_name = DStrGetRef(AktToken(in)->source);
inptype = AktToken(in)->stream_type;
line = AktToken(in)->line;
column = AktToken(in)->column;
if(is_tcf)
{
// printf("# Tcf Start!\n");
tform = TcfTSTPParse(in, terms);
// printf("# Tcf Done!\n");
}
else
{
// fprintf(stderr, "# TFormula Start!\n");
tform = TFormulaTSTPParse(in, terms);
// fprintf(stderr, "# TFormula parsed!: ");
// TFormulaTPTPPrint(stderr, terms, tform, true, false);
// fprintf(stderr, " : ");
// TermPrintDbgHO(stderr, tform, terms->sig, DEREF_NEVER);
// fprintf(stderr, ";\n");
}
if(TFormulaHasFreeVars(terms, tform))
{
Error("%s Formula has free variables (check parentheses "
"and quantifier precedence)",
SYNTAX_ERROR,
PosRep(inptype, source_name, line, column));
}
DStrReleaseRef(source_name);
handle = WTFormulaAlloc(terms, tform);
}
if(TestInpTok(in, Comma))
{
AcceptInpTok(in, Comma);
TSTPSkipSource(in);
if(TestInpTok(in, Comma))
{
AcceptInpTok(in, Comma);
CheckInpTok(in, OpenSquare);
ParseSkipParenthesizedExpr(in);
}
}
AcceptInpTok(in, CloseBracket);
AcceptInpTok(in, Fullstop);
FormulaSetType(handle, type);
FormulaSetProp(handle, initial|CPInitial);
handle->info = info;
// printf("# Formula complete!\n");
return handle;
}
/*-----------------------------------------------------------------------
//
// Function: WFormulaTSTPPrint()
//
// Print a formula in TSTP format. If !complete, leave of the
// trailing ")." for adding optional stuff.
//
// Global Variables: -
//
// Side Effects : Output
//
/----------------------------------------------------------------------*/
void WFormulaTSTPPrint(FILE* out, WFormula_p form, bool fullterms,
bool complete)
{
char *typename = "plain", *formula_kind = "fof";
bool is_untyped = TFormulaIsUntyped(form->tformula);
if(problemType == PROBLEM_FO)
{
if(form->is_clause && is_untyped)
{
formula_kind = "cnf";
}
else if(form->is_clause)
{
formula_kind = "tcf";
}
else if(!is_untyped)
{
formula_kind = "tff";
}
}
else
{
formula_kind = "thf";
}
switch(FormulaQueryType(form))
{
case CPTypeAxiom:
if(FormulaQueryProp(form, CPInputFormula))
{
typename = "axiom";
}
break;
case CPTypeHypothesis:
typename = "hypothesis";
break;
case CPTypeConjecture:
typename = "conjecture";
break;
case CPTypeQuestion:
typename = "question";
break;
case CPTypeLemma:
typename = "lemma";
break;
case CPTypeNegConjecture:
typename = "negated_conjecture";
break;
default:
break;
}
fprintf(out, "%s(%s, %s", formula_kind, WFormulaGetId(form), typename);
fprintf(out, ", ");
if(form->is_clause)
{
Clause_p clause = WFormClauseToClause(form);
ClauseTSTPCorePrint(out, clause, fullterms);
ClauseFree(clause);
}
else
{
TFormulaTPTPPrint(out, form->terms, form->tformula,fullterms, false);
//fprintf(out, "");
//fprintf(out, "<dummy %p in %p>", form->tformula, form->terms);
}
if(complete)
{
fprintf(out, ").");
}
}
/*-----------------------------------------------------------------------
//
// Function: WFormulaAppEncode()
//
// Encodes terms in wrapped formula's literals using app encoding.
// Initial WFormula is not changed.
//
// Global Variables: -
//
// Side Effects : Output
//
/----------------------------------------------------------------------*/
void WFormulaAppEncode(FILE* out, WFormula_p form)
{
char *typename = "plain", *formula_kind = "tff";
switch(FormulaQueryType(form))
{
case CPTypeAxiom:
if(FormulaQueryProp(form, CPInputFormula))
{
typename = "axiom";
}
break;
case CPTypeHypothesis:
typename = "hypothesis";
break;
case CPTypeConjecture:
typename = "conjecture";
break;
case CPTypeQuestion:
typename = "question";
break;
case CPTypeLemma:
typename = "lemma";
break;
case CPTypeNegConjecture:
typename = "negated_conjecture";
break;
default:
break;
}
fprintf(out, "%s(%s, %s", formula_kind, WFormulaGetId(form), typename);
fprintf(out, ", ");
assert(!form->is_clause);
TFormulaAppEncode(out, form->terms, form->tformula);
fprintf(out, ").");
}
/*-----------------------------------------------------------------------
//
// Function: WFormulaParse()
//
// Parse a formula in any supported input format.
//
// Global Variables: -
//
// Side Effects : Input
//
/----------------------------------------------------------------------*/
WFormula_p WFormulaParse(Scanner_p in, TB_p terms)
{
WFormula_p wform = NULL;
if(ClausesHaveDisjointVariables)
{
VarBankClearExtNamesNoReset(terms->vars);
}
switch(ScannerGetFormat(in))
{
case LOPFormat:
Error("LOP currently does not support full FOF!", OTHER_ERROR);
break;
case TPTPFormat:
wform = WFormulaTPTPParse(in, terms);
break;
case TSTPFormat:
wform = WFormulaTSTPParse(in, terms);
break;
default:
assert(false);
break;
}
/* WFormulaPrint(stdout, wform, true);
printf("\n"); */
return wform;
}
/*-----------------------------------------------------------------------
//
// Function: WFormClauseParse()
//
// Parse a clause into a a WFormula disjunction.
//
// Global Variables: -
//
// Side Effects : Input
//
/----------------------------------------------------------------------*/
WFormula_p WFormClauseParse(Scanner_p in, TB_p terms)
{
WFormula_p wform = NULL;
TFormula_p form;
Clause_p handle = ClauseParse(in, terms);
form = TFormulaClauseEncode(terms, handle);
wform = WTFormulaAlloc(terms, form);
wform->is_clause = true;
wform->properties = (FormulaProperties)handle->properties;
wform->info = handle->info;
handle->info = NULL;
ClauseFree(handle);
//printf("# WFormClauseParse: ");
//WFormulaPrint(stdout, wform, true);
//printf("\n");
return wform;
}
/*-----------------------------------------------------------------------
//
// Function: WFormClauseToClause()
//
// Convert a WFormula-encoded clause to a clause proper.
//
// Global Variables: -
//
// Side Effects : -
//
/----------------------------------------------------------------------*/
Clause_p WFormClauseToClause(WFormula_p form)
{
Clause_p res = TFormulaCollectClause(form->tformula, form->terms, NULL);
res->properties = form->properties;
if(form->info)
{
res->info = ClauseInfoAlloc(form->info->name,
form->info->source,
form->info->line,
form->info->column);
}
return res;
}
/*-----------------------------------------------------------------------
//
// Function: WFormulaPrint()
//
// Print a (wrapped) formula in the current output format.
//
// Global Variables: OutputFormat
//
// Side Effects : Output
//
/----------------------------------------------------------------------*/
void WFormulaPrint(FILE* out, WFormula_p form, bool fullterms)
{
if(form->is_clause)
{
Clause_p clause = WFormClauseToClause(form);
ClausePrint(out, clause, fullterms);
ClauseFree(clause);
}
else
{
switch(OutputFormat)
{
case LOPFormat:
Warning("Currently no LOP FOF format, using TPTP");
case TPTPFormat:
WFormulaTPTPPrint(out, form, fullterms);
break;
case TSTPFormat:
WFormulaTSTPPrint(out, form, fullterms, true);
break;
default:
assert(false&& "Unknown output format");
break;
}
}
}
/*-----------------------------------------------------------------------
//
// Function: WFormulaReturnFCodes()
//
// Push all function symbol codes from form onto f_codes. Return
// number of symbols found.
//
// Global Variables: -
//
// Side Effects : -
//
/----------------------------------------------------------------------*/
long WFormulaReturnFCodes(WFormula_p form, PStack_p f_codes)
{
long res = 0;
PStack_p stack;
Sig_p sig;
PStackPointer i, start;
Term_p t;
FunCode f;
assert(form);
assert(f_codes);
sig = form->terms->sig;
assert(sig);
stack = PStackAlloc();
TBTermCollectSubterms(form->tformula, stack);
start = PStackGetSP(f_codes);
for(i=0; i<PStackGetSP(stack);i++)
{
t = PStackElementP(stack,i);
TermCellDelProp(t, TPOpFlag);
if(!TermIsVar(t))
{
if(!SigQueryFuncProp(sig, t->f_code, FPOpFlag))
{
SigSetFuncProp(sig, t->f_code, FPOpFlag);
PStackPushInt(f_codes, t->f_code);
res++;
}
}
}
PStackFree(stack);
/* Reset FPOpFlags */
for(i=start; i<PStackGetSP(f_codes);i++)
{
f = PStackElementInt(f_codes, i);
SigDelFuncProp(sig, f, FPOpFlag);
}
return res;
}
/*-----------------------------------------------------------------------
//
// Function: WFormulaSymbolDiversity()
//
// Return number of different symbols in form.
//
// Global Variables: -
//
// Side Effects : Memory operations
//
/----------------------------------------------------------------------*/
long WFormulaSymbolDiversity(WFormula_p form)
{
long res;
PStack_p stack = PStackAlloc();
// TODO: Should we filter for non-internal symbols?
res = WFormulaReturnFCodes(form, stack);
PStackFree(stack);
return res;
}
/*-----------------------------------------------------------------------
//
// Function: WFormulaOfClause
//
// Universally quantifies the disjunction of the literals of
// the clause, and return it as a fresh formula.
//
// Allocate a formula.
//
// Global Variables: -
//
// Side Effects : Memory operations
//
/----------------------------------------------------------------------*/
WFormula_p WFormulaOfClause(Clause_p clause, TB_p bank)
{
TFormula_p form = NULL;
WFormula_p res = NULL;
form = TFormulaClauseEncode(bank, clause);
form = TFormulaClosure(bank, form, true);
res = WTFormulaAlloc(bank, form);
return res;
}
/*---------------------------------------------------------------------*/
/* End of File */
/*---------------------------------------------------------------------*/
|