Skip to content

Commit 3a70668

Browse files
committed
committed proof.bin, renamed everything to hypercube
1 parent 5983f63 commit 3a70668

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

53 files changed

+660
-268
lines changed

Cargo.lock

Lines changed: 535 additions & 143 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -59,17 +59,17 @@ p3-uni-stark = { git = "https://github.com/erabinov/Plonky3/", branch = "clone_c
5959

6060

6161
#hypercube verifier
62-
slop-basefold = { path = "crates/basefold" }
63-
slop-algebra = { path = "crates/algebra" }
64-
slop-sumcheck = { path = "crates/sumcheck" }
65-
slop-multilinear = { path = "crates/multilinear" }
66-
slop-utils = { path = "crates/utils" }
67-
slop-merkle-tree = { path = "crates/merkle-tree" }
68-
slop-commit = { path = "crates/commit" }
69-
slop-tensor = { path = "crates/tensor" }
70-
slop-alloc = { path = "crates/alloc" }
71-
slop-jagged = { path = "crates/jagged" }
72-
slop-stacked = { path = "crates/stacked" }
62+
hypercube-basefold = { path = "crates/basefold" }
63+
hypercube-algebra = { path = "crates/algebra" }
64+
hypercube-sumcheck = { path = "crates/sumcheck" }
65+
hypercube-multilinear = { path = "crates/multilinear" }
66+
hypercube-utils = { path = "crates/utils" }
67+
hypercube-merkle-tree = { path = "crates/merkle-tree" }
68+
hypercube-commit = { path = "crates/commit" }
69+
hypercube-tensor = { path = "crates/tensor" }
70+
hypercube-alloc = { path = "crates/alloc" }
71+
hypercube-jagged = { path = "crates/jagged" }
72+
hypercube-stacked = { path = "crates/stacked" }
7373
sp1-primitives = { path = "crates/primitives" }
7474
sp1-derive = { path = "crates/derive" }
7575
hypercube-stark = { path = "crates/stark" }

cli/Cargo.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,5 +11,6 @@ categories.workspace = true
1111
hypercube-recursion-machine = {workspace = true}
1212
bincode = "1.3.3"
1313
clap = { version = "4.5.9", features = ["derive", "env"] }
14+
ratatui = "0.29.0"
1415
[lints]
1516
workspace = true

cli/src/main.rs

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ fn main() {
4141
\_______)|/ \____/ |/ \| \_/ |/ (_______/|/ \__/(_______/(_______)|/ \___/ (_______/
4242
4343
44-
(
44+
4545
.+------+ +------+ +------+ +------+ +------+.
4646
.' | .'| /| /| | | |\ |\ |`. | `.
4747
+---+--+' | +-+----+ | +------+ | +----+-+ | `+--+---+
@@ -50,6 +50,8 @@ fn main() {
5050
|.' | .' |/ |/ | | \| \| `. | `. |
5151
+------+' +------+ +------+ +------+ `+------+
5252
53+
54+
5355
_______ _______ _______ _______ _______ _______ _______ _________ _______ _________ _______ ______
5456
( ____ )( ____ )( ___ )( ___ )( ____ \ |\ /|( ____ \( ____ )\__ __/( ____ \\__ __/( ____ \( __ \
5557
| ( )|| ( )|| ( ) || ( ) || ( \/ | ) ( || ( \/| ( )| ) ( | ( \/ ) ( | ( \/| ( \ )

crates/algebra/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[package]
2-
name = "slop-algebra"
2+
name = "hypercube-algebra"
33
version.workspace = true
44
edition.workspace = true
55
license.workspace = true

crates/alloc/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[package]
2-
name = "slop-alloc"
2+
name = "hypercube-alloc"
33
version.workspace = true
44
edition.workspace = true
55
license.workspace = true

crates/basefold/Cargo.toml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[package]
2-
name = "slop-basefold"
2+
name = "hypercube-basefold"
33
version.workspace = true
44
edition.workspace = true
55
license.workspace = true
@@ -9,14 +9,14 @@ categories.workspace = true
99

1010
[dependencies]
1111
p3-field = { workspace = true }
12-
slop-multilinear = { workspace = true }
12+
hypercube-multilinear = { workspace = true }
1313
p3-challenger = { workspace = true }
14-
slop-utils = { workspace = true }
15-
slop-commit = { workspace = true }
16-
slop-tensor = { workspace = true }
17-
slop-alloc = { workspace = true }
14+
hypercube-utils = { workspace = true }
15+
hypercube-commit = { workspace = true }
16+
hypercube-tensor = { workspace = true }
17+
hypercube-alloc = { workspace = true }
1818
p3-baby-bear = { workspace = true }
19-
slop-merkle-tree = { workspace = true }
19+
hypercube-merkle-tree = { workspace = true }
2020

2121
thiserror = "1.0"
2222
itertools = "0.12.0"

crates/basefold/src/code.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
use derive_where::derive_where;
22
use p3_field::{AbstractField, TwoAdicField};
33
use serde::{Deserialize, Serialize};
4-
use slop_alloc::{Backend, CpuBackend, HasBackend};
5-
use slop_tensor::Tensor;
4+
use hypercube_alloc::{Backend, CpuBackend, HasBackend};
5+
use hypercube_tensor::Tensor;
66
use std::{
77
borrow::{Borrow, BorrowMut},
88
marker::PhantomData,

crates/basefold/src/config.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@ use p3_baby_bear::BabyBear;
55
use p3_challenger::{CanObserve, DuplexChallenger, FieldChallenger, GrindingChallenger};
66
use p3_field::{extension::BinomialExtensionField, ExtensionField, TwoAdicField};
77
use serde::{de::DeserializeOwned, Deserialize, Serialize};
8-
use slop_commit::TensorCs;
9-
use slop_merkle_tree::{my_bb_16_perm, MerkleTreeTcs, Perm, Poseidon2BabyBearConfig};
8+
use hypercube_commit::TensorCs;
9+
use hypercube_merkle_tree::{my_bb_16_perm, MerkleTreeTcs, Perm, Poseidon2BabyBearConfig};
1010

1111
use crate::{BasefoldVerifier, FriConfig};
1212

crates/basefold/src/verifier.rs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@ use itertools::Itertools;
22
use p3_challenger::{CanObserve, CanSampleBits, FieldChallenger, GrindingChallenger};
33
use p3_field::{AbstractExtensionField, AbstractField, TwoAdicField};
44
use serde::{Deserialize, Serialize};
5-
use slop_commit::{TensorCs, TensorCsOpening};
6-
use slop_multilinear::{Evaluations, MultilinearPcsVerifier, Point};
7-
use slop_utils::reverse_bits_len;
5+
use hypercube_commit::{TensorCs, TensorCsOpening};
6+
use hypercube_multilinear::{Evaluations, MultilinearPcsVerifier, Point};
7+
use hypercube_utils::reverse_bits_len;
88
use thiserror::Error;
99

1010
use crate::{BasefoldConfig, DefaultBasefoldConfig};

0 commit comments

Comments
 (0)