m_MaxTreeSize = value;
}
public List<Lint> match(OWLOntology ontology) {
m_AccumulatedLints = new ArrayList<Lint>();
m_LintFactory = new LintFactory(this, ontology);
//Stage 1 - strongly connected components on asserted existential relations
OptimizedDirectedMultigraph<OWLClass> existentialRestrictionGraph = extractGraphFromSubsumptionAxiomsWith(ontology, new ExistentialClassCollector());
estimateTreeSizesForCycles(existentialRestrictionGraph);
if (!m_AccumulatedLints.isEmpty()) return m_AccumulatedLints;