GridSolverResult.java 383 B

1234567891011121314151617181920
  1. package holeg;
  2. public enum GridSolverResult {
  3. /**
  4. * An error occurred during the solving.
  5. */
  6. Error,
  7. /**
  8. * Any subgrid was not solved successfully.
  9. */
  10. PartialFailure,
  11. /**
  12. * All subgrids were solved successfully.
  13. */
  14. Solved,
  15. /**
  16. * The solving was interrupted (stopped). No solution was produced.
  17. */
  18. Interrupted
  19. }