This project is meant to maintain rust implementations of combinatorial patterns.
If you have any alternative solutions to any implemented solutions, or want to add a new pattern, please feel free to contribue.
Development may appear stagnant, but it isn't out of lack of interest, but rather out of any need to implement solutions problems in this niche sector of mathematics. If a reason to do so arrises, it will be done.
Currently, only Latin Square generation is implemented.
Usage and implementation details can be found in rust docs.
Specifics of latin squares can be found on wikipedia.
The implemented solution is not the most efficient method, but it is the easiest to understand.
Just add combinatorial_patterns to your Cargo.toml
.
- Improve latin square generation to use more efficient methods
- Improve latin square functionality to allow for latin rectangles, and toggleable requirements for balance.
- Implement unit tests
- Start work on Graph Theory