competitive/
lib.rs

1// #![warn(missing_docs)]
2#![allow(unknown_lints)]
3#![allow(clippy::many_single_char_names)]
4#![allow(clippy::missing_safety_doc)]
5#![allow(clippy::manual_div_ceil)] // FIXME: Remove this (supported since 1.73.0)
6#![allow(clippy::unnecessary_map_or)] // FIXME: Remove this (supported since 1.82.0)
7#![allow(clippy::manual_repeat_n)] // FIXME: Remove this (supported since 1.82.0)
8#![allow(clippy::manual_is_multiple_of)] // FIXME: Remove this (supported since 1.87.0)
9#![allow(clippy::collapsible_if)] // FIXME: Remove this (supported since 1.88.0)
10
11//! [github]
12//!
13//! [verification summary]
14//!
15//! [benchmarks]
16//!
17//! [github]: https://github.com/to-omer/competitive-library
18//! [verification summary]: ?search=verify
19//! [benchmarks]: ../benchmarks/report/index.html
20
21pub mod algebra;
22pub mod algorithm;
23pub mod combinatorial_optimization;
24pub mod data_structure;
25pub mod geometry;
26pub mod graph;
27pub mod heuristic;
28pub mod math;
29pub mod num;
30pub mod prelude;
31pub mod string;
32pub mod tools;
33pub mod tree;