Package org.semanticweb.owlapi.metrics

Examples of org.semanticweb.owlapi.metrics.AverageAssertedNamedSuperclassCount


        assertEquals("TurtleOntologyParser",
                new TurtleOntologyParser().getName());
        OWLOntology createOntology = OWLManager.createOWLOntologyManager()
                .createOntology();
        assertEquals("Average number of named superclasses",
                new AverageAssertedNamedSuperclassCount(createOntology)
                        .getName());
        assertEquals("Axiom", new AxiomCount(createOntology).getName());
        assertEquals("Hidden GCI Count",
                new HiddenGCICount(createOntology).getName());
        assertEquals("Imports closure size", new ImportClosureSize(
View Full Code Here

TOP

Related Classes of org.semanticweb.owlapi.metrics.AverageAssertedNamedSuperclassCount

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.