Package aima.core.search.nondeterministic

Examples of aima.core.search.nondeterministic.IfStateThenPlan


        this.stack.pop();
      }
      return this.execute(percept);
    } // case: next step is an if-then
    else if (currentStep instanceof IfStateThenPlan) {
      IfStateThenPlan conditional = (IfStateThenPlan) this.stack.pop();
      this.stack.push(conditional.ifStateMatches(percept));
      return this.execute(percept);
    } // case: ignore next step if null
    else if (currentStep == null) {
      this.stack.pop();
      return this.execute(percept);
View Full Code Here

TOP

Related Classes of aima.core.search.nondeterministic.IfStateThenPlan

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.