Examples of markBlocked()


Examples of aima.core.environment.cellworld.CellWorld.markBlocked()

  public static MDP<CellWorldPosition, String> createFourByThreeMDP() {

    CellWorld cw = new CellWorld(3, 4, 0.4);
    cw = new CellWorld(3, 4, -0.04);

    cw.markBlocked(2, 2);

    cw.setTerminalState(2, 4);
    cw.setReward(2, 4, -1);

    cw.setTerminalState(3, 4);
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.