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
|
/* This file is part of the FaCT++ DL reasoner
Copyright (C) 2003-2015 Dmitry Tsarkov and The University of Manchester
Copyright (C) 2015-2016 Dmitry Tsarkov
This library is free software; you can redistribute it and/or
modify it under the terms of the GNU Lesser General Public
License as published by the Free Software Foundation; either
version 2.1 of the License, or (at your option) any later version.
This library 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 GNU
Lesser General Public License for more details.
You should have received a copy of the GNU Lesser General Public
License along with this library; if not, write to the Free Software
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/
#include "dlTBox.h"
#include <fstream>
#include "procTimer.h"
#include "logging.h"
//#define DEBUG_PREPROCESSING
#ifdef DEBUG_PREPROCESSING
# define BEGIN_PASS(str) std::cerr << "\n" str "... "
# define END_PASS() std::cerr << "done"
#else
# define BEGIN_PASS(str)
# define END_PASS()
#endif
void TBox :: Preprocess ( void )
{
if ( verboseOutput )
std::cerr << "Preprocessing...";
TsProcTimer pt;
pt.Start();
// builds role hierarchy
BEGIN_PASS("Build role hierarchy");
ORM.initAncDesc();
DRM.initAncDesc();
END_PASS();
if ( verboseOutput )
{
std::ofstream oroles("Taxonomy.ORoles");
ORM.getTaxonomy()->print(oroles);
std::ofstream droles("Taxonomy.DRoles");
DRM.getTaxonomy()->print(droles);
}
// all concept descriptions contains synonyms. Remove them now
BEGIN_PASS("Replace synonyms in expressions");
if ( countSynonyms() > 0 )
replaceAllSynonyms();
END_PASS();
// preprocess Related structure (before classification tags are defined)
BEGIN_PASS("Preprocess related axioms");
preprocessRelated();
END_PASS();
// FIXME!! find a proper place for this
TransformExtraSubsumptions();
// init told subsumers as they would be used soon
BEGIN_PASS("Init told subsumers");
initToldSubsumers();
END_PASS();
// locate told (definitional) cycles and transform them into synonyms
BEGIN_PASS("Detect and replace told cycles");
transformToldCycles();
END_PASS();
// detect singleton with singleton parents and make them synonyms
BEGIN_PASS("Detect and transform singleton hierarchy");
transformSingletonHierarchy();
END_PASS();
// absorb axioms (move some Axioms to Role and Concept Description)
BEGIN_PASS("Perform absorption");
AbsorbAxioms();
END_PASS();
// set told TOP concepts whether necessary
BEGIN_PASS("Set told TOP");
setToldTop();
END_PASS();
// no more axiom transformations allowed
// create DAG (concept normalisation etc)
BEGIN_PASS("Build DAG");
buildDAG();
END_PASS();
// fills classification tag (strictly after told cycles)
BEGIN_PASS("Detect classification tags");
fillsClassificationTag();
END_PASS();
// set up TS depth
BEGIN_PASS("Calculate told subsumer depth");
calculateTSDepth();
END_PASS();
// set indexes for model caching
BEGIN_PASS("Set all indexes");
setAllIndexes();
END_PASS();
// create sorts for KB
BEGIN_PASS("Determine sorts");
determineSorts();
END_PASS();
// calculate statistic for the whole KB:
BEGIN_PASS("Gather relevance info");
gatherRelevanceInfo();
END_PASS();
// here it is safe to print KB features (all are known; the last one was in Relevance)
printFeatures();
// GALEN-like flag is known here, so we can set OR defaults
BEGIN_PASS("Set defaults for OR orderings");
DLHeap.setOrderDefaults (
isGalenLikeTBox() ? "Fdn" : isWineLikeTBox() ? "Sdp" : "Sap", // SAT settings
isGalenLikeTBox() ? "Ban" : isWineLikeTBox() ? "Fdn" : "Dap" // SUB settings
);
END_PASS();
// now we can gather DAG statistics (if necessary)
BEGIN_PASS("Gather usage statistics");
DLHeap.gatherStatistic();
END_PASS();
// calculate statistic on DAG and Roles
BEGIN_PASS("Gather concept-related statistics");
CalculateStatistic();
END_PASS();
// free extra memory
BEGIN_PASS("Free unused memory");
RemoveExtraDescriptions();
END_PASS();
pt.Stop();
preprocTime = pt;
if ( verboseOutput )
std::cerr << " done in " << pt << " seconds\n";
}
static bool
replaceSynonymsFromTree ( DLTree* desc )
{
if ( desc == NULL )
return false;
if ( isName(desc) )
{
TLexeme& cur = desc->Element(); // not const
ClassifiableEntry* entry = static_cast<ClassifiableEntry*>(cur.getNE());
if ( entry->isSynonym() )
{
entry = resolveSynonym(entry);
// check for TOP/BOTTOM
if ( entry->isTop() )
cur = TLexeme(TOP);
else if ( entry->isBottom() )
cur = TLexeme(BOTTOM);
else
cur = TLexeme ( static_cast<TConcept*>(entry)->isSingleton() ? INAME : CNAME, entry );
return true;
}
else
return false;
}
else
{
bool ret = replaceSynonymsFromTree ( desc->Left() );
ret |= replaceSynonymsFromTree ( desc->Right() );
return ret;
}
}
void TBox :: replaceAllSynonyms ( void )
{
// replace synonyms in role's domain
for ( RoleMaster::iterator r = ORM.begin(), r_end = ORM.end(); r < r_end; ++r )
if ( !(*r)->isSynonym() )
replaceSynonymsFromTree ( (*r)->getTDomain() );
for ( RoleMaster::iterator dr = DRM.begin(), dr_end = DRM.end(); dr < dr_end; ++dr )
if ( !(*dr)->isSynonym() )
replaceSynonymsFromTree ( (*dr)->getTDomain() );
for ( c_iterator pc = c_begin(); pc != c_end(); ++pc )
if ( replaceSynonymsFromTree ( (*pc)->Description ) )
(*pc)->initToldSubsumers();
for ( i_iterator pi = i_begin(); pi != i_end(); ++pi )
if ( replaceSynonymsFromTree ( (*pi)->Description ) )
(*pi)->initToldSubsumers();
}
void TBox :: preprocessRelated ( void )
{
for ( RelatedCollection::iterator q = RelatedI.begin(), q_end = RelatedI.end(); q != q_end; ++q )
(*q)->simplify();
}
void TBox :: transformToldCycles ( void )
{
// remember number of synonyms appeared in KB
unsigned int nSynonyms = countSynonyms();
clearRelevanceInfo();
for ( c_iterator pc = c_begin(); pc != c_end(); ++pc )
if ( !(*pc)->isSynonym() )
checkToldCycle(*pc);
for ( i_iterator pi = i_begin(); pi != i_end(); ++pi )
if ( !(*pi)->isSynonym() )
checkToldCycle(*pi);
clearRelevanceInfo();
// update nymber of synonyms
nSynonyms = countSynonyms() - nSynonyms;
if ( nSynonyms )
{
if ( LLM.isWritable(llAlways) )
LL << "\nTold cycle elimination done with " << nSynonyms << " synonyms created";
replaceAllSynonyms();
}
}
TConcept* TBox :: checkToldCycle ( TConcept* p )
{
fpp_assert ( p != NULL ); // safety check
// resolve synonym (if happens) to prevent cases like A[=B[=C[=A, A[=D[=B
p = resolveSynonym(p);
// no reason to process TOP here
if ( p == pTop )
return NULL;
// if we found a cycle...
if ( CInProcess.find(p) != CInProcess.end() )
{
// std::cout << "Cycle with " << p->getName() << std::endl;
return p;
}
if ( isRelevant(p) )
{
// std::cout << "Already checked: " << p->getName() << std::endl;
return NULL;
}
TConcept* ret = NULL;
// add concept in processing
CInProcess.insert(p);
redo:
// std::cout << "Start from " << p->getName() << std::endl;
for ( ClassifiableEntry::const_iterator r = p->told_begin(); r != p->told_end(); ++r )
// if cycle was detected
if ( (ret = checkToldCycle(static_cast<TConcept*>(*r))) != NULL )
{
if ( ret == p )
{
// std::cout << "Fill cycle with " << p->getName() << std::endl;
ToldSynonyms.push_back(p);
std::vector<TConcept*>::iterator q, q_end = ToldSynonyms.end();
// find a representative for the cycle; nominal is preferable
for ( q = ToldSynonyms.begin(); q < q_end; ++q )
if ( (*q)->isSingleton() )
p = *q;
// now p is a representative for all the synonyms
// fill the description
DLTree* desc = NULL;
for ( q = ToldSynonyms.begin(); q < q_end; ++q )
if ( *q != p ) // make it a synonym of RET, save old desc
{
desc = createSNFAnd ( desc, makeNonPrimitive ( *q, getTree(p) ) );
// check whether we had an extra definition for Q
ConceptDefMap::iterator extra = ExtraConceptDefs.find(*q);
if ( extra != ExtraConceptDefs.end() )
{
desc = createSNFAnd ( desc, extra->second );
ExtraConceptDefs.erase(extra);
}
}
ToldSynonyms.clear();
// mark the returned concept primitive (to allow addDesc to work)
p->setPrimitive();
p->addDesc(desc);
// replace all synonyms with TOP
p->removeSelfFromDescription();
// re-run the search starting from new sample
if ( ret != p ) // need to fix the stack
{
CInProcess.erase(ret);
CInProcess.insert(p);
ret->setRelevant(relevance);
p->dropRelevant(relevance);
}
ret = NULL;
goto redo;
}
else
{
ToldSynonyms.push_back(p);
// no need to continue; finish with this cycle first
break;
}
}
// remove processed concept from set
CInProcess.erase(p);
p->setRelevant(relevance);
// std::cout << "Done with " << p->getName() << std::endl;
return ret;
}
/// transform i [= C [= j into i=C=j for i,j nominals
void
TBox :: transformSingletonHierarchy ( void )
{
// remember number of synonyms appeared in KB
unsigned int nSynonyms = countSynonyms();
// cycle until no new synonyms are created
bool changed;
do
{
changed = false;
for ( i_iterator pi = i_begin(); pi != i_end(); ++pi )
if ( !(*pi)->isSynonym() && (*pi)->isHasSP() )
{
TIndividual* i = transformSingletonWithSP(*pi);
i->removeSelfFromDescription();
changed = true;
}
} while ( changed );
// update nymber of synonyms
nSynonyms = countSynonyms() - nSynonyms;
if ( nSynonyms )
replaceAllSynonyms();
}
/// helper to the transformSingletonWithSP() function
TIndividual*
TBox :: getSPForConcept ( TConcept* p )
{
for ( ClassifiableEntry::const_iterator r = p->told_begin(); r != p->told_end(); ++r )
{
TConcept* i = static_cast<TConcept*>(*r);
if ( i->isSingleton() ) // found the end of the chain
return static_cast<TIndividual*>(i);
if ( i->isHasSP() ) // found the continuation of the chain
return transformSingletonWithSP(i);
}
// will always found the entry
fpp_unreachable();
}
/// make P and all its non-singleton parents synonyms to its singleton parent
TIndividual*
TBox :: transformSingletonWithSP ( TConcept* p )
{
TIndividual* i = getSPForConcept(p);
// make p a synonym of i
if ( p->isSingleton() )
i->addRelated(static_cast<TIndividual*>(p));
addSubsumeAxiom ( i, makeNonPrimitive ( p, getTree(i) ) );
return i;
}
/// @return true if C is referenced in TREE; use PROCESSED to record explored names
bool
TBox :: isReferenced ( TConcept* C, DLTree* tree, ConceptSet& processed )
{
fpp_assert ( tree != NULL );
switch ( tree->Element().getToken() )
{
// names
case CNAME:
case INAME:
{
TConcept* D = toConcept(tree->Element().getNE());
// check whether we found cycle
if ( C == D )
return true;
// check if we already processed D
if ( processed.count(D) > 0 )
return false;
// recurse here
return isReferenced ( C, D, processed );
}
// binary concept operations
case AND:
case OR:
return isReferenced ( C, tree->Left(), processed ) || isReferenced ( C, tree->Right(), processed );
// operations with a single concept
case NOT:
return isReferenced ( C, tree->Left(), processed );
case EXISTS:
case FORALL:
case GE:
case LE:
return isReferenced ( C, tree->Right(), processed );
// operations w/o concept
case SELF:
case TOP:
case BOTTOM:
return false;
// non-concept expressions: should not be here
case INV:
case RCOMPOSITION: // role composition
case PROJINTO: // role projection into
case PROJFROM: // role projection from
case DATAEXPR: // any data expression: data value, [constrained] datatype
case RNAME:
case DNAME:
fpp_unreachable();
default: // just for safety: all possible options were checked
fpp_unreachable();
}
return false;
}
/// transform C [= E with C = D into GCIs
void
TBox :: TransformExtraSubsumptions ( void )
{
for ( ConceptDefMap::iterator p = ExtraConceptDefs.begin(), p_next = p, p_end = ExtraConceptDefs.end(); p != p_end; )
{
++p_next;
TConcept* C = p->first;
DLTree* E = p->second;
// for every C here we have C = D in KB and C [= E in ExtraDefs
// if there is a cycle for C
if ( isCyclic(C) )
{
DLTree* D = clone(C->Description);
// then we should make C [= (D and E) and go with GCI D [= C
makeDefinitionPrimitive ( C, E, D );
}
else // it is safe to keep definition C = D and go with GCI C [= E
processGCI ( getTree(C), E );
// remove processed entry from the set. This will invalidate p, so use p_next
ExtraConceptDefs.erase(p);
p = p_next;
}
}
void
TBox :: setAllIndexes ( void )
{
++nC; // place for the query concept
nR = 1; // start with 1 to make index 0 an indicator of "not processed"
RoleMaster::iterator r, r_end;
for ( r = ORM.begin(), r_end = ORM.end(); r < r_end; ++r )
if ( !(*r)->isSynonym() )
(*r)->setIndex(nR++);
for ( r = DRM.begin(), r_end = DRM.end(); r < r_end; ++r )
if ( !(*r)->isSynonym() )
(*r)->setIndex(nR++);
}
/// determine all sorts in KB (make job only for SORTED_REASONING)
void TBox :: determineSorts ( void )
{
#ifdef RKG_USE_SORTED_REASONING
// Related individuals does not appears in DLHeap,
// so their sorts shall be determined explicitely
for ( RelatedCollection::const_iterator p = RelatedI.begin(), p_end = RelatedI.end(); p < p_end; ++p, ++p )
DLHeap.updateSorts ( (*p)->a->pName, (*p)->R, (*p)->b->pName );
// simple rules needs the same treatement
for ( TSimpleRules::iterator q = SimpleRules.begin(); q < SimpleRules.end(); ++q )
{
mergableLabel& lab = DLHeap[(*q)->bpHead].getSort();
for ( ConceptVector::const_iterator r = (*q)->Body.begin(), r_end = (*q)->Body.end(); r < r_end; ++r )
DLHeap.merge ( lab, (*r)->pName );
}
// create sorts for concept and/or roles
DLHeap.determineSorts ( ORM, DRM );
#endif // RKG_USE_SORTED_REASONING
}
// Told staff used, so run this AFTER fillTold*()
void TBox :: CalculateStatistic ( void )
{
unsigned int npFull = 0, nsFull = 0; // number of completely defined concepts
unsigned int nPC = 0, nNC = 0, nSing = 0; // number of primitive, non-prim and singleton concepts
unsigned int nNoTold = 0; // number of concepts w/o told subsumers
// calculate statistic for all concepts
for ( c_const_iterator pc = c_begin(); pc != c_end(); ++pc )
{
const TConcept* n = *pc;
// check if concept is not relevant
if ( !isValid(n->pName) )
continue;
if ( n->isPrimitive() )
++nPC;
else if ( n->isNonPrimitive() )
++nNC;
if ( n->isSynonym () )
++nsFull;
if ( n->isCompletelyDefined() )
{
if ( n->isPrimitive() )
++npFull;
}
else
if ( !n->hasToldSubsumers() )
++nNoTold;
}
// calculate statistic for all individuals
for ( i_const_iterator pi = i_begin(); pi != i_end(); ++pi )
{
const TConcept* n = *pi;
// check if concept is not relevant
if ( !isValid(n->pName) )
continue;
++nSing;
if ( n->isPrimitive() )
++nPC;
else if ( n->isNonPrimitive() )
++nNC;
if ( n->isSynonym () )
++nsFull;
if ( n->isCompletelyDefined() )
{
if ( n->isPrimitive() )
++npFull;
}
else
if ( !n->hasToldSubsumers() )
++nNoTold;
}
// FIXME!! check if we can skip all statistic if no logging needed
CHECK_LL_RETURN(llAlways);
LL << "There are " << nPC << " primitive concepts used\n";
LL << " of which " << npFull << " completely defined\n";
LL << " and " << nNoTold << " has no told subsumers\n";
LL << "There are " << nNC << " non-primitive concepts used\n";
LL << " of which " << nsFull << " synonyms\n";
LL << "There are " << nSing << " individuals or nominals used\n";
}
void TBox::RemoveExtraDescriptions ( void )
{
// remove DLTree* from all named concepts
for ( c_iterator pc = c_begin(); pc != c_end(); ++pc )
(*pc)->removeDescription ();
for ( i_iterator pi = i_begin(); pi != i_end(); ++pi )
(*pi)->removeDescription ();
}
|