Package org.mindswap.pellet.tableau.branch

Examples of org.mindswap.pellet.tableau.branch.MaxBranch


                return false;
            }
        }

        // add the list of possible pairs to be merged in the branch list
        MaxBranch newBranch = new MaxBranch( strategy.getABox(), strategy, x, r, k, c, mergePairs, ds );
        strategy.addBranch( newBranch );

        // try a merge that does not trivially fail
        if( newBranch.tryNext() == false )
            return false;

        if( log.isLoggable( Level.FINE ) )
            log.fine( "hasMore: " + (n > k + 1) );
View Full Code Here

TOP

Related Classes of org.mindswap.pellet.tableau.branch.MaxBranch

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.