winter-prover 0.4.2

Winterfell STARK prover
Documentation
// Copyright (c) Facebook, Inc. and its affiliates.
//
// This source code is licensed under the MIT license found in the
// LICENSE file in the root directory of this source tree.

use super::{ConstraintDivisor, Matrix, ProverError, StarkDomain};

mod boundary;
use boundary::BoundaryConstraints;

mod periodic_table;
use periodic_table::PeriodicValueTable;

mod evaluator;
pub use evaluator::ConstraintEvaluator;

mod composition_poly;
pub use composition_poly::CompositionPoly;

mod evaluation_table;
pub use evaluation_table::ConstraintEvaluationTable;

mod commitment;
pub use commitment::ConstraintCommitment;