Package com.clarkparsia.pellet.rules.builtins

Examples of com.clarkparsia.pellet.rules.builtins.NumericPromotion.accept()


  private void numeric( NumericFunction f, Number expected, Number... args ) {
    NumericPromotion promoter = new NumericPromotion();
    promoter.promote( args );
   
    FunctionApplicationVisitor visitor = new FunctionApplicationVisitor( f );
    promoter.accept( visitor );
    Number result = visitor.getResult();
   
    if( expected == null ) {
      assertNull( result );
    }
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.