Skip to content

Commit

Permalink
Merge branch 'master' into perf/ec-arithmetic
Browse files Browse the repository at this point in the history
  • Loading branch information
yelhousni committed Mar 8, 2024
2 parents a2f0bdc + 1ed22f7 commit 1c35291
Show file tree
Hide file tree
Showing 29 changed files with 4 additions and 10,892 deletions.
5 changes: 1 addition & 4 deletions backend/backend.go
Original file line number Diff line number Diff line change
Expand Up @@ -29,12 +29,11 @@ const (
UNKNOWN ID = iota
GROTH16
PLONK
PLONKFRI
)

// Implemented return the list of proof systems implemented in gnark
func Implemented() []ID {
return []ID{GROTH16, PLONK, PLONKFRI}
return []ID{GROTH16, PLONK}
}

// String returns the string representation of a proof system
Expand All @@ -44,8 +43,6 @@ func (id ID) String() string {
return "groth16"
case PLONK:
return "plonk"
case PLONKFRI:
return "plonkFRI"
default:
return "unknown"
}
Expand Down
Loading

0 comments on commit 1c35291

Please sign in to comment.