https://github.com/flothinkspi/heyawake-solver
This solver calculates the solution for the japanese puzzle "heyawake", like sudoku solvers do. Study Project.
https://github.com/flothinkspi/heyawake-solver
bsd-license heyawake java java-8 puzzle-solver solver study-project
Last synced: 10 months ago
JSON representation
This solver calculates the solution for the japanese puzzle "heyawake", like sudoku solvers do. Study Project.
- Host: GitHub
- URL: https://github.com/flothinkspi/heyawake-solver
- Owner: FloThinksPi
- License: bsd-2-clause
- Created: 2017-02-16T10:15:53.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2017-02-16T19:20:02.000Z (over 9 years ago)
- Last Synced: 2025-06-18T17:51:01.178Z (about 1 year ago)
- Topics: bsd-license, heyawake, java, java-8, puzzle-solver, solver, study-project
- Language: Java
- Homepage:
- Size: 21.5 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
Heyawake Solver in Java
============
This solver solves heyawake puzzles, read more about heyawake here: https://en.wikipedia.org/wiki/Heyawake
You can play some games here: http://www.janko.at/Raetsel/Heyawake/
The puzzle to solve has to be hardcoded in `config.java`
- The first matrix describes the rooms of the puzzle trough numbering them.
- The second matrix describes what values are at wich position in the puzzle.
- Lastly change the variables `activeBlackCountMatrix` and `activeRoomMatrix` to the puzzle which you want to solve.
BSD 2-Clause License
============
Copyright (c) 2016, Florian Braun
All rights reserved.
Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions are met:
* Redistributions of source code must retain the above copyright notice, this
list of conditions and the following disclaimer.
* Redistributions in binary form must reproduce the above copyright notice,
this list of conditions and the following disclaimer in the documentation
and/or other materials provided with the distribution.
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.