Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix verb form README.md #2

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
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
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ This repository implements M31 and BabyBear field arithmetic in Bitcoin Script.

### Performance

In the current implementation, M31 and BabyBear has equivalent performance for the standalone field.
In the current implementation, M31 and BabyBear have equivalent performance for the standalone field.
The overhead for field extension is slightly different due to the extension polynomial.

- addition: 18 weight units
Expand Down Expand Up @@ -57,4 +57,4 @@ emphasize that this cost is variable and depends on the constant.
The BabyBear4's multiplication overhead slightly goes down from 13594 to 13576 because we switched the extension polynomial
into x^4 + 11 (the one used by RISC Zero) from x^4 - 11 (the one used by Plonky3) as the former is more heavily used in
production. This slightly reduces the cost because multiplication by -11 can be done slightly cheaper than multiplication
by 11.
by 11.