File: Incremental.cpp

package info (click to toggle)
fact%2B%2B 1.6.5~dfsg-3
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, bullseye, forky, sid, trixie
  • size: 4,496 kB
  • sloc: cpp: 28,000; java: 22,674; xml: 3,268; makefile: 102; ansic: 61; sh: 3
file content (258 lines) | stat: -rw-r--r-- 8,443 bytes parent folder | download | duplicates (3)
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
/* This file is part of the FaCT++ DL reasoner
Copyright (C) 2013-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
*/

// incremental reasoning implementation

#include "Kernel.h"
#include "OntologyBasedModularizer.h"
#include "tOntologyPrinterLISP.h"
#include "procTimer.h"
#include "SaveLoadManager.h"	// for saving/restoring ontology

TsProcTimer moduleTimer, subCheckTimer;
int nModule = 0;

/// setup Name2Sig for a given name C
void
ReasoningKernel :: setupSig ( const TNamedEntity* entity, const AxiomVec& Module )
{
	// do nothing if entity doesn't exist
	if ( entity == NULL )
		return;

	moduleTimer.Start();
	// prepare a place to update
	TSignature sig;
	NameSigMap::iterator insert = Name2Sig.find(entity);
	if ( insert == Name2Sig.end() )
		insert = Name2Sig.insert(std::make_pair(entity,&sig)).first;
	else
		delete insert->second;

	// calculate a module
	sig.add(entity);
	getModExtractor(SYN_LOC_STD)->getModule(Module,sig,M_BOT);
	++nModule;

	// perform update
	insert->second = new TSignature(getModExtractor(SYN_LOC_STD)->getModularizer()->getSignature());

	moduleTimer.Stop();
}

/// build signature for ENTITY and all dependent entities from toProcess; look for modules in Module;
void
ReasoningKernel :: buildSignature ( const TNamedEntity* entity, const AxiomVec& Module, std::set<const TNamedEntity*>& toProcess )
{
	toProcess.erase(entity);
	setupSig ( entity, Module );
	const AxiomVec NewModule = getModExtractor(SYN_LOC_STD)->getModularizer()->getModule();
	if ( Module.size() == NewModule.size() )	// the same module
		return;
	// smaller module: recurse
	TSignature ModSig = getModExtractor(SYN_LOC_STD)->getModularizer()->getSignature();
	for ( TSignature::iterator p = ModSig.begin(), p_end = ModSig.end(); p != p_end; ++p )
		if ( toProcess.count(*p) > 0 )	// need to process
			buildSignature ( *p, NewModule, toProcess );
}

/// initialise the incremental bits on full reload
void
ReasoningKernel :: initIncremental ( void )
{
	delete ModSyn;
	ModSyn = NULL;
	// fill the module signatures of the concepts
	Name2Sig.clear();
	// found all entities
	std::set<const TNamedEntity*> toProcess;
	for ( TBox::c_const_iterator p = getTBox()->c_begin(), p_end = getTBox()->c_end(); p != p_end; ++p )
		toProcess.insert((*p)->getEntity());
	// process all entries recursively
	while ( !toProcess.empty() )
		buildSignature ( *toProcess.begin(), Ontology.getAxioms(), toProcess );


	getTBox()->setNameSigMap(&Name2Sig);
	// fill in ontology signature
	OntoSig = Ontology.getSignature();
	std::cout << "Init modules (" << nModule << ") time: " << moduleTimer << " sec" << std::endl;
}

void
ReasoningKernel :: doIncremental ( void )
{
	TsProcTimer total;
	total.Start();
	std::cout << "Incremental!\n";
	// re-set the modularizer to use updated ontology
	delete ModSyn;
	ModSyn = NULL;

	std::set<const TNamedEntity*> MPlus, MMinus;
	std::set<const TNamedEntry*> excluded;

	// detect new- and old- signature elements
	TSignature NewSig = Ontology.getSignature();
	TSignature::BaseType RemovedEntities, AddedEntities;
	std::set_difference(OntoSig.begin(), OntoSig.end(), NewSig.begin(), NewSig.end(), inserter(RemovedEntities, RemovedEntities.begin()));
	std::set_difference(NewSig.begin(), NewSig.end(), OntoSig.begin(), OntoSig.end(), inserter(AddedEntities, AddedEntities.begin()));

	Taxonomy* tax = getCTaxonomy();
//	std::cout << "Original Taxonomy:";
//	tax->print(std::cout);

	// deal with removed concepts
	TSignature::BaseType::iterator e, e_end;
	for ( e = RemovedEntities.begin(), e_end = RemovedEntities.end(); e != e_end; ++e )
		if ( const TConcept* C = dynamic_cast<const TConcept*>((*e)->getEntry()) )
		{
			excluded.insert(C);
			// remove all links
			C->getTaxVertex()->remove();
			// update Name2Sig
			delete Name2Sig[*e];
			Name2Sig.erase(*e);
		}

	// deal with added concepts
	tax->deFinalise();
	for ( e = AddedEntities.begin(), e_end = AddedEntities.end(); e != e_end; ++e )
		if ( const TDLConceptName* cName = dynamic_cast<const TDLConceptName*>(*e) )
		{
			// register the name in TBox
			TreeDeleter TD(this->e(cName));
			TConcept* C = dynamic_cast<TConcept*>(cName->getEntry());
			// create sig for it
			setupSig(cName);
			// init the taxonomy element
			TaxonomyVertex* cur = tax->getCurrent();
			cur->clear();
			cur->setSample(C);
			cur->addNeighbour ( /*upDirection=*/true, tax->getTopVertex() );
			tax->finishCurrentNode();
//			std::cout << "Insert " << C->getName() << std::endl;
		}
	OntoSig = NewSig;

	// fill in M^+ and M^- sets
	TsProcTimer t;
	t.Start();
	LocalityChecker* lc = getModExtractor(SYN_LOC_STD)->getModularizer()->getLocalityChecker();
	TOntology::iterator p, nb = Ontology.beginUnprocessed(), ne = Ontology.end(), rb = Ontology.beginRetracted(), re = Ontology.endRetracted();
//	TLISPOntologyPrinter pr(std::cout);
//	for ( p = nb; p != ne; ++p )
//	{
//		std::cout << "Add:";
//		(*p)->accept(pr);
//	}
//	for ( p = rb; p != re; ++p )
//	{
//		std::cout << "Del:";
//		(*p)->accept(pr);
//	}
	for ( NameSigMap::iterator p = Name2Sig.begin(), p_end = Name2Sig.end(); p != p_end; ++p )
	{
		lc->setSignatureValue(*p->second);
		for ( TOntology::iterator notProcessed = nb; notProcessed != ne; ++notProcessed )
			if ( !lc->local(*notProcessed) )
			{
				MPlus.insert(p->first);
//				std::cout << "Non-local NP axiom ";
//				(*notProcessed)->accept(pr);
//				std::cout << " wrt " << p->first->getName() << std::endl;
				break;
			}
		for ( TOntology::iterator retracted = rb; retracted != re; retracted++ )
			if ( !lc->local(*retracted) )
			{
				MMinus.insert(p->first);
				// FIXME!! only concepts for now
				TaxonomyVertex* v = dynamic_cast<const ClassifiableEntry*>(p->first->getEntry())->getTaxVertex();
				if ( v->noNeighbours(true) )
				{
					v->addNeighbour(true,tax->getTopVertex());
					tax->getTopVertex()->addNeighbour(false,v);
				}
//				std::cout << "Non-local RT axiom ";
//				(*retracted)->accept(pr);
//				std::cout << " wrt " << p->first->getName() << std::endl;
				break;
			}
	}
	t.Stop();
	std::cout << "Determine concepts that need reclassification: done in " << t << std::endl;

	// build changed modules
	std::set<const TNamedEntity*> toProcess(MPlus);
	toProcess.insert ( MMinus.begin(), MMinus.end() );
	// process all entries recursively
	while ( !toProcess.empty() )
		buildSignature ( *toProcess.begin(), Ontology.getAxioms(), toProcess );

	tax->finalise();
//	std::cout << "Adjusted Taxonomy:";
//	tax->print(std::cout);

	t.Reset();
	t.Start();
	// save taxonomy
	SaveLoadManager SLManager("Incremental");
	SLManager.prepare(/*input=*/false);
	// FIXME!! for now
	excluded.clear();
	getTBox()->SaveTaxonomy(SLManager,excluded);

	// do actual change
	useIncrementalReasoning = false;
	forceReload();
	pTBox->setNameSigMap(&Name2Sig);
	pTBox->isConsistent();
	useIncrementalReasoning = true;

	// load the taxonomy
	SLManager.prepare(/*input=*/true);
	getTBox()->LoadTaxonomy(SLManager);
	t.Stop();

	std::cout << "Reloading ontology: done in " << t << std::endl;

	tax = getCTaxonomy();
//	std::cout << "Reloaded Taxonomy:";
//	tax->print(std::cout);
//	std::cout.flush();

	subCheckTimer.Start();
	getTBox()->reclassify ( MPlus, MMinus );
	subCheckTimer.Stop();
	Ontology.setProcessed();
	total.Stop();
	std::cout << "Total modularization (" << nModule << ") time: " << moduleTimer << " sec\nTotal reasoning time: " << subCheckTimer
			  << " sec\nTotal reclassification time: " << total << " sec" << std::endl;
}

std::ostream&
operator << ( std::ostream& o, const TSignature& sig )
{
	o << "[";
	for ( TSignature::iterator p = sig.begin(), p_end = sig.end(); p != p_end; ++p )
		o << (*p)->getName() << " ";
	o << "]" << std::endl;
	return o;
}