Skip to content

Commit

Permalink
Revert "refactor: kill backend.PLONK_FRI"
Browse files Browse the repository at this point in the history
This reverts commit e7885c3.
  • Loading branch information
gbotrel committed Mar 8, 2024
1 parent e7885c3 commit 94124b6
Show file tree
Hide file tree
Showing 28 changed files with 10,892 additions and 4 deletions.
5 changes: 4 additions & 1 deletion backend/backend.go
Original file line number Diff line number Diff line change
Expand Up @@ -29,11 +29,12 @@ const (
UNKNOWN ID = iota
GROTH16
PLONK
PLONKFRI
)

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

// String returns the string representation of a proof system
Expand All @@ -43,6 +44,8 @@ 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 94124b6

Please sign in to comment.