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
|
/*-----------------------------------------------------------------------
File : ccl_f_generality.c
Author: Stephan Schulz (schulz@eprover.org)
Contents
Code for determining function symbol distributions.
Copyright 2010 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 Jul 1 01:10:42 CEST 2010
New
-----------------------------------------------------------------------*/
#include "ccl_f_generality.h"
/*---------------------------------------------------------------------*/
/* Global Variables */
/*---------------------------------------------------------------------*/
/*---------------------------------------------------------------------*/
/* Forward Declarations */
/*---------------------------------------------------------------------*/
/*---------------------------------------------------------------------*/
/* Internal Functions */
/*---------------------------------------------------------------------*/
/*-----------------------------------------------------------------------
//
// Function: init_fun_gen_cell()
//
// Initi a FunGenCell for keeping track of occurrences of f.
//
// Global Variables: -
//
// Side Effects : -
//
/----------------------------------------------------------------------*/
static void init_fun_gen_cell(FunGen_p cell, FunCode f)
{
cell->f_code = f;
cell->term_freq = 0;
cell->fc_freq = 0;
}
/*-----------------------------------------------------------------------
//
// Function: gd_merge_single_res()
//
// Merge the new f-counts in dist_array into dist.
//
// Global Variables: -
//
// Side Effects : -
//
/----------------------------------------------------------------------*/
static void gd_merge_single_res(GenDistrib_p dist,
PStack_p symbol_stack,
short factor)
{
FunCode i;
PStackPointer sp;
for(sp=0; sp < PStackGetSP(symbol_stack); sp++)
{
i = PStackElementInt(symbol_stack, sp);
dist->dist_array[i].term_freq += factor*dist->f_distrib[i];
dist->dist_array[i].fc_freq+=factor;
}
}
/*-----------------------------------------------------------------------
//
// Function: fun_gen_tg_cmp_wrapper()
//
// Wrapper around FunGenTGCmp() to sort stacks of pointers.
//
// Global Variables: -
//
// Side Effects : -
//
/----------------------------------------------------------------------*/
static int fun_gen_tg_cmp_wrapper(const void *fg1, const void *fg2)
{
const IntOrP* f1 = (const IntOrP*) fg1;
const IntOrP* f2 = (const IntOrP*) fg2;
return FunGenTGCmp(f1->p_val, f2->p_val);
}
/*-----------------------------------------------------------------------
//
// Function: fun_gen_cg_cmp_wrapper()
//
// Wrapper around FunGenCGCmp() to sort stacks of pointers.
//
// Global Variables: -
//
// Side Effects : -
//
/----------------------------------------------------------------------*/
static int fun_gen_cg_cmp_wrapper(const void *fg1, const void *fg2)
{
const IntOrP* f1 = (const IntOrP*) fg1;
const IntOrP* f2 = (const IntOrP*) fg2;
return FunGenCGCmp(f1->p_val, f2->p_val);
}
/*-----------------------------------------------------------------------
//
// Function: extract_generality()
//
// Given a FunGen_p and a gentype, return the proper generality
// measure.
//
// Global Variables: -
//
// Side Effects : -
//
/----------------------------------------------------------------------*/
static long extract_generality(FunGen_p gen, GeneralityMeasure gentype)
{
long res = 0;
switch(gentype)
{
case GMTerms:
res = gen->term_freq;
break;
case GMFormulas:
res = gen->fc_freq;
break;
default:
assert(false && "Unknown generality type");
break;
}
return res;
}
/*-----------------------------------------------------------------------
//
// function: compute_d_rel()
//
// Find the least general of the function symbols in dist_array and
// push them onto res.
//
// Global Variables: -
//
// Side Effects : Memory operations
//
/----------------------------------------------------------------------*/
static void compute_d_rel(GenDistrib_p generality,
GeneralityMeasure gentype,
double benevolence,
long generosity,
PStack_p symbol_stack,
PStack_p res)
{
FunCode i;
FunGen_p gen;
PStack_p sort_stack;
long least_gen, gen_limit, aux_gen_limit;
PStackPointer sp;
sort_stack = PStackAlloc();
for(sp=0; sp < PStackGetSP(symbol_stack); sp++)
{
i = PStackElementInt(symbol_stack, sp);
if(i >= generality->sig->internal_symbols)
{
PStackPushP(sort_stack,
&(generality->dist_array[i]));
}
}
if(!PStackEmpty(sort_stack))
{
switch(gentype)
{
case GMTerms:
PStackSort(sort_stack, fun_gen_tg_cmp_wrapper);
break;
case GMFormulas:
PStackSort(sort_stack, fun_gen_cg_cmp_wrapper);
break;
default:
assert(false && "Unknown generality type");
break;
}
gen = PStackElementP(sort_stack, 0);
least_gen = extract_generality(gen, gentype);
gen_limit = least_gen*benevolence;
if(generosity>=PStackGetSP(sort_stack))
{
generosity = PStackGetTopSP(sort_stack);
}
gen = PStackElementP(sort_stack, generosity);
aux_gen_limit = extract_generality(gen, gentype);
//printf("generosity = %ld, gen_limit = %ld aux_gen_limit = %ld\n",
//generosity, gen_limit, aux_gen_limit);
if(aux_gen_limit < gen_limit)
{
gen_limit = aux_gen_limit;
}
for(i=0; i<PStackGetSP(sort_stack); i++)
{
gen = PStackElementP(sort_stack, i);
/* printf("generality(% ld)=%s: %ld\n",
i,
SigFindName(generality->sig, gen->f_code),
extract_generality(gen, gentype)); */
if(extract_generality(gen, gentype)>gen_limit)
{
break;
}
PStackPushInt(res, gen->f_code);
}
/* printf("Selected %d symbols including %ld\n",
PStackGetSP(res), PStackTopInt(res)); */
}
PStackFree(sort_stack);
}
/*---------------------------------------------------------------------*/
/* Exported Functions */
/*---------------------------------------------------------------------*/
/*-----------------------------------------------------------------------
//
// Function: GenDistribAlloc()
//
// Allocate an initialized GenDistribCell.
//
// Global Variables:
//
// Side Effects :
//
/----------------------------------------------------------------------*/
GenDistrib_p GenDistribAlloc(Sig_p sig)
{
GenDistrib_p handle = GenDistribCellAlloc();
FunCode i;
handle->sig = sig;
handle->size = sig->f_count+1;
handle->dist_array = SecureMalloc(handle->size*sizeof(FunGenCell));
for(i=0; i<handle->size; i++)
{
init_fun_gen_cell(&(handle->dist_array[i]), i);
}
handle->f_distrib = SizeMalloc(handle->size*sizeof(long));
memset(handle->f_distrib, 0, handle->size*sizeof(long));
return handle;
}
/*-----------------------------------------------------------------------
//
// Function: GenDistribFree()
//
// Free a GenDistrib cell. The signature is external!
//
// Global Variables: -
//
// Side Effects : Memory operations
//
/----------------------------------------------------------------------*/
void GenDistribFree(GenDistrib_p junk)
{
FREE(junk->dist_array);
SizeFree(junk->f_distrib, junk->size*sizeof(long));
GenDistribCellFree(junk);
}
/*-----------------------------------------------------------------------
//
// Function: GenDistribSizeAdjust()
//
// Ensure that GenDistrib is large enough to accomodate all symbols
// in sig.
//
// Global Variables: -
//
// Side Effects : Memory management.
//
/----------------------------------------------------------------------*/
void GenDistribSizeAdjust(GenDistrib_p gd, Sig_p sig)
{
long new_size;
FunCode i;
if(sig->f_count >= gd->size)
{
new_size = sig->f_count+1;
gd->dist_array = SecureRealloc(gd->dist_array, new_size*sizeof(FunGenCell));
for(i=gd->size; i<new_size; i++)
{
init_fun_gen_cell(&(gd->dist_array[i]), i);
}
SizeFree(gd->f_distrib, gd->size*sizeof(long));
gd->f_distrib = SizeMalloc(new_size*sizeof(long));
memset(gd->f_distrib, 0, new_size*sizeof(long));
gd->size = new_size;
}
}
/*-----------------------------------------------------------------------
//
// Function: GenDistribAddClause()
//
// Add f_code occurrences to dist.
//
// Global Variables: -
//
// Side Effects : -
//
/----------------------------------------------------------------------*/
void GenDistribAddClause(GenDistrib_p dist,
Clause_p clause,
short factor)
{
PStack_p symbol_stack = PStackAlloc();
ClauseAddSymbolDistExist(clause,
dist->f_distrib,
symbol_stack);
gd_merge_single_res(dist, symbol_stack, factor);
while(!PStackEmpty(symbol_stack))
{
dist->f_distrib[PStackPopInt(symbol_stack)] = 0;
}
PStackFree(symbol_stack);
}
/*-----------------------------------------------------------------------
//
// Function: GenDistribAddClauseSet()
//
// Add all clauses in set into the distribution.
//
// Global Variables: -
//
// Side Effects : -
//
/----------------------------------------------------------------------*/
void GenDistribAddClauseSet(GenDistrib_p dist,
ClauseSet_p set,
short factor)
{
Clause_p handle;
for(handle=set->anchor->succ;
handle!=set->anchor;
handle=handle->succ)
{
GenDistribAddClause(dist, handle, factor);
}
}
/*-----------------------------------------------------------------------
//
// Function: GenDistribAddFormula()
//
// Add a Formula to the distribution.
//
// Global Variables: -
//
// Side Effects : -
//
/----------------------------------------------------------------------*/
void GenDistribAddFormula(GenDistrib_p dist,
WFormula_p form,
short factor)
{
PStack_p symbol_stack = PStackAlloc();
TermAddSymbolDistExist(form->tformula,
dist->f_distrib,
symbol_stack);
gd_merge_single_res(dist, symbol_stack, factor);
while(!PStackEmpty(symbol_stack))
{
dist->f_distrib[PStackPopInt(symbol_stack)] = 0;
}
PStackFree(symbol_stack);
}
/*-----------------------------------------------------------------------
//
// Function: GenDistribAddFormulaSet()
//
// Add all formulas in set into the distribution.
//
// Global Variables: -
//
// Side Effects : -
//
/----------------------------------------------------------------------*/
void GenDistribAddFormulaSet(GenDistrib_p dist,
FormulaSet_p set,
short factor)
{
WFormula_p handle;
for(handle=set->anchor->succ;
handle!=set->anchor;
handle=handle->succ)
{
GenDistribAddFormula(dist, handle, factor);
}
}
/*-----------------------------------------------------------------------
//
// Function: GenDistribAddClauseSetStack()
//
// Add all clause sets on stack into dist.
//
// Global Variables: -
//
// Side Effects : -
//
/----------------------------------------------------------------------*/
void GenDistribAddClauseSetStack(GenDistrib_p dist,
PStack_p stack,
PStackPointer start,
short factor)
{
PStackPointer i;
ClauseSet_p handle;
for(i=start; i<PStackGetSP(stack); i++)
{
handle = PStackElementP(stack, i);
GenDistribAddClauseSet(dist, handle, factor);
}
}
/*-----------------------------------------------------------------------
//
// Function: GenDistribAddFormulaSetStack)
//
// Add all formula sets on stack into dist.
//
// Global Variables: -
//
// Side Effects : -
//
/----------------------------------------------------------------------*/
void GenDistribAddFormulaSetStack(GenDistrib_p dist, PStack_p stack,
PStackPointer start, short factor)
{
PStackPointer i;
FormulaSet_p handle;
for(i=start; i<PStackGetSP(stack); i++)
{
handle = PStackElementP(stack, i);
GenDistribAddFormulaSet(dist, handle, factor);
}
}
/*-----------------------------------------------------------------------
//
// Function: GenDistPrint()
//
// Print the symbol distribution.
//
// Global Variables: -
//
// Side Effects : -
//
/----------------------------------------------------------------------*/
void GenDistPrint(FILE* out, GenDistrib_p dist)
{
FunCode i;
for(i=dist->sig->internal_symbols+1; i<dist->size; i++)
{
fprintf(out, "# %-20s (%8ld = %8ld): %8ld %8ld\n",
SigFindName(dist->sig, i),
i,
dist->dist_array[i].f_code,
dist->dist_array[i].term_freq,
dist->dist_array[i].fc_freq);
}
}
/*-----------------------------------------------------------------------
//
// Function: FunGenTGCmp()
//
// Compare function for FunGen cell pointers, by term-frequency,
// tie-break by clause frequency, tie-break by f_code.
//
// Global Variables:
//
// Side Effects :
//
/----------------------------------------------------------------------*/
int FunGenTGCmp(const FunGen_p fg1, const FunGen_p fg2)
{
int res;
res = CMP(fg1->term_freq, fg2->term_freq);
if(res)
{
return res;
}
res = CMP(fg1->fc_freq, fg2->fc_freq);
if(res)
{
return res;
}
res = CMP(fg1->f_code, fg2->f_code);
return res;
}
/*-----------------------------------------------------------------------
//
// Function: FunGenCGCmp()
//
// Compare function for FunGen cell pointers, by
// clause/formula-frequency, tie-break by term frequency, tie-break
// by f_code.
//
// Global Variables: -
//
// Side Effects : -
//
/----------------------------------------------------------------------*/
int FunGenCGCmp(const FunGen_p fg1, const FunGen_p fg2)
{
int res;
res = CMP(fg1->fc_freq, fg2->fc_freq);
if(res)
{
return res;
}
res = CMP(fg1->term_freq, fg2->term_freq);
if(res)
{
return res;
}
res = CMP(fg1->f_code, fg2->f_code);
return res;
}
/*-----------------------------------------------------------------------
//
// Function: ClauseComputeDRel()
//
// Push the FCodes of functions in D-relation with clause onto res.
//
// Global Variables: -
//
// Side Effects : -
//
/----------------------------------------------------------------------*/
void ClauseComputeDRel(GenDistrib_p generality,
GeneralityMeasure gentype,
double benevolence,
long generosity,
Clause_p clause,
PStack_p res)
{
PStack_p symbol_stack = PStackAlloc();
/* memset(generality->f_distrib, 0, generality->size*sizeof(long)); */
ClauseAddSymbolDistExist(clause,
generality->f_distrib,
symbol_stack);
/* printf("Symbolstack has %d elements\n",
PStackGetSP(symbol_stack)); */
compute_d_rel(generality, gentype, benevolence, generosity, symbol_stack, res);
while(!PStackEmpty(symbol_stack))
{
generality->f_distrib[PStackPopInt(symbol_stack)] = 0;
}
PStackFree(symbol_stack);
}
/*-----------------------------------------------------------------------
//
// Function: FormulaComputeDRel()
//
// Push the FCodes of functions in D-relation with form onto res.
//
// Global Variables: -
//
// Side Effects : -
//
/----------------------------------------------------------------------*/
void FormulaComputeDRel(GenDistrib_p generality,
GeneralityMeasure gentype,
double benevolence,
long generosity,
WFormula_p form,
PStack_p res)
{
PStack_p symbol_stack = PStackAlloc();
/* memset(generality->f_distrib, 0, generality->size*sizeof(long)); */
TermAddSymbolDistExist(form->tformula,
generality->f_distrib,
symbol_stack);
/* printf("Symbolstack has %d elements\n",
PStackGetSP(symbol_stack)); */
compute_d_rel(generality, gentype, benevolence, generosity, symbol_stack, res);
while(!PStackEmpty(symbol_stack))
{
generality->f_distrib[PStackPopInt(symbol_stack)] = 0;
}
PStackFree(symbol_stack);
}
/*---------------------------------------------------------------------*/
/* End of File */
/*---------------------------------------------------------------------*/
|