@@ -73,7 +73,7 @@ public async Task<List<OWLInference>> ApplyToOntologyAsync(OWLOntology ontology,
7373 Rules = Rules . Distinct ( ) . ToList ( ) ;
7474
7575 #region Execute
76- OWLEvents . RaiseInfo ( $ "Launching OWL2/SWRL reasoner on ontology '{ ontology . IRI } '...") ;
76+ OWLEvents . RaiseInfo ( $ "Launching reasoner on ontology '{ ontology . IRI } '...") ;
7777
7878 #region Init registry & context
7979 //Initialize inference registry
@@ -259,15 +259,15 @@ await Task.WhenAll(clsAsnAxiomsTask, dtPropAsnAxiomsTask, opPropAsnAxiomsTask, s
259259 inferences . AddRange ( inferenceRegistry . SelectMany ( ir => ir . Value ?? emptyInferenceSet ) . Distinct ( ) ) ;
260260 #endregion
261261
262- OWLEvents . RaiseInfo ( $ "Completed OWL2/SWRL reasoner on ontology '{ ontology . IRI } ' => { inferences . Count } inferences") ;
262+ OWLEvents . RaiseInfo ( $ "Completed reasoner on ontology '{ ontology . IRI } ' => { inferences . Count } inferences") ;
263263 #endregion
264264
265265 #region Iterate
266266 if ( reasonerOptions . EnableIterativeReasoning
267267 && inferences . Count > 0
268268 && reasonerOptions . CurrentIteration < reasonerOptions . MaxAllowedIterations )
269269 {
270- OWLEvents . RaiseInfo ( $ "Merging inferences into ontology ' { ontology . IRI } ' (iteration: { reasonerOptions . CurrentIteration } )...") ;
270+ OWLEvents . RaiseInfo ( $ "Merging inferences (iteration: { reasonerOptions . CurrentIteration } )...") ;
271271 foreach ( IGrouping < Type , OWLInference > inferenceGroupType in inferences . GroupBy ( inf => inf . Axiom . GetType ( ) ) )
272272 {
273273 switch ( inferenceGroupType . Key . BaseType ? . Name )
@@ -294,7 +294,6 @@ await Task.WhenAll(clsAsnAxiomsTask, dtPropAsnAxiomsTask, opPropAsnAxiomsTask, s
294294 break ;
295295 }
296296 }
297- OWLEvents . RaiseInfo ( $ "Completed merging of inferences into ontology '{ ontology . IRI } ' (iteration: { reasonerOptions . CurrentIteration } )") ;
298297
299298 reasonerOptions . CurrentIteration ++ ;
300299 inferences . AddRange ( await ApplyToOntologyAsync ( ontology , reasonerOptions ) ) ;
0 commit comments