Package com.clarkparsia.pellint.model

Examples of com.clarkparsia.pellint.model.LintFactory


    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;
View Full Code Here

TOP

Related Classes of com.clarkparsia.pellint.model.LintFactory

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.