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
|
/*-----------------------------------------------------------------------
File : epcllemma.c
Author: Stephan Schulz
Contents
Read a PCL protocol and suggest certain clauses as lemmas.
Copyright 2003-2009 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> Fri Jun 13 17:35:26 CEST 2003
New (from epclanalyse.c)
-----------------------------------------------------------------------*/
#include <stdio.h>
#include <cio_commandline.h>
#include <cio_output.h>
#include <cio_tempfile.h>
#include <cio_signals.h>
#include <pcl_lemmas.h>
#include <e_version.h>
/*---------------------------------------------------------------------*/
/* Data types */
/*---------------------------------------------------------------------*/
#define NAME "epcllemma"
typedef enum
{
OPT_NOOPT=0,
OPT_HELP,
OPT_VERSION,
OPT_VERBOSE,
OPT_OUTPUT,
OPT_SILENT,
OPT_OUTPUTLEVEL,
OPT_TPTP_PRINT,
OPT_TPTP_FORMAT,
OPT_TSTP_PRINT,
OPT_TSTP_FORMAT,
OPT_LOP_PRINT,
OPT_ITERATIVE_LEMMAS,
OPT_RECURSIVE_LEMMAS,
OPT_FLAT_LEMMAS,
OPT_ABS_LEMMA_LIMIT,
OPT_REL_LEMMA_LIMIT,
OPT_ABS_LEMQUAL_LIMIT,
OPT_REL_LEMQUAL_LIMIT,
OPT_LEMMA_TREE_BASE_W,
OPT_LEMMA_SIZE_BASE_W,
OPT_LEMMA_ACT_PM_W,
OPT_LEMMA_O_GEN_W,
OPT_LEMMA_ACT_SIMPL_W,
OPT_LEMMA_PAS_SIMPL_W,
OPT_NO_REFERENCE_WEIGHTS,
OPT_LEMMA_HORN_BONUS,
OPT_INITIAL_WEIGHT,
OPT_QUOTE_WEIGHT,
OPT_PARAMOD_WEIGHT,
OPT_ERESOLUTION_WEIGHT,
OPT_EFACTORING_WEIGHT,
OPT_SIMPLIFYREFLECT_WEIGHT,
OPT_ACRESOLUTION_WEIGHT,
OPT_REWRITE_WEIGHT,
OPT_UREWRITE_WEIGHT,
OPT_CLAUSENORMALIZE_WEIGHT,
OPT_SPLITCLAUSE_WEIGHT
}OptionCodes;
typedef enum
{
LIterative,
LRecursive,
LFlat
}LemmaAlgorithm;
/*---------------------------------------------------------------------*/
/* Global Variables */
/*---------------------------------------------------------------------*/
OptCell opts[] =
{
{OPT_HELP,
'h', "help",
NoArg, NULL,
"Print a short description of program usage and options."},
{OPT_VERSION,
'\0', "version",
NoArg, NULL,
"Print the version number of the program."},
{OPT_VERBOSE,
'v', "verbose",
OptArg, "1",
"Verbose comments on the progress of the program."},
{OPT_OUTPUT,
'o', "output-file",
ReqArg, NULL,
"Redirect output into the named file."},
{OPT_SILENT,
's', "silent",
NoArg, NULL,
"Equivalent to --output-level=0."},
{OPT_OUTPUTLEVEL,
'l', "output-level",
ReqArg, NULL,
"Select an output level, greater values imply more verbose "
"output. Level 0 produces nearly no output, level 1 and 2 will"
" print just lemmas, level 3 and higher will give a full protocol "
"with lemmas marked as such."},
{OPT_TPTP_PRINT,
'\0', "tptp-out",
NoArg, NULL,
"Print lemma sets in TPTP-2 format instead of lop."},
{OPT_TPTP_FORMAT,
'\0', "tptp-format",
NoArg, NULL,
"Equivalent to --tptp-out (supplied for consistency in the E toolchain."},
{OPT_TSTP_PRINT,
'\0', "tstp-out",
NoArg, NULL,
"Print lemma sets in TPTP-3 (TSTP) format instead of lop."},
{OPT_TSTP_FORMAT,
'\0', "tstp-format",
NoArg, NULL,
"Equivalent to --tstp-out (supplied for consistency in the E toolchain."
" Note that this does not enable parsing of TPTP-3 proofs."},
{OPT_LOP_PRINT,
'\0', "lop-out",
NoArg, NULL,
"Print output in LOP format. This is only useful for output level 1, "
"as LOP has no way of distinguishing lemmas and other clauses/formulas."
" It also is problematic for non-CNF first order proofs, as LOP has "
"no good syntax for full first-order formulae."},
{OPT_ITERATIVE_LEMMAS,
'i', "iterative-lemmas",
NoArg, NULL,
"Use a simple iterative lemma generation algorithm that will traverse the PCL"
" listing in a topological ordering (from axioms to leaf nodes),"
" picking out lemmas that reach a "
"certain score. Good for getting a reasonably even distribution of "
"lemmata for proof presentation. This is the default behaviour (the "
"option exists just for documentation purposes)."},
{OPT_RECURSIVE_LEMMAS,
'r', "recursive-lemmas",
NoArg, NULL,
"Use a recursive lemma generation algorithm that will pick out the lemma"
" with the highest score, recompute scores, and repeat for a given "
"number of steps. This may lead to very irregular proofs (because"
" later lemmata may change the score of previous ones), but ensures"
" that the lemma with the highest score is chosen."},
{OPT_FLAT_LEMMAS,
'f', "flat-lemmas",
NoArg, NULL,
"Compute lemma scores once and pick the N lemmas with the highest "
"score. These are bound to be nodes that are close to the "
"derivation graph boundary, so they are not necessarily good for"
" strucuring the proof. They may be good for theory exploration, "
"though. This algorithm is also O(n) in the number of PCL steps "
"(well, there is a small O(log(n)) component, but its close enough), "
"while the others may end up O(n^2) in the (unexpected) worst case."},
{OPT_ABS_LEMMA_LIMIT,
'A', "max-lemmas",
ReqArg, NULL,
"Set the maximal number of lemmas to be selected absolutely."},
{OPT_REL_LEMMA_LIMIT,
'R', "max-lemmas-rel",
ReqArg, NULL,
"Set the maximal number of lemmas to be selected as a fraction "
"of the total number of PCL steps in the protocol (always "
"overwritten if an absolute value is also provided)."},
{OPT_ABS_LEMQUAL_LIMIT,
'q', "min-lemma-quality",
ReqArg, NULL,
"Set a mimimum lemma score absolutely. Steps with this or a "
"higher score become lemmata unless another limit prohibits "
"that.",
},
{OPT_REL_LEMQUAL_LIMIT,
'Q', "min-lemma-quality-rel",
ReqArg, NULL,
"Set a mimimum lemma score as a fraction of the best possible "
"lemma score in the proof tree."
},
{OPT_LEMMA_TREE_BASE_W,
'b', "lemma-tree-base-weight",
ReqArg, NULL,
"Set the base weight for the influence of references in the lemma "
"quality evaluation. The larger it is in relation to the "
"inference weights (below), the less important is the actual "
"number of references. If you want to use only the lemma size, set this to "
"1 and the individual reference weights to 0 (using e.g. the "
"--no-reference-weights option)."},
{OPT_LEMMA_SIZE_BASE_W,
'\0', "lemma-size-base-weight",
ReqArg, NULL,
"Set the base weight for the influence of size in the lemma "
"quality evaluation. The larger this is, the less important the actual "
"size of the lemma becomes."},
{OPT_LEMMA_ACT_PM_W,
'a', "active-pm-weight",
ReqArg, NULL,
"Determine the weight to use for each use of the clause as an active"
" paramodulation partner (i.e. in a conditional rewrite step (if you "
"follow a strictly equational paradigm (which I do)))."},
{OPT_LEMMA_O_GEN_W,
'g',"generating-inference-weight",
ReqArg, NULL,
"Detemine the weight to give to references in generating infences other than "
"active paramodulation inferences."},
{OPT_LEMMA_ACT_SIMPL_W,
'S',"simplifying-weight",
ReqArg, NULL,
"Determine the weight to give to a reference to a clause used as a "
"simplifying clause."},
{OPT_LEMMA_PAS_SIMPL_W,
'p',"simplified-weight",
ReqArg, NULL,
"Determine the weight of a reference where a clause is "
"being simplified."},
{OPT_NO_REFERENCE_WEIGHTS,
'N',"no-reference-weights",
NoArg, NULL,
"Set all the weights given to references to 0. If the base weight "
"(see above) is not 0, this leads to a pure size/prooftree evaluation."},
{OPT_LEMMA_HORN_BONUS,
'H',"horn-bonus",
ReqArg, NULL,
"Weight factor to apply to the evaluation of Horn clauses. Use 1 to be"
" fair, 2.5 if you think Horn clauses are 2.5 times more dandy than "
"non-Horn clauses. Yes, nice lemmas _are_ amatter of taste ;-)."},
{OPT_INITIAL_WEIGHT,
'\0', "pcl-initial-weight",
ReqArg, NULL,
"Set the weight of an 'initial' pseudo-inference for computing the weight of "
"a PLC proof tree. This is probably best left untouched."},
{OPT_QUOTE_WEIGHT,
'\0', "pcl-quote-weight",
ReqArg, NULL,
"Set the weight of a quote pseudo-inference for computing the weight of "
"a PLC proof tree. This is probably best left untouched."},
{OPT_PARAMOD_WEIGHT,
'\0', "pcl-paramod-weight",
ReqArg, NULL,
"Set the weight of a paramodulation inference for computing the weight"
" of a PLC proof tree."},
{OPT_ERESOLUTION_WEIGHT,
'\0', "pcl-eres-weight",
ReqArg, NULL,
"Set the weight of an equality resolution inference for computing the"
" weight of a PLC proof tree."},
{OPT_EFACTORING_WEIGHT,
'\0', "pcl-efact-weight",
ReqArg, NULL,
"Set the weight of an equality factoring inference for computing the"
" weight of a PLC proof tree."},
{OPT_SIMPLIFYREFLECT_WEIGHT,
'\0', "pcl-sr-weight",
ReqArg, NULL,
"Set the weight of a simplify-reflect inference for computing the"
" weight of a PLC proof tree."},
{OPT_ACRESOLUTION_WEIGHT,
'\0', "pcl-acres-weight",
ReqArg, NULL,
"Set the weight of an AC resolution inference for computing the"
" weight of a PLC proof tree."},
{OPT_REWRITE_WEIGHT,
'\0', "pcl-rw-weight",
ReqArg, NULL,
"Set the weight of a rewrite inference for computing the"
" weight of a PLC proof tree."},
{OPT_UREWRITE_WEIGHT,
'\0', "pcl-urw-weight",
ReqArg, NULL,
"Set the weight of a underspecified rewrite inference for computing the"
" weight of a PLC proof tree. Such an inference describes an"
" unspecified number of rewrite steps using the same unit clause as a"
" rewrite rule. Normal E PCL listings should no longer contain"
" such inferences."},
{OPT_CLAUSENORMALIZE_WEIGHT,
'\0', "pcl-cn-weight",
ReqArg, NULL,
"Set the weight of a clause normalization inference for computing the"
" weight of a PLC proof tree. This is probably best left alone, since"
" most clause normalization is implicit anyways."},
{OPT_SPLITCLAUSE_WEIGHT,
'\0', "pcl-split-weight",
ReqArg, NULL,
"Set the weight of a splitting pseudo-inference for computing the"
" weight of a PLC proof tree."},
{OPT_NOOPT,
'\0', NULL,
NoArg, NULL,
NULL}
};
char *outname = NULL;
long time_limit = 10;
char *executable = NULL;
LemmaAlgorithm algo = LIterative;
InferenceWeight_p iw = NULL;
LemmaParam_p lp = NULL;
long max_lemmas = 0;
float max_lemmas_rel = 0.001;
bool max_lemmas_rel_p = true;
bool app_encode = false;
float min_quality = 100;
float min_quality_rel = 0.3;
bool min_quality_rel_p = false;
OutputFormatType outputformat = pcl_format;
ProblemType problemType = PROBLEM_NOT_INIT;;
/*---------------------------------------------------------------------*/
/* Forward Declarations */
/*---------------------------------------------------------------------*/
CLState_p process_options(int argc, char* argv[]);
void print_help(FILE* out);
/*---------------------------------------------------------------------*/
/* Internal Functions */
/*---------------------------------------------------------------------*/
int main(int argc, char* argv[])
{
CLState_p state;
Scanner_p in;
PCLProt_p prot;
PCLStep_p step;
long steps;
int i;
assert(argv[0]);
#ifdef STACK_SIZE
INCREASE_STACK_SIZE;
#endif
InitIO(NAME);
/* TPTPFormatPrint = true; */
/* We need consistent name->var mappings here because we
potentially read the compressed input format. */
ClausesHaveLocalVariables = false;
iw = InferenceWeightsAlloc();
lp = LemmaParamAlloc();
state = process_options(argc, argv);
OpenGlobalOut(outname);
prot = PCLProtAlloc();
if(state->argc == 0)
{
CLStateInsertArg(state, "-");
}
steps = 0;
for(i=0; state->argv[i]; i++)
{
in = CreateScanner(StreamTypeFile, state->argv[i], true, NULL, true);
ScannerSetFormat(in, TPTPFormat);
steps+=PCLProtParse(in, prot);
CheckInpTok(in, NoToken);
DestroyScanner(in);
}
VERBOUT2("PCL input read\n");
if(max_lemmas_rel_p)
{
max_lemmas = PCLProtStepNo(prot) * max_lemmas_rel +0.99;
}
printf("# Selecting at most %ld lemmas\n", max_lemmas);
if(min_quality_rel_p)
{
PCLProtComputeProofSize(prot, iw, false);
step = PCLProtComputeLemmaWeights(prot, lp);
min_quality = step?(step->lemma_quality*min_quality_rel):0;
}
printf("# Minimum lemma quality: %f\n", min_quality);
switch(algo)
{
case LRecursive:
PCLProtRecFindLemmas(prot, lp, iw, max_lemmas, min_quality);
break;
case LIterative:
PCLProtSeqFindLemmas(prot, lp, iw, max_lemmas, min_quality);
break;
case LFlat:
PCLProtFlatFindLemmas(prot, lp, iw, max_lemmas, min_quality);
break;
default:
assert(false && "Unknown algorithm type ???");
break;
}
VERBOUT("Lemmas selected\n");
switch(OutputLevel)
{
case 0:
break;
case 1:
case 2:
PCLProtPrintPropClauses(GlobalOut, prot, PCLIsLemma, outputformat);
break;
default:
PCLProtPrint(GlobalOut, prot, outputformat);
break;
}
PCLProtFree(prot);
InferenceWeightsFree(iw);
LemmaParamFree(lp);
CLStateFree(state);
fflush(GlobalOut);
OutClose(GlobalOut);
ExitIO();
#ifdef CLB_MEMORY_DEBUG
MemFlushFreeList();
MemDebugPrintStats(stdout);
#endif
return 0;
}
/*-----------------------------------------------------------------------
//
// Function: process_options()
//
// Read and process the command line option, return (the pointer to)
// a CLState object containing the remaining arguments.
//
// Global Variables:
//
// Side Effects : Sets variables, may terminate with program
// description if option -h or --help was present
//
/----------------------------------------------------------------------*/
CLState_p process_options(int argc, char* argv[])
{
Opt_p handle;
CLState_p state;
char* arg;
assert(iw);
assert(lp);
state = CLStateAlloc(argc,argv);
while((handle = CLStateGetOpt(state, &arg, opts)))
{
switch(handle->option_code)
{
case OPT_VERBOSE:
Verbose = CLStateGetIntArg(handle, arg);
break;
case OPT_HELP:
print_help(stdout);
exit(NO_ERROR);
case OPT_VERSION:
printf(NAME " " VERSION "\n");
exit(NO_ERROR);
case OPT_OUTPUT:
outname = arg;
break;
case OPT_SILENT:
OutputLevel = 0;
break;
case OPT_OUTPUTLEVEL:
OutputLevel = CLStateGetIntArg(handle, arg);
break;
case OPT_TPTP_PRINT:
case OPT_TPTP_FORMAT:
outputformat = tptp_format;
break;
case OPT_TSTP_PRINT:
case OPT_TSTP_FORMAT:
outputformat = tstp_format;
break;
case OPT_LOP_PRINT:
outputformat = lop_format;
case OPT_ITERATIVE_LEMMAS:
algo = LIterative;
break;
case OPT_RECURSIVE_LEMMAS:
algo = LRecursive;
break;
case OPT_FLAT_LEMMAS:
algo = LFlat;
break;
case OPT_ABS_LEMMA_LIMIT:
max_lemmas = CLStateGetIntArg(handle, arg);
max_lemmas_rel_p = false;
break;
case OPT_REL_LEMMA_LIMIT:
max_lemmas_rel = CLStateGetFloatArg(handle, arg);
max_lemmas_rel_p = true;
break;
case OPT_ABS_LEMQUAL_LIMIT:
min_quality = CLStateGetFloatArg(handle, arg);
min_quality_rel_p = false;
break;
case OPT_REL_LEMQUAL_LIMIT:
min_quality_rel = CLStateGetFloatArg(handle, arg);
min_quality_rel_p = true;
break;
case OPT_LEMMA_TREE_BASE_W:
lp->tree_base_weight = CLStateGetIntArg(handle, arg);
break;
case OPT_LEMMA_SIZE_BASE_W:
lp->size_base_weight = CLStateGetIntArg(handle, arg);
break;
case OPT_LEMMA_ACT_PM_W:
lp->act_pm_w = CLStateGetFloatArg(handle, arg);
break;
case OPT_LEMMA_O_GEN_W:
lp->o_gen_w = CLStateGetFloatArg(handle, arg);
break;
case OPT_LEMMA_ACT_SIMPL_W:
lp->act_simpl_w = CLStateGetFloatArg(handle, arg);
break;
case OPT_LEMMA_PAS_SIMPL_W:
lp->pas_simpl_w = CLStateGetFloatArg(handle, arg);
break;
case OPT_NO_REFERENCE_WEIGHTS:
lp->act_pm_w = 0;
lp->o_gen_w = 0;
lp->pas_simpl_w = 0;
lp->pas_simpl_w = 0;
break;
case OPT_LEMMA_HORN_BONUS:
lp->horn_bonus = CLStateGetFloatArg(handle, arg);
break;
case OPT_INITIAL_WEIGHT:
(*iw)[PCLOpInitial] = CLStateGetIntArg(handle, arg);
break;
case OPT_QUOTE_WEIGHT:
(*iw)[PCLOpQuote] = CLStateGetIntArg(handle, arg);
break;
case OPT_PARAMOD_WEIGHT:
(*iw)[PCLOpParamod] = CLStateGetIntArg(handle, arg);
break;
case OPT_ERESOLUTION_WEIGHT:
(*iw)[PCLOpEResolution] = CLStateGetIntArg(handle, arg);
break;
case OPT_EFACTORING_WEIGHT:
(*iw)[PCLOpEFactoring] = CLStateGetIntArg(handle, arg);
break;
case OPT_SIMPLIFYREFLECT_WEIGHT:
(*iw)[PCLOpSimplifyReflect] = CLStateGetIntArg(handle, arg);
break;
case OPT_ACRESOLUTION_WEIGHT:
(*iw)[PCLOpACResolution] = CLStateGetIntArg(handle, arg);
break;
case OPT_REWRITE_WEIGHT:
(*iw)[PCLOpRewrite] = CLStateGetIntArg(handle, arg);
break;
case OPT_UREWRITE_WEIGHT:
(*iw)[PCLOpURewrite] = CLStateGetIntArg(handle, arg);
break;
case OPT_CLAUSENORMALIZE_WEIGHT:
(*iw)[PCLOpClauseNormalize] = CLStateGetIntArg(handle, arg);
break;
case OPT_SPLITCLAUSE_WEIGHT:
(*iw)[PCLOpSplitClause] = CLStateGetIntArg(handle, arg);
break;
default:
assert(false);
break;
}
}
return state;
}
void print_help(FILE* out)
{
fprintf(out,
"\n"
"\n"
NAME " " VERSION "\n"
"\n"
"Usage: " NAME " [options] [files]\n"
"\n"
"Read an UPCL2 protocol and suggest certain steps as lemmas."
"\n");
PrintOptions(stdout, opts, "Options\n\n");
fprintf(out, "\n\
Copyright (C) 2003-2005 by Stephan Schulz, " STS_MAIL "\n\
\n\
This program is a part of the support structure for the E equational\n\
theorem prover. You can find the latest version of the E distribution\n\
as well as additional information at\n"
E_URL
"\n\n"
"This program is free software; you can redistribute it and/or modify\n\
it under the terms of the GNU General Public License as published by\n\
the Free Software Foundation; either version 2 of the License, or\n\
(at your option) any later version.\n\
\n\
This program is distributed in the hope that it will be useful,\n\
but WITHOUT ANY WARRANTY; without even the implied warranty of\n\
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n\
GNU General Public License for more details.\n\
\n\
You should have received a copy of the GNU General Public License\n\
along with this program (it should be contained in the top level\n\
directory of the distribution in the file COPYING); if not, write to\n\
the Free Software Foundation, Inc., 59 Temple Place, Suite 330,\n\
Boston, MA 02111-1307 USA\n\
\n\
The original copyright holder can be contacted as\n\
\n"
STS_SNAIL
"\n");
}
/*---------------------------------------------------------------------*/
/* End of File */
/*---------------------------------------------------------------------*/
|