Package org.mindswap.pellet.utils.intset

Examples of org.mindswap.pellet.utils.intset.IntSet


   * @param ds
   * @param doExplanation
   * @return
   */
  public DependencySet union(DependencySet ds, boolean doExplanation) {
    IntSet newDepends = depends.union( ds.depends );
    Set<ATermAppl> newExplain;
   
    if( doExplanation ) {
      newExplain = SetUtils.union( explain, ds.explain );
    }
View Full Code Here

TOP

Related Classes of org.mindswap.pellet.utils.intset.IntSet

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.