Skip to content

Commit

Permalink
Merge pull request #2873 from o1-labs/dw/rename-arrabiata
Browse files Browse the repository at this point in the history
Arrabbiata: use arrabbiata instead of arrabiata
  • Loading branch information
dannywillems authored Dec 11, 2024
2 parents 83906b8 + 3aea474 commit 155b329
Show file tree
Hide file tree
Showing 24 changed files with 12 additions and 12 deletions.
2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[workspace]
members = [
"arrabiata",
"arrabbiata",
"book",
"turshi",
"curves",
Expand Down Expand Up @@ -81,7 +81,7 @@ tinytemplate = "1.1"
wasm-bindgen = "=0.2.90"


arrabiata = { path = "./arrabiata", version = "0.1.0" }
arrabbiata = { path = "./arrabbiata", version = "0.1.0" }
folding = { path = "./folding", version = "0.1.0" }
groupmap = { path = "./groupmap", version = "0.1.0" }
internal-tracing = { path = "./internal-tracing", version = "0.1.0" }
Expand Down
4 changes: 2 additions & 2 deletions arrabiata/Cargo.toml → arrabbiata/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[package]
name = "arrabiata"
name = "arrabbiata"
version = "0.1.0"
repository = "https://github.com/o1-labs/proof-systems"
homepage = "https://o1-labs.github.io/proof-systems/"
Expand All @@ -8,7 +8,7 @@ edition = "2021"
license = "Apache-2.0"

[[bin]]
name = "arrabiata"
name = "arrabbiata"
path = "src/main.rs"

[dependencies]
Expand Down
2 changes: 1 addition & 1 deletion arrabiata/README.md → arrabbiata/README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
## Arrabiata - a generic recursive zero-knowledge argument implementation based on folding schemes
## Arrabbiata - a generic recursive zero-knowledge argument implementation based on folding schemes

### Motivation

Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
2 changes: 1 addition & 1 deletion arrabiata/src/main.rs → arrabbiata/src/main.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
use arrabiata::{
use arrabbiata::{
interpreter::{self, InterpreterEnv},
witness::Env,
IVC_CIRCUIT_SIZE, MIN_SRS_LOG2_SIZE, POSEIDON_STATE_SIZE,
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
use num_bigint::BigInt;
use std::collections::HashMap;

use arrabiata::{
use arrabbiata::{
columns::Gadget,
constraints,
interpreter::{self, Instruction},
Expand Down
File renamed without changes.
2 changes: 1 addition & 1 deletion arrabiata/tests/witness.rs → arrabbiata/tests/witness.rs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
use ark_ec::{AffineRepr, Group};
use ark_ff::{PrimeField, UniformRand};
use arrabiata::{
use arrabbiata::{
interpreter::{self, Instruction, InterpreterEnv},
poseidon_3_60_0_5_5_fp,
witness::Env,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
//! A user is expected to use the gadget methods.
//! The API of the utilities is more subject to changes.
use arrabiata::{interpreter::InterpreterEnv, witness::Env, POSEIDON_STATE_SIZE};
use arrabbiata::{interpreter::InterpreterEnv, witness::Env, POSEIDON_STATE_SIZE};
use mina_curves::pasta::{Fp, Fq, Pallas, Vesta};
use num_bigint::BigInt;
use o1_utils::FieldHelpers;
Expand Down
2 changes: 1 addition & 1 deletion mvpoly/tests/monomials.rs
Original file line number Diff line number Diff line change
Expand Up @@ -575,7 +575,7 @@ fn test_build_from_variable_next_row_with_offset_given() {
fn test_from_expr_ec_addition() {
// Simulate a real usecase
// The following lines/design look similar to the ones we use in
// o1vm/arrabiata
// o1vm/arrabbiata
#[derive(Clone, Copy, PartialEq)]
enum Column {
X(usize),
Expand Down
2 changes: 1 addition & 1 deletion mvpoly/tests/prime.rs
Original file line number Diff line number Diff line change
Expand Up @@ -365,7 +365,7 @@ fn test_evaluation_predefined_polynomial() {
fn test_from_expr_ec_addition() {
// Simulate a real usecase
// The following lines/design look similar to the ones we use in
// o1vm/arrabiata
// o1vm/arrabbiata
#[derive(Clone, Copy, PartialEq)]
enum Column {
X(usize),
Expand Down

0 comments on commit 155b329

Please sign in to comment.