Examples of GetDisjointClasses


Examples of org.semanticweb.owlapi.owllink.builtin.requests.GetDisjointClasses

  }
 
  @Test
  public final void testGetDisjointClasses() throws OWLReasonerRuntimeException {
    for( OWLClassExpression x : ontology.getClassesInSignature() ) {
      ClassSynsets expected = referenceReasoner.answer(new GetDisjointClasses(referenceReasoner.getDefaultKB(), x));
      ClassSynsets actual = heraklesReasoner.answer(new GetDisjointClasses(heraklesReasoner.getDefaultKB(), x));     
      assertEquals( expected.getFlattened(), actual.getFlattened() )
    }
  }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.