Package com.clarkparsia.pellet.rules

Examples of com.clarkparsia.pellet.rules.ContinuousRulesStrategy


    // We don't need to use rules strategy if we are checking concept satisfiability unless
    // there are nominals because then rules may affect concept satisfiability and we need
    // to use rules strategy
    if( getRules().size() > 0 && (expressivity.hasNominal() || !conceptSatisfiability) ) {
      if( PelletOptions.USE_CONTINUOUS_RULES ) {
        return new ContinuousRulesStrategy( abox );
      }
      else {
        return new RuleStrategy( abox );
      }
    }
View Full Code Here


   
    // We don't need to use rules strategy if we are checking concept satisfiability unless
    // there are nominals because then rules may affect concept satisfiability and we need
    // to use rules strategy
    if( getRules().size() > 0 && (expressivity.hasNominal() || !conceptSatisfiability) ) {
      return new ContinuousRulesStrategy( abox );
    }
   
    boolean fullDatatypeReasoning = PelletOptions.USE_FULL_DATATYPE_REASONING
        && (expressivity.hasCardinalityD() || expressivity.hasKeys());
View Full Code Here

TOP

Related Classes of com.clarkparsia.pellet.rules.ContinuousRulesStrategy

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.