1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
#![allow(
    unused_assignments,
    clippy::needless_range_loop,
    clippy::identity_op,
    clippy::collapsible_if,
    clippy::too_many_arguments,
    clippy::if_same_then_else,
    clippy::declare_interior_mutable_const,
    clippy::manual_range_contains,
    clippy::format_in_format_args,
    clippy::question_mark,
    clippy::manual_range_patterns
)]

//! The main page of the Inanis documentation. Feel free to explore it by going into the specific module below,
//! or by clicking "See all inanis's items" on the left panel to see every possible item.
//!
//! Homepage: <https://github.com/Tearth/Inanis>

pub mod cache;
pub mod engine;
pub mod evaluation;
pub mod interface;
pub mod perft;
pub mod state;
pub mod tablebases;
pub mod testing;
pub mod tuning;
pub mod utils;