fullcodec_plonk/plonkup.rs
1// This Source Code Form is subject to the terms of the Mozilla Public
2// License, v. 2.0. If a copy of the MPL was not distributed with this
3// file, You can obtain one at http://mozilla.org/MPL/2.0/.
4//
5// Copyright (c) DUSK NETWORK. All rights reserved.
6
7//! Module containing the plonkup works.
8//! Plonkup is the protcol for using
9//! precomputed and stored tables of values
10//! for specific functions to determine the
11//! output of gates within a circuit, without
12//! computing them.
13
14pub(crate) mod multiset;
15pub(crate) mod table;
16
17pub use multiset::MultiSet;
18pub use table::hash_tables::constants;
19pub use table::{
20 lookup_table::LookupTable, preprocess::PreprocessedLookupTable,
21 witness_table::WitnessTable,
22};