1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
// Copyright 2014 Dawid Ciężarkiewicz
// See LICENSE file for more information

//! Dpc's hacky extensions

#![warn(missing_docs)]

extern crate num;
extern crate rand;
extern crate hex2d;

/// Useful algorithms
pub mod algo;

#[cfg(test)]
mod test;