1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
//! # The Competitive Programming Library in Rust
//! The Competitive Programming Library in Rust is a set of snippets,
//! which can be used in programming contests.

#![feature(test)]

extern crate test;

extern crate num_traits;

/// Algorithms related to graph theory.
pub mod graph;

/// Structures that can efficiently operate data.
pub mod data_structure;

/// Mathematical algorithms.
pub mod math;

/// Geometry algorithms.
pub mod geometry;

/// Utilities for tests, stdin, and so on.
pub mod utils;