Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
55 commits
Select commit Hold shift + click to select a range
d3018e2
Add super_swiper weight reduction and tests
arnab-roy Nov 19, 2025
3d75d13
Add weight-reduction solver repo
arnab-roy Nov 19, 2025
fb5251f
Add Sui validator stake/ticket scripts and test integration
arnab-roy Nov 20, 2025
3d7e72a
Add Sui validator stake data files
arnab-roy Nov 20, 2025
fab373f
Refactor super swiper reduced node creation API
arnab-roy Nov 20, 2025
348dc4a
Remove unused weight-reduction solvers and tests
arnab-roy Nov 22, 2025
39cccf2
Remove weight-reduction data and test files
arnab-roy Nov 22, 2025
75f11a5
Integrating Ratio types
arnab-roy Nov 22, 2025
9783482
Removing swiper folder
arnab-roy Nov 22, 2025
a57905b
More cleanup
arnab-roy Nov 22, 2025
3bcc9a8
More cleanups
arnab-roy Nov 22, 2025
cc46e32
More cleanups
arnab-roy Nov 22, 2025
f2e4f61
More cleanups
arnab-roy Nov 22, 2025
a621735
fixed nightly build req
arnab-roy Nov 22, 2025
a8251a3
Update super_swiper_test.rs
arnab-roy Nov 22, 2025
68163f6
Remove super-swiper feature gating and update dependencies
arnab-roy Nov 24, 2025
b498120
Clean up deps
arnab-roy Nov 24, 2025
ec66c87
Add weight reduction validation and enhance super_swiper
arnab-roy Dec 4, 2025
a81a218
Refactor super swiper reduction to use slack-based validation
arnab-roy Dec 6, 2025
937fb37
Cleanup
arnab-roy Dec 6, 2025
873d377
GH tests
arnab-roy Dec 8, 2025
e3948c7
lock
jonas-lj Dec 8, 2025
1cc63e0
Refactor
jonas-lj Dec 8, 2025
578d2a8
revert
jonas-lj Dec 8, 2025
40a8713
Refactor for GH tests
arnab-roy Dec 8, 2025
8327706
Edits for fmt check
arnab-roy Dec 8, 2025
01f4251
Edits for ubuntu GH actions
arnab-roy Dec 8, 2025
b2c0005
Edits for Ubuntu GH actions
arnab-roy Dec 8, 2025
6b06cb3
Refactor super_swiper_reduced to use threshold t
arnab-roy Dec 10, 2025
db15818
Refactor weight reduction to use delta constraint
arnab-roy Dec 11, 2025
896e427
Add test for new_reduced with delta constraint
arnab-roy Dec 11, 2025
0835717
Add Sui validator voting power data and test integration
arnab-roy Dec 12, 2025
3e6fe93
Add multi-epoch Sui voting power data and tests
arnab-roy Dec 12, 2025
de73353
Resolving comments from Jonas
arnab-roy Dec 19, 2025
6932854
fmt and clippy fixes
arnab-roy Dec 19, 2025
ffc61f6
Ensuring and clarifying loop bounds
arnab-roy Dec 19, 2025
e823b29
Misc clean up
jonas-lj Jan 23, 2026
5254229
Align names with paper
jonas-lj Jan 23, 2026
534e681
Simplify'ish + refactor
jonas-lj Jan 23, 2026
7e2b9cd
Simplify a bit in new_reduced function
jonas-lj Jan 23, 2026
b7b88e6
more simplifications
jonas-lj Jan 23, 2026
033ea41
New precision loss calculation and delta check
arnab-roy Jan 28, 2026
e6163ae
Document and refactor super_swiper weight reduction logic
arnab-roy Jan 28, 2026
1f62c57
Updated t', f' constraints
arnab-roy Feb 3, 2026
9d0ec5b
Update beta and f' calculations
arnab-roy Feb 8, 2026
2d59d35
Updated the analysis and modified node.rs
arnab-roy Feb 14, 2026
20c38ae
Simplify super_swiper reduction and update tests
arnab-roy Mar 25, 2026
467c81c
Refine super_swiper weight reduction search
arnab-roy Mar 25, 2026
e6facf5
Update weight_reduction PROOF: bounds & params
arnab-roy Apr 14, 2026
9755d23
Update PROOF.md
arnab-roy Apr 14, 2026
928c573
Merge branch 'main' into arnab/swiper
arnab-roy Apr 14, 2026
c243bc7
Refactor super-swiper and weight reduction
arnab-roy Apr 14, 2026
b536200
Add new_reduced_v2 weight-reduction and tests
arnab-roy Apr 14, 2026
aa9a648
Add W vs W' comparison chart test
arnab-roy Apr 15, 2026
7d57f76
SuperSwiper: bilateral analysis and tests
arnab-roy Apr 30, 2026
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
35 changes: 35 additions & 0 deletions Cargo.lock

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

2 changes: 2 additions & 0 deletions fastcrypto-tbls/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ repository = "https://github.com/MystenLabs/fastcrypto"

[dependencies]
fastcrypto = { path = "../fastcrypto", features = ["aes"] }
num-rational = { version = "0.4.2", features = ["std"] }

rand.workspace = true
serde.workspace = true
Expand All @@ -28,6 +29,7 @@ serde-big-array = "0.5.1"
[dev-dependencies]
criterion = "0.5.1"
generic-tests = "0.1.2"
test-case = "3.3.1"

[[bench]]
name = "polynomial"
Expand Down
5 changes: 5 additions & 0 deletions fastcrypto-tbls/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ pub mod polynomial;
pub mod tbls;
pub mod threshold_schnorr;
pub mod types;
pub mod weight_reduction;

// TODO: needs to use ecies_v1
// #[cfg(any(test, feature = "experimental"))]
Expand Down Expand Up @@ -58,4 +59,8 @@ pub mod nizk;
#[cfg(test)]
#[path = "tests/nizk_tests.rs"]
pub mod nizk_tests;

pub mod random_oracle;
#[cfg(test)]
#[path = "tests/super_swiper_test.rs"]
pub mod super_swiper_test;
Loading
Loading