Skip to content

Commit

Permalink
refactor: kill backend.PLONK_FRI (#1075)
Browse files Browse the repository at this point in the history
  • Loading branch information
gbotrel authored Mar 8, 2024
1 parent 94124b6 commit 1ed22f7
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 1ed22f7

Please sign in to comment.