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
|
/*-----------------------------------------------------------------------
File : ccl_subterm_tree.c
Author: Stephan Schulz (schulz@eprover.org)
Contents
A tree-based mapping mapping subterms to occurrences in clauses.
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> Wed Apr 14 09:27:17 CEST 2010
New
-----------------------------------------------------------------------*/
#include "ccl_subterm_tree.h"
/*---------------------------------------------------------------------*/
/* Global Variables */
/*---------------------------------------------------------------------*/
/*---------------------------------------------------------------------*/
/* Forward Declarations */
/*---------------------------------------------------------------------*/
/*---------------------------------------------------------------------*/
/* Internal Functions */
/*---------------------------------------------------------------------*/
/*-----------------------------------------------------------------------
//
// Function: subterm_occ_free_wrapper()
//
// Wrapper of type ObjFreeFun.
//
// Global Variables: -
//
// Side Effects : Via SubtermOccFree()
//
/----------------------------------------------------------------------*/
static void subterm_occ_free_wrapper(void *junk)
{
SubtermOccFree(junk);
}
/*-----------------------------------------------------------------------
//
// Function: subterm_pos_free_wrapper()
//
// Wrapper of type ObjFreeFun.
//
// Global Variables: -
//
// Side Effects : Via SubtermOccFree()
//
/----------------------------------------------------------------------*/
static void subterm_pos_free_wrapper(void *junk)
{
SubtermPosFree(junk);
}
/*-----------------------------------------------------------------------
//
// Function: subterm_tree_print_dot()
//
// Print a subterm tree in dot notation.
//
// Global Variables:
//
// Side Effects :
//
/----------------------------------------------------------------------*/
void subterm_tree_print_dot(FILE* out, SubtermTree_p root, Sig_p sig)
{
SubtermOcc_p data;
if(root)
{
data = root->key;
fprintf(out, " t%p [label=\"<l>|", root);
TermPrint(out, data->term, sig, DEREF_ALWAYS);
fprintf(out, "|<r>\"]\n");
if(root->lson)
{
subterm_tree_print_dot(out, root->lson, sig);
fprintf(out, " t%p:l -- t%p\n", root, root->lson);
}
if(root->rson)
{
subterm_tree_print_dot(out, root->rson, sig);
fprintf(out, " t%p:r -- t%p\n", root, root->rson);
}
}
}
/*---------------------------------------------------------------------*/
/* Exported Functions */
/*---------------------------------------------------------------------*/
/*-----------------------------------------------------------------------
//
// Function: SubtermOccAlloc()
//
// Allocate an initialized Subterm-Occurrence-Cell.
//
// Global Variables: -
//
// Side Effects : Memory operations
//
/----------------------------------------------------------------------*/
SubtermOcc_p SubtermOccAlloc(Term_p term)
{
SubtermOcc_p handle = SubtermOccCellAlloc();
handle->term = term;
handle->pl.occs.rw_rest = NULL;
handle->pl.occs.rw_full = NULL;
handle->pl.pos.clauses = NULL;
return handle;
}
/*-----------------------------------------------------------------------
//
// Function: SubtermOccFree()
//
// Free a Subterm-Occurrence-Cell
//
// Global Variables: -
//
// Side Effects : Memory operations
//
/----------------------------------------------------------------------*/
void SubtermOccFree(SubtermOcc_p soc)
{
PTreeFree(soc->pl.occs.rw_rest);
PTreeFree(soc->pl.occs.rw_full);
SubtermOccCellFree(soc);
}
/*-----------------------------------------------------------------------
//
// Function: SubtermPosFree()
//
// Free a Subterm-Occurrence-Cell with clause positions.
//
// Global Variables: -
//
// Side Effects : Memory operations
//
/----------------------------------------------------------------------*/
void SubtermPosFree(SubtermOcc_p soc)
{
ClauseTPosTreeFree(soc->pl.pos.clauses);
SubtermOccCellFree(soc);
}
/*-----------------------------------------------------------------------
//
// Function: CmpSubtermCells()
//
// Compare two SubtermOccurrence cells via their term pointers. This
// is a synthetic but machine-independent measure useful primarily
// for indexing.
//
// Global Variables: -
//
// Side Effects : -
//
/----------------------------------------------------------------------*/
int CmpSubtermCells(const void *soc1, const void *soc2)
{
const SubtermOcc_p s1 = (const SubtermOcc_p) soc1;
const SubtermOcc_p s2 = (const SubtermOcc_p) soc2;
return PCmp(s1->term, s2->term);
}
/*-----------------------------------------------------------------------
//
// Function: SubtermBWTreeFree()
//
// Free a subterm tree.
//
// Global Variables: -
//
// Side Effects : Memory operations
//
/----------------------------------------------------------------------*/
void SubtermBWTreeFree(SubtermTree_p root)
{
PObjTreeFree(root, subterm_occ_free_wrapper);
}
/*-----------------------------------------------------------------------
//
// Function: SubtermBWTreeFreeWrapper()
//
// Free a subterm tree, with proper signature for FPIndexFree().
//
// Global Variables: -
//
// Side Effects : Memory operations
//
/----------------------------------------------------------------------*/
void SubtermBWTreeFreeWrapper(void *junk)
{
SubtermBWTreeFree(junk);
}
/*-----------------------------------------------------------------------
//
// Function: SubtermOLTreeFree()
//
// Free a subterm tree.
//
// Global Variables: -
//
// Side Effects : Memory operations
//
/----------------------------------------------------------------------*/
void SubtermOLTreeFree(SubtermTree_p root)
{
PObjTreeFree(root, subterm_pos_free_wrapper);
}
/*-----------------------------------------------------------------------
//
// Function: SubtermOLTreeFreeWrapper()
//
// Free a subterm tree, with proper signature for FPIndexFree().
//
// Global Variables: -
//
// Side Effects : Memory operations
//
/----------------------------------------------------------------------*/
void SubtermOLTreeFreeWrapper(void *junk)
{
SubtermOLTreeFree(junk);
}
/*-----------------------------------------------------------------------
//
// Function: SubtermTreeInsertTerm()
//
// Return the SubtermOccNode corresponding to term, creating it if it
// does not exist.
//
// Global Variables: -
//
// Side Effects : Memory operations
//
/----------------------------------------------------------------------*/
SubtermOcc_p SubtermTreeInsertTerm(SubtermTree_p *root, Term_p term)
{
SubtermOcc_p old, newnode = SubtermOccAlloc(term);
old = PTreeObjStore(root, newnode, CmpSubtermCells);
if(old)
{
SubtermOccFree(newnode);
newnode = old;
}
return newnode;
}
/*-----------------------------------------------------------------------
//
// Function: SubtermTreeFind()
//
// Find and return tree node with key term. Return it or NULL if no
// such node exists.
//
// Global Variables: -
//
// Side Effects : Rearranges tres
//
/----------------------------------------------------------------------*/
SubtermOcc_p SubtermTreeFindTerm(SubtermTree_p *root, Term_p term)
{
SubtermOcc_p found, key = SubtermOccAlloc(term);
found = PTreeObjFindObj(root, key,
CmpSubtermCells);
SubtermOccFree(key);
return found;
}
/*-----------------------------------------------------------------------
//
// Function: SubtermTreeDeleteTerm()
//
// Delete the SubtermOccNode corresponding to term,
//
// Global Variables: -
//
// Side Effects : Memory operations
//
/----------------------------------------------------------------------*/
void SubtermTreeDeleteTerm(SubtermTree_p *root, Term_p term)
{
SubtermOcc_p old, knode = SubtermOccAlloc(term);
old = PTreeObjExtractObject(root, knode, CmpSubtermCells);
SubtermOccFree(old);
SubtermOccFree(knode);
}
/*-----------------------------------------------------------------------
//
// Function: SubtermTreeInsertTermOcc()
//
// Insert a term occurrence into the Subterm tree. Return false if an
// entry already exists, true otherwise.
//
// Global Variables: -
//
// Side Effects : Memory operations
//
/----------------------------------------------------------------------*/
bool SubtermTreeInsertTermOcc(SubtermTree_p *root, Term_p term,
Clause_p clause, bool restricted)
{
SubtermOcc_p handle = SubtermTreeInsertTerm(root, term);
if(restricted)
{
return PTreeStore(&(handle->pl.occs.rw_rest), clause);
}
return PTreeStore(&(handle->pl.occs.rw_full), clause);
}
/*-----------------------------------------------------------------------
//
// Function: SubtermTreeDeleteTermOcc()
//
// Delete an indexing of clause via term.
//
// Global Variables:
//
// Side Effects :
//
/----------------------------------------------------------------------*/
bool SubtermTreeDeleteTermOcc(SubtermTree_p *root, Term_p term,
Clause_p clause, bool restricted)
{
SubtermOcc_p old, knode = SubtermOccAlloc(term);
SubtermTree_p oldnode;
bool res = false;
oldnode = PTreeObjFind(root, knode, CmpSubtermCells);
if(oldnode)
{
old = oldnode->key;
if(restricted)
{
res = PTreeDeleteEntry(&(old->pl.occs.rw_rest), clause);
}
else
{
res = PTreeDeleteEntry(&(old->pl.occs.rw_full), clause);
}
if((old->pl.occs.rw_rest == NULL) && (old->pl.occs.rw_full == NULL))
{
SubtermTreeDeleteTerm(root, term);
}
}
SubtermOccFree(knode);
return res;
}
/*-----------------------------------------------------------------------
//
// Function: SubtermTreePrint()
//
// Print a suberm tree (only for debugging)
//
// Global Variables: -
//
// Side Effects : -
//
/----------------------------------------------------------------------*/
void SubtermTreePrint(FILE* out, SubtermTree_p root, Sig_p sig)
{
SubtermOcc_p data;
if(root)
{
SubtermTreePrint(out, root->lson, sig);
data = root->key;
fprintf(out, "Node: %p data=%p\n", root, data);
fprintf(out, "Key: %ld = ", data->term->entry_no);
TermPrint(out, data->term, sig, DEREF_ALWAYS);
fprintf(out, "\nlson=%p, rson=%p\n\n", root->lson, root->rson);
SubtermTreePrint(out, root->rson, sig);
}
}
/*-----------------------------------------------------------------------
//
// Function: SubtermTreePrintDot()
//
// Print a suberm tree as a subgraph in Dot notation.
//
// Global Variables: -
//
// Side Effects : -
//
/----------------------------------------------------------------------*/
void SubtermTreePrintDot(FILE* out, SubtermTree_p root, Sig_p sig)
{
fprintf(out,
" subgraph g%p{\n"
" nodesep=0.05\n"
" node [shape=record,width=1.9,height=.1, penwidth=0,"
" style=filled, fillcolor=gray80]\n",
root);
#ifdef PRT_SUBTERM_SET_AS_TREE
subterm_tree_print_dot(out, root, sig);
#else
{
PStack_p terms = PStackAlloc();
PStackPointer i;
char* sep="";
SubtermOcc_p data;
PTreeToPStack(terms, root);
fprintf(out, " t%p [label=\"{|{", root);
for(i=0; i<PStackGetSP(terms); i++)
{
data = PStackElementP(terms, i);
fprintf(out, "%s", sep);
sep = "|";
TermPrint(out, data->term, sig, DEREF_ALWAYS);
}
fprintf(out, "}}\"]\n");
PStackFree(terms);
}
#endif
fprintf(out, " }\n");
}
/*-----------------------------------------------------------------------
//
// Function: SubtermTreePrintDummy()
//
// Print subterm trees as "..."
//
// Global Variables: -
//
// Side Effects : -
//
/----------------------------------------------------------------------*/
void SubtermTreePrintDummy(FILE* out, SubtermTree_p root, Sig_p sig)
{
fprintf(out, " t%p [shape=box label=\"%ld terms\"]\n", root, PObjTreeNodes(root));
}
/*---------------------------------------------------------------------*/
/* End of File */
/*---------------------------------------------------------------------*/
|