Examples of prepareReasoner()


Examples of com.clarkparsia.pellet.owlapiv3.PelletReasoner.prepareReasoner()

    OWLNamedIndividual Remus = Individual( ns + "Remus" );
    OWLNamedIndividual Romulus = Individual( ns + "Romulus" );

    for( int test = 0; test < 2; test++ ) {
      if( test != 0 ) {
              reasoner.prepareReasoner();
            }

      assertTrue( reasoner.isEntailed( propertyAssertion( Abel, sibling, Cain ) ) );

      assertPropertyValues( reasoner, Abel, sibling, Cain);
View Full Code Here

Examples of com.clarkparsia.pellet.owlapiv3.PelletReasoner.prepareReasoner()

    OWLIndividual Bob = Individual( ns + "Bob" );
    OWLIndividual Charlie = Individual( ns + "Charlie" );

    for( int test = 0; test < 1; test++ ) {
      if( test != 0 ) {
              reasoner.prepareReasoner();
            }

      assertIteratorValues( reasoner.getInstances( DreamTeamMember, false ).getFlattened().iterator(),
          new Object[] { Alice, Bob, Charlie } );
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.