libreda_logic/lib.rs
1// SPDX-FileCopyrightText: 2022 Thomas Kramer <code@tkramer.ch>
2//
3// SPDX-License-Identifier: AGPL-3.0-or-later
4
5//! This crate contains the core functionality for dealing with logic functions in the LibrEDA framework.
6//!
7//! # References
8//! Some unordered list of literature:
9//! * "Logic Design and Switching Theory" <https://archive.org/details/logicdesignswitc00muro>
10
11#![deny(missing_docs)]
12#![deny(unused_imports)]
13
14pub mod adaptors;
15pub mod algorithms;
16mod bitmanip;
17mod helpers;
18mod linked_lists;
19pub mod logic_value;
20pub mod native_boolean_functions;
21pub mod network;
22pub mod network_simulator;
23pub mod networks;
24mod slab_alloc;
25pub mod traits;
26pub mod truth_table;