1
2
3
4
5
6
7
8
9
#![deny(missing_docs)]
//! A solver for [packing problems](https://en.wikipedia.org/wiki/Packing_problems).
//!
//! Packing problems are
//! > a class of optimization problems in mathematics that involve attempting to
//! > pack objects together into containers.

pub mod puzzle;
pub mod util;