1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
// SPDX-FileCopyrightText: 2022 Thomas Kramer <code@tkramer.ch> // // SPDX-License-Identifier: AGPL-3.0-or-later //! Traits and implementations of truth-tables. pub(crate) mod bitflip_iter; pub mod canonization; mod gray_code_flips; mod npn_transform; mod permutation_gray_code; mod permutation_iter; pub mod small_lut; mod static_lut; // experimental mod traits; pub use traits::*;