1
0
Fork
You've already forked sudoku
0
Scheduling tool using constraint propagation similar to a sudoku solver. Takes a list of workers and their availability as well as a list of shifts and generates the optimal schedule given the constraints.
  • Python 100%
2025年03月13日 13:35:13 -07:00
.vscode First commit, sudoku solver is apparently working but is not tested 2025年02月24日 16:29:58 -08:00
tests fixed bug when nobody is assigned 2025年03月13日 13:35:13 -07:00
.gitignore fixed bug when nobody is assigned 2025年03月13日 13:35:13 -07:00
__init__.py added test and seems to produce valid results although it's not very strict with the max-hours constraint for each worker 2025年02月24日 17:42:25 -08:00
README.md added test and seems to produce valid results although it's not very strict with the max-hours constraint for each worker 2025年02月24日 17:42:25 -08:00
sudoku.py fixed bug when nobody is assigned 2025年03月13日 13:35:13 -07:00

Sudoku Schedule Solver

Scheduling tool using constraint propagation similar to a sudoku solver. Takes a list of workers and their availability as well as a list of shifts and generates the optimal schedule given the constraints.

Usage

See tests for reference of how to use.