Package stanfordlogic.prover

Examples of stanfordlogic.prover.ProofContext


        KnowledgeBase rootState = new BasicKB();
        for (GroundFact ground : currentState_.getIterable()) {
            rootState.setTrue(ground);
        }
        // ... and the proof contex to go with it
        ProofContext rootContext = new ProofContext(rootState, parser_);
       
        // Run the minimax search.
       
        try {
            searchResult = minimaxSearch(rootState, rootContext, 0);
View Full Code Here


       
        for (GroundFact next: nexts) {
            newState.setTrue(trueProcessor_.processFact(next));
        }
       
        ProofContext newContext = new ProofContext(newState, parser_);
       
        // Run the recursive search
        Pair<Term, Integer> result = minimaxSearch(newState, newContext, currentDepth+1);
       
        // Remove the moves
View Full Code Here

TOP

Related Classes of stanfordlogic.prover.ProofContext

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.