-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #13 from lattice-complete/prover
Mega PR: First iteration of prover and verifier
- Loading branch information
Showing
24 changed files
with
3,409 additions
and
50 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,21 @@ | ||
[workspace] | ||
resolver = "2" | ||
members = [ | ||
"labrador", | ||
"algebra" | ||
] | ||
|
||
[workspace.package] | ||
version = "0.1.0" | ||
edition = "2021" | ||
|
||
[workspace.dependencies] | ||
rand = "0.8" | ||
rayon = "1.10.0" | ||
|
||
# profiler deps | ||
ark-std = { version = "0.4.0" } | ||
profiler_macro = { git ="https://github.com/SuccinctPaul/profiler-rs.git", tag = "v0.1.0" } | ||
|
||
[workspace.features] | ||
profiler = ["ark-std/print-trace"] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
[package] | ||
name = "algebra" | ||
version = { workspace = true } | ||
edition = { workspace = true } | ||
|
||
# Optional: Add a description, authors, license, etc. | ||
description = "" | ||
authors = [""] | ||
license = "MIT OR Apache-2.0" | ||
|
||
[dependencies] | ||
rand = { workspace = true } |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
pub mod polynomial_ring; | ||
pub mod rq_matrix; | ||
pub mod utils; | ||
pub mod zq; | ||
|
||
pub use polynomial_ring::PolynomialRing; | ||
pub use rq_matrix::RqMatrix; | ||
pub use utils::*; | ||
pub use zq::Zq; |
Oops, something went wrong.