Skip to content

Commit

Permalink
MSM/Serialization: add constraints file and basis environment
Browse files Browse the repository at this point in the history
  • Loading branch information
dannywillems committed Feb 29, 2024
1 parent b1e3529 commit 0c5a8f2
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 0 deletions.
7 changes: 7 additions & 0 deletions msm/src/serialization/constraints.rs
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
use kimchi::circuits::expr::{ConstantExpr, Expr};

use crate::columns::Column;

pub struct Env<Fp> {
pub constraints: Vec<Expr<ConstantExpr<Fp>, Column>>,
}
1 change: 1 addition & 0 deletions msm/src/serialization/mod.rs
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
pub mod constraints;
pub mod interpreter;
pub mod witness;

0 comments on commit 0c5a8f2

Please sign in to comment.