Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/vigsterkr/sudoker
Sudoku solver framework in C++
https://github.com/vigsterkr/sudoker
Last synced: about 2 months ago
JSON representation
Sudoku solver framework in C++
- Host: GitHub
- URL: https://github.com/vigsterkr/sudoker
- Owner: vigsterkr
- License: bsd-2-clause
- Created: 2014-11-04T06:34:44.000Z (about 10 years ago)
- Default Branch: master
- Last Pushed: 2014-11-04T06:36:47.000Z (about 10 years ago)
- Last Synced: 2024-10-15T22:48:56.146Z (3 months ago)
- Language: C++
- Size: 137 KB
- Stars: 0
- Watchers: 4
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Sudoker
A simple Sudoku solver framework written in C++.
## Compile
In order to compile the source the, apart from the basic development environment (like a compiler), the
following two packages are required:
* [Eigen](http://eigen.tuxfamily.org/index.php?title=Main_Page), minimum version 3.1.2
* [CMake](http://www.cmake.org/)In case of a debian system you would need to run the following command:
```
sudo apt-get install libeigen3-dev cmake
```Once you have the required packages installed you run the following commands to compile the source:
```
mkdir build
cd build
cmake ..
make
```## Running
----------
After successfully compiling the source, you can run the solver by:
```
cd build
./sudoker
```