libreda-logic 0.0.3

Logic library for LibrEDA.
Documentation
// SPDX-FileCopyrightText: 2022 Thomas Kramer <code@tkramer.ch>
//
// SPDX-License-Identifier: AGPL-3.0-or-later

//! This crate contains the core functionality for dealing with logic functions in the LibrEDA framework.
//!
//! # References
//! Some unordered list of literature:
//! * "Logic Design and Switching Theory" <https://archive.org/details/logicdesignswitc00muro>

#![deny(missing_docs)]
#![deny(unused_imports)]

pub mod adaptors;
pub mod algorithms;
mod bitmanip;
mod helpers;
mod linked_lists;
pub mod logic_value;
pub mod native_boolean_functions;
pub mod network;
pub mod network_simulator;
pub mod networks;
mod slab_alloc;
pub mod traits;
pub mod truth_table;