binius_m3/lib.rs
1// Copyright 2025 Irreducible Inc.
2
3//! A library for building Binius constraint systems and instances using M3 arithmetization.
4//!
5//! ## M3
6//!
7//! [M3], short for Multi-Multiset Matching, is a paradigm for expressing decision computations
8//! with a direct and efficient translation to cryptographic proving techniques. M3 constraint
9//! systems are built from _tables_ and _channels_ using binary field elements as the primitive
10//! data types.
11//!
12//! ### Tower field types
13//!
14//! All M3 instances are defined over the canonical Fan-Paar tower, which is a family of binary
15//! fields. This library supports constraint systems using the 1-bit, 8-bit, 16-bit, 32-bit,
16//! 64-bit, and 128-bit tower field types. They are referred to as `B1`, `B8`, `B16`, `B32`, `B64`,
17//! and `B128`, respectively.
18//!
19//! See the [Data Types] documentation for further information.
20//!
21//! ### Tables
22//!
23//! An M3 constraint system has several tables. Each row in a table corresponds to a
24//! _transition event_, and each column in a table is a different field. In Binius, each column has
25//! a different shape, defined by the tower field and the number of elements packed vertically into
26//! a single row, which we call the vertical packing factor. Due to vertical packing, the columns
27//! in a table will contain the same number of events but may have different numbers of field
28//! elements.
29//!
30//! Tables can have a few types of constraints:
31//!
32//! 1. **Zero constraints**: these are constraints that require a certain arithmetic expression to
33//! evaluate to zero over each row. A zero constraint must reference only columns within the same
34//! table with the same vertical packing factor. The constraint must evaluate to zero for each
35//! vertically packed entry.
36//! 2. **Non-zero column constraints**: these enforce that a column has no non-zero entries.
37//!
38//! ### Channels
39//!
40//! Channels are the mechanism for enforcing global constraints across transition events. The
41//! constraint system _pushes_ and _pulls_ tuples of fields element to and from channels and
42//! requires that the set of items pushes balances the set of items pulled. Items are pushed to
43//! channels either from table _flushes_ as _boundary values_. Each table defines _flushing rules_,
44//! which make it so that tuples collected from each row in a table are either pushed or pulled
45//! from a channel. _Boundary values_ are the inputs to a statement, which are known to the
46//! verifier.
47//!
48//! See the [M3] for documentation for further information and examples.
49//!
50//! [M3]: <https://www.binius.xyz/basics/arithmetization/m3>
51//! [Data Types]: <https://www.binius.xyz/basics/arithmetization/types>
52//!
53//! ## Build API
54//!
55//! This library provides an opinionated interface for constructing M3 constraint systems over the
56//! Binius core protocol. This means that it does not expose the full set of capabilities of the
57//! Binius protocol.
58//!
59//! The library exposes a [`builder::ConstraintSystem`], which has mutating methods used to build
60//! an instance. The M3 constraint system differs from a
61//! [`binius_core::constraint_system::ConstraintSystem`] in that it does not implicitly contain
62//! table heights as part of its definition. This allows for flexibility in the statements
63//! supported, so that a verifier can audit a constraint system once and then accept proofs for
64//! different statements than require different table sizes.
65//!
66//! The library intends the code building the constraint system is trusted and audited and thus may
67//! panic if invoked incorrectly. Once the constraint system is built, it can be serialized and
68//! later deserialized during an online proving and verification process. All functions that
69//! interact with a constraint system after the build phase will return errors on invalid inputs.
70//!
71//! ### Gadgets
72//!
73//! Constraint systems are intended to be built using reusable _gadgets_. These are structures that
74//! encapsulate the logic for defining constraints on a subset of table columns and the code for
75//! populating the witness data in the table. Gadgets have input columns, output columns, and
76//! internal columns. The inputs columns are defined externally and provided as inputs; the gadget
77//! assumes their values are already populated during witness population. The gadget defines output
78//! and internal columns, and exposes only the output columns to the caller.
79
80pub mod builder;
81pub mod emulate;
82pub mod gadgets;