-
Notifications
You must be signed in to change notification settings - Fork 47
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Integration with Galois field library (#15)
* Use galois-field library * Pass tests * Use Gen monad and create arbitrary instances for arithmetic circuits * Remove Fractional constraints in favor of PrimeField * Upgrade CircleCI * Remove redundant Fq type signatures * Ensure prime fields are used in range proofs * Update README * Update changelog
- Loading branch information
1 parent
3312b49
commit 9f35ec5
Showing
22 changed files
with
513 additions
and
534 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
version: 2 | ||
jobs: | ||
build: | ||
docker: | ||
- image: fpco/stack-build:lts | ||
steps: | ||
- checkout | ||
- restore_cache: | ||
name: Restore Cached Dependencies | ||
keys: | ||
- pairing-{{ checksum "package.yaml" }} | ||
- run: | ||
name: Resolve/Update Dependencies | ||
command: stack setup | ||
- run: | ||
name: Run tests | ||
command: stack test | ||
- save_cache: | ||
name: Cache Dependencies | ||
key: pairing-{{ checksum "package.yaml" }} | ||
paths: | ||
- ".stack-work" |
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
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
Oops, something went wrong.