Skip to content

Latest commit

 

History

History
32 lines (18 loc) · 1.33 KB

README.md

File metadata and controls

32 lines (18 loc) · 1.33 KB

crates.io

Documentation

Combinatorial Patterns in Rust

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.

Latin Squares

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.

Usage

Just add combinatorial_patterns to your Cargo.toml.

Things To Do:

  • 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