Package mines.MineSolver

Examples of mines.MineSolver.FIELD_SOLVE_RESULT


  boolean solveFields(List<Coord> coveredCoords) {
    boolean continueTesting = false;

    try {
      for(Coord coveredCoord : coveredCoords) {
        FIELD_SOLVE_RESULT result = mSolver.solveOneField(coveredCoord);

        switch(result) {
          case UNKNOWN:
          break;
View Full Code Here

TOP

Related Classes of mines.MineSolver.FIELD_SOLVE_RESULT

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.