Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/nicolasbizzozzero/nonogram
A nonogram/picross/griddler solver written in Python 3
https://github.com/nicolasbizzozzero/nonogram
griddler nonogram picross research-project solver tomography upmc
Last synced: about 21 hours ago
JSON representation
A nonogram/picross/griddler solver written in Python 3
- Host: GitHub
- URL: https://github.com/nicolasbizzozzero/nonogram
- Owner: NicolasBizzozzero
- License: gpl-3.0
- Created: 2017-11-29T20:09:34.000Z (almost 7 years ago)
- Default Branch: master
- Last Pushed: 2020-01-25T09:50:58.000Z (almost 5 years ago)
- Last Synced: 2024-04-24T00:42:20.185Z (7 months ago)
- Topics: griddler, nonogram, picross, research-project, solver, tomography, upmc
- Language: Python
- Homepage:
- Size: 6.77 MB
- Stars: 10
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.txt
Awesome Lists containing this project
README
# nonogram
# Installation
The following line will install the **nonogram** package on your computer and add an entry point to the software
```shell
~$ pip install nonogram
```# Usage
Launching the software is pretty straightforward. All the parameters have been already configured to help you during your day-to-day nonogram solving routine. Here's the command to use for solving the grid whose constraints has been saved in the file **constraints.txt** :
```shell
~$ nonogram constraints.txt
```# Requirements
The linear-programming solver need the Gurobi Optimizer software to be installed and properly configured.# Dependencies
* numpy ≥ 1.12.0
* docopt ≥ 0.6.2# Contributing
1. Fork the project.
2. Create your feature branch : `git checkout -b my-new-feature`.
3. Commit your changes : `git commit -am 'Added some cool feature !'`.
4. Push to the branch : `git push origin my-new-feature`.
5. Submit a pull request.# Todo
* Add the following parameters :
* encoding
* verbose (tell when a bloc has been placed)
* progressbar
* output = (stdout in raw format | picture in window | picture saved)
* picture_output_path
* grid_path (with an non-empty grid)
* Add a decorator outputing the current grid when a ctrl + c happen# Acknowledgments
We would like to thanks the **Pierre et Marie Curie University** (UPMC), for giving us the possibility and authorization to release this project.
We also want to thanks professor Bruno Escoffier for offering us the knowledge and oppoortunities needed to build this software.# License
This project is licensed under the GPLv3 License - see the [LICENSE.txt](LICENSE.txt) file for details.# References